Programster's Blog

Tutorials focusing on Linux, programming, and open-source

First Things To Do After Installing Debian 7.x

Configure Sudo

Login as root and install sudo

sudo apt-get install sudo

Now add your subuser to sudo users and use that user from now on.

adduser $MY_SUBUSER sudo

Disable root login

SEARCH="PermitRootLogin yes"
REPLACE="PermitRootLogin no"
FILEPATH="/etc/ssh/sshd_config"
sudo sed -i "s;$SEARCH;$REPLACE;" $FILEPATH

# Restart the openssh service for changes to take effect.
sudo service ssh restart

Install VIM

sudo apt-get install vim -y

Set VIM to be the default editor (crontab)

echo 'export EDITOR=vim' >> $HOME/.bashrc

Add ifconfig to your PATH.

echo 'export PATH="$PATH:/sbin"' >> $HOME/.bashrc

Install byobu

sudo apt-get install byobu -y
Last updated: 16th August 2018
First published: 16th August 2018

This blog is created by Stuart Page

I'm a freelance web developer and technology consultant based in Surrey, UK, with over 10 years experience in web development, DevOps, Linux Administration, and IT solutions.

Need support with your infrastructure or web services?

Get in touch