From c1e92a17950a71a8acf7d9706d28d4be0b931702 Mon Sep 17 00:00:00 2001 From: yikth Date: Fri, 20 Jan 2023 10:58:18 +0800 Subject: [PATCH] add vmtools md --- vmtools.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vmtools.md diff --git a/vmtools.md b/vmtools.md new file mode 100644 index 0000000..722caad --- /dev/null +++ b/vmtools.md @@ -0,0 +1,28 @@ + +# Install vmtool on ubuntu guest + +* [Reference](https://kb.vmware.com/s/article/1022525) +* Goto the Virtual Machine > Install VMware Tools +* Within Ubuntu Guest +```sh +# create a directory to mount the CD-ROM: +$ sudo mkdir /mnt/cdrom + +# mount the CD-ROM +$ sudo mount /dev/cdrom /mnt/cdrom or sudo mount /dev/sr0 /mnt/cdrom + +# find the exact name: +$ ls /mnt/cdrom + +# Run this command to extract the contents of the VMware Tools bundle +$ tar xzvf /mnt/cdrom/VMwareTools-x.x.x-xxxx.tar.gz -C /tmp/ + +# Run this command to change directories into the VMware Tools distribution +$ cd /tmp/vmware-tools-distrib/ + +# install VMware Tools +$ sudo ./vmware-install.pl + +# Reboot the vm guest machine +$ sudo reboot +``` \ No newline at end of file