How to Install VMware on Ubuntu 18.04
VMware tools allow us to run multiple operating systems on a single machine, providing virtualization. We use VMWare tools to improve the performance of virtual machines.
VMware tools provide features like faster graphics performance, shared folders, shared clipboard, drag and drop operations, etc. We can install VMware in Ubuntu using Open VM Tools and VMware Tools ISO files.
We can install VMware Tools on the Ubuntu guest account by installing the Open VM Tools package from the Ubuntu repository.
We execute the following command to install VMware using Open VM Tools.
sudo apt update
sudo apt install open-vm-tools
It first updates the repository and then downloads the packages from the updated repository open-vm-tools
.
However, if we are using Ubuntu desktop, we should execute the following command to install open-vm-tools
the package.
sudo apt update
sudo apt install open-vm-tools-desktop
Suppose there is a newer open-vm-tools
package in the repository, in this case, we can update open-vm-tools
the package. In this case, we can use the following command to update open-vm-tools
the existing version of the package.
sudo apt update
sudo apt upgrade
Install VMware using the VMware Tools ISO file
We can also install VMware using the image ISO file located on the host. We perform the following steps in order to install VMware using the VMware Tools ISO file
- Open VMware Workstation, Fusion, or Player and start the Ubuntu guest virtual machine.
- Click on Virtual Machine, then click on Install VMware Tools from the VMware menu. If we use VMWare player, it will prompt us to download VMWare Tools.
-
Create a new directory as the mount point for the CD-ROM drive, and then mount the ISO file using the command.
$ sudo mkdir -p /mnt/cdrom $ sudo mount /dev/cdrom /mnt/cdrom
-
Change to the directory created in the previous step and use the command to extract the VMwareTools file that contains the VMware Tools installer.
$ cd /mnt/cdrom $ sudo tar xf VMwareTools-*.tar.gz -C /tmp
-
Now run the vmware-install.pl script to install VMware Tools using the command.
Here,$ sudo /tmp/vmware-tools-distrib/vmware-install.pl -d
-d
the installer will use the default options. -
Finally, to observe the changes, we restart the Ubuntu guest using the command.
$ sudo shutdown -r now
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Switching PHP versions on Ubuntu
Publish Date:2025/04/13 Views:78 Category:PHP
-
Different tasks may require running multiple versions of PHP. You may need to switch PHP versions by running two sites on the same server or testing older versions of code using outdated methods. We can switch PHP versions on Ubuntu using t
Restart PostgreSQL in Ubuntu 18.04
Publish Date:2025/04/09 Views:72 Category:PostgreSQL
-
This short article shows how to restart PostgreSQL in Ubuntu. Restart PostgreSQL Server in Ubuntu You can restart Postgres server in Ubuntu using the following command. Order: sudo service postgres restart Sometimes the above command does n
How to Install Nginx on Ubuntu 20.04?
Publish Date:2025/04/07 Views:157 Category:OPERATING SYSTEM
-
Nginx is one of the most popular web servers in the world, responsible for hosting some of the largest and most trafficked sites on the Internet. It is a lightweight application software that can be used as a web server or a reverse proxy.
How to use Let's Encrypt with Nginx to configure https in Ubuntu 20.04
Publish Date:2025/04/07 Views:123 Category:OPERATING SYSTEM
-
Let's Encrypt is a Certificate Authority (CA) that provides an easy way to obtain and install free TLS/SSL certificates, enabling encrypted HTTPS on your web server. It simplifies the process by providing a software client, Certbot, which a
Detailed introduction on how to add and delete users on Ubuntu 18.04 system
Publish Date:2025/04/07 Views:88 Category:OPERATING SYSTEM
-
Adding and removing users on a Linux system is one of the most important system administration tasks we need to be familiar with. When a new system is created, usually only the root account is accessible by default. While running as the roo
How to Update Ubuntu Scrolling Speed
Publish Date:2025/04/07 Views:77 Category:OPERATING SYSTEM
-
It's strange that there's no default GUI provided for us to update the scroll speed on Ubuntu, this is one of the more obvious configuration options missing. We will use imwheel to adjust the scroll speed of different applications. First cr
Install WordPress with Nginx on Ubuntu 18.04
Publish Date:2025/04/07 Views:86 Category:OPERATING SYSTEM
-
WordPress is one of the most popular open source content management systems (CMS) with a market share of up to 60% compared to other CMS like Drupal or Joomla. WordPress can be used to develop any type of website, be it a blog, a small busi
Linux: How to install htop on Ubuntu and Mint
Publish Date:2025/04/06 Views:129 Category:OPERATING SYSTEM
-
While top the htop utility provides us with basic information about the processes running on our Linux system, the htop utility goes a step further and provides us with more information about the processes and also allows for several operat
How to Install GCC Compiler on Ubuntu 18.04
Publish Date:2025/04/06 Views:165 Category:OPERATING SYSTEM
-
GCC It is the abbreviation of GNU Compiler Collection , which is applicable to different programming languages such as R, C, C++, Objective-C, Fortran, Ada, Go, D, etc. We can apt install the compiler on Ubuntu using the command line