In this section, you will initialize a virtual machine instance on an on-premises virtualization environment with the Ubuntu Desktop operating system.
This guide will walk you through deploying an instance on a VMware Workstation virtualization environment on on-premises infrastructure.
Note: To complete this step, you need to install VMware Workstation Pro. Although this software is paid, you can use it for free during the first 30 days.
Start by installing VMware Workstation Pro from here.
Next, download the Ubuntu operating system from here. Click on check out our alternative downloads to see other ways to download Ubuntu Desktop such as torrent, mirror, or network installer. Recommended Ubuntu versions:

Open VMware Workstation and select Create a New Virtual Machine.

At the Welcome to the New Virtual Machine Wizard screen, select Typical (recommended) and click Next.

At the Guest Operating System Installation screen, select Image file (.iso) of the version you downloaded. Next, click Browse to browse and select the Ubuntu Desktop ISO file you downloaded. After selection, click Next to continue the virtual machine creation process.

At the Easy Install Information screen, enter Username as fcajstudent and set the corresponding password.

Name the instance at the Name the Virtual Machine screen, for example: Ubuntu. You can also specify the storage directory or keep the default settings and click Next.

Set the storage capacity at the Specify Disk Capacity screen, enter the value 20GB.

Review the parameters and click Finish to start the installation process.

Complete the Ubuntu operating system installation on VMware.

Perform user configuration.




When the installation and configuration process is complete, you need to install OpenSSH Server to be able to connect SSH to the instance using the following commands:
sudo apt install openssh-server
sudo systemctl start ssh
sudo systemctl enable ssh
