Installing VMware Tools in an Ubuntu virtual machine

https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1022525 or better: https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2073803 sudo apt install open-vm-tools sudo apt install open-vm-tools-desktop

Ubuntu updates via command line

Update: sudo apt-get update # Fetches the list of available updates sudo apt-get upgrade # Strictly upgrades the current packages sudo apt-get dist-upgrade # Installs updates (new ones) Clean up the system from old packages: sudo apt-get update && sudo apt-get autoclean && sudo apt-get clean && sudo apt-get autoremove Check the Ubuntu version: lsb_release … Read more