This procedure will work many version of Ubuntu. I personally tested this on all Ubuntu versions from 12 and up, and should also work fine, or be a very good indicator of what to do, on any Debian based Linux distribution. Like many OS out there, right after installation, everything is configured to use DHCP. ..
category : Debian
Very straight forward, create a user, a home folder, assign permissions to it, you’re done ! This create a simple user, with no particular rights. useradd johnyluky passwd johnyluky mkdir /home/johnyluky chown johnyluky:users /home/johnyluky Anyone wants to pitch in to add a bit more to this ? Add more rights to the users for specific ..
In VMware, select your guest, and click “Install/Upgrade VMware Tools” Then go back in your VM, and issue all the following commands from terminal. mkdir -p /media/cdrom mount /dev/cdrom /media/cdrom Sometimes, you have to run the “mount” twice…. Cdrom might not have been ready the first time cd /media/cdrom cp VM*.tar.gz /tmp Install the headers, ..
This command work with all Debian based OS. Open a command shell, and type the following: apt-get install -y linux-headers-$(uname -r|sed ‘s,[^-]*-[^-]*-,,’) If you have the equivalent for CentOS, RedHat, Fedora, etc… Please le me know in the comments so I can add ..