JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

How to Install VMware on Ubuntu 18.04

Author:JIYIK Last Updated:2025/04/05 Views:

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-toolsthe package.

sudo apt update
sudo apt install open-vm-tools-desktop

Suppose there is a newer open-vm-toolspackage in the repository, in this case, we can update open-vm-toolsthe package. In this case, we can use the following command to update open-vm-toolsthe 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

  1. Open VMware Workstation, Fusion, or Player and start the Ubuntu guest virtual machine.
  2. 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.
  3. 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
    
  4. 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
    
  5. Now run the vmware-install.pl script to install VMware Tools using the command.
    $ sudo /tmp/vmware-tools-distrib/vmware-install.pl -d
    
    Here, -dthe installer will use the default options.
  6. 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.

Article URL:

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 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

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial