Install Ubuntu Server on VMWare

This article is going to walk you through an actual scenario where you will install Ubuntu Server on VMWare. You will learn the step-by-step installation process, configure standard settings such as updating the installer, configure an IP address, configure disks, add a root user account and configure a hostname, configure remote access using SSH, and finally, perform post-installation updates. 


Prerequisites

To follow along, make sure you have the following installed:

Add New Virtual Machine

From the VMWare software, right click on the Library on the left hand side, and choose New Virtual Machine:




You will be greeted with the New Virtual Machine Wizard, and simply go for the default recommended options:



Make sure to go load your ISO as the Installer disc image file:


And then choose suitable username / password for your virtual machine:



Choose an appropriate name for your virtual machine, followed by disk capacity (I usually recommend around 20GB), and when you are ready, click Finish:


Your new virtual machine will now boot with the Linux Installation process.

Installing the Linux operating system

This is actually the easiest part since you simply follow the on-screen instructions. For the most part, just choose the default options and click on Next.



Leave everything default as it is, until you hit the formatting and partitioning of the disk where you will be installing the operating system. When you get to this screen, just click on continue:


While Ubuntu is being installed, you will be greeted by some other screens. First one will be to setup a new user profile in your Linux system:




When you get to the SSH Server setup, make sure that this option is enabled as follows:




In the next screen there is no need to install any features, however to install anything you deem interesting for you:


Now the system will take some time to complete the installation. When this step is ready, you will be asked to reboot:



After the reboot, you can enter the system using the username and password that you created in the User Profile step. Once you log inside the system, determine the IP address of your machine by entering the following command:

$ ip a


Access the Virtual Machine using SSH

In the installation process described in the previous steps, an SSH server was installed. It is recommended to use the system using an SSH terminal such as Powershell, rather than the VMWare console. You can ssh into your system by using the following syntax:

$ ssh [username]@[IP_Address]


This will look something like this:






Update your Ubuntu Server

Now that you have accessed your machine through SSH, you can update all your packages and software by running this command:

$ sudo apt update -y


Well done! You now have a fully working Ubuntu server running with the latest updates.

0 Comments