Install VMware tools on Ubuntu 20.04 Focal Fossa Linux

Run the following commands to install VMware tools on Ubuntu 20.04. navdeep@d2:~$ sudo lsmod | grep vmw [sudo] password for navdeep: vmw_balloon 24576 0 vmwgfx 299008 6 ttm 106496 1 vmwgfx drm_kms_helper 184320 1 vmwgfx vmw_vmci 69632 1 vmw_balloon drm 491520 9 vmwgfx,drm_kms_helper,ttm navdeep@d2:~$ navdeep@d2:~$ sudo apt install open-vm-tools-desktop open-vm-tools Reading package lists… Done Building dependency tree Reading state information… Done The following additional packages will be installed: ethtool libmspack0…

Install TEAM VIEWER 12 with Shell Script – Ubuntu

#!/bin/bash # Use this script for Ubuntu only. # By default this script will install 64bit Teamviewer echo “============================================” echo -e “\e[1;32m REMOVING PREVIOUS TEAMVIEWER IF ANY ………… \e[0m” echo “============================================” sudo apt-get remove teamviewer -y sudo apt autoremove -y sudo apt-get remove teamviewer:i386 -y sudo dpkg -r teamviewer:i386 sudo dpkg –purge teamviewer sudo dpkg –purge teamviewer:i386 sudo apt autoremove -y rm -fr /tmp/teamviewer* cd /tmp/ ; wget http://download.teamviewer.com/download/version_12x/teamviewer_amd64.deb sudo…

[Solved] eth0 or eth1: error fetching interface information: Device not found on Ubuntu

Error:- etho: error fetching interface information: Device not found OR eth1: error fetching interface information: Device not found Solution:- Correct your interfaces file if you are sure that device is there OR cable is connected. cat /etc/network/interfaces auto eth0 iface eth0 inet static address 104.70.x.x gateway 104.70.x.x netmask 255.255.x.x auto eth1 iface eth1 inet static address 172.16.x.x netmask 255.255.x.x auto lo iface lo inet loopback Replace address, gateway, netmask with…