breki.github.io

personal knowledgebase


Project maintained by breki Hosted on GitHub Pages — Theme by mattgraham

Linux

Ubuntu

VMWare

Installing VMWare Tools

Command line sequence to install the tools. Note that the version of tools changes, so you need to update that one:

sudo-s
mkdir /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
cp /mnt/cdrom/VMwareTools-10.1.6-5214329.tar.gz /tmp/
cd /tmp
tar -zxvf VMwareTools-10.1.6-5214329.tar.gz 
cd vmware-tools-distrib/
./vmware-install.pl -d
umount /mnt/cdrom
cd
rm /tmp/VMwareTools-10.1.6-5214329.tar.gz 
rm -rf /tmp/vmware-tools-distrib/

Remote Access From Windows

Remote Desktop Protocol

For Virtual Machines

Make sure the network settings for the VM are set to Bridged (not NAT).

SSH

On the Linux server:

sudo apt-get install openssh-server

On the Windows client, install Putty. You can also add a new task in ConEmu: "C:\Program Files\PuTTY\putty.exe" -cur_console -ssh 192.168.159.130 (replace it with your server’s IP).

Command Line Cheatsheet

Keyboard Shortcuts

Terminal

Misc

System Restart

When System Restart Required is show, you can view the list of packages that require a restart with:

more /var/run/reboot-required.pkgs

To restart, do:

sudo reboot