Category

Debian

4 articles in this category

Configure static IP on Ubuntu

2014-11-26 2 min read

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…

Create a new user on Debian based Linux distro

2014-11-26 1 min read

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…

Install VMware Tools on any Debian Base OS

2013-12-02 1 min read

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…

Easy command to install Linux Kernel Headers

2013-11-09 1 min read

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…