ubuntu:virtual_machine:install_vmware_tools
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:virtual_machine:install_vmware_tools [2019/11/30 12:11] – peter | ubuntu:virtual_machine:install_vmware_tools [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 14: | Line 14: | ||
---- | ---- | ||
+ | |||
+ | ===== Install kernel headers and tools required to compile and install VMware tools ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install binutils cpp gcc make psmisc linux-headers-$(uname -r) | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Mount the cdrom drive inside the guest server ===== | ||
+ | |||
+ | Make sure you have mounted the VMware tools virtual cd from the host before moving on. | ||
+ | |||
+ | <code bash> | ||
+ | sudo mount /dev/cdrom /mnt | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Extract VMware tools to the tmp directory ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo tar -C /tmp -zxvf / | ||
+ | </ | ||
+ | |||
+ | The filename depends on the VMware host version. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Unmount the virtual cd ===== | ||
+ | |||
+ | We have already extracted the files to a temporary locations and the virtual disk isn’t needed anymore. | ||
+ | |||
+ | <code bash> | ||
+ | sudo umount /mnt | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Start the installation ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo / | ||
+ | </ | ||
+ | |||
+ | Accept the defaults for every question. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Reboot your server ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo reboot | ||
+ | </ | ||
+ | |||
+ | VMware tools is now installed and configured. | ||
+ |
ubuntu/virtual_machine/install_vmware_tools.1575115883.txt.gz · Last modified: 2020/07/15 09:30 (external edit)