New Linux Server Program Installation

Okay, I know this contains nothing new for many of you but I need it from time to time: It is simply a list of tools I need after a new Linux server installation (used with Ubuntu server) as well as some further hints for the installation process such as static IP addresses, NTP or Syslog forwarding. So, after the initial installation of a server I am doing the following steps:

Updates & Tools

Update the repository packages and do an upgrade of all default installed packages as well as the kernel:

Install a few commonly used tools for network troubleshooting and other stuff:

Normally I am using ntpd to sync the time. On Ubuntu LTS systems beginning with 18.04 LTS it’s not ntpd but timedatectl that does this job. In order to use ntpd you must disable timedatectl bevore installing ntp, refer to “How To Set Up Time Synchronization on Ubuntu 18.04“:

Configure the NTP servers inside the ntp.conf file: sudo nano /etc/ntp.conf. I am alsways adding my own stratum 1 servers (IPv6 only) as well as a few NTP servers from the NTP Pool Project. This would look like:

IP Addresses

Configure the correct IP addresses (v4 and v6) for the server in the file: sudo nano /etc/network/interfaces and add/adjust the following lines (the Google public DNS servers are used below):

 

Syslog Forwarding

I am using a central syslog-ng server for storing all my logs. Hence I am forwarding all logs from all servers to the syslog-ng instance. ;) This is how I am doing it (credits here):

On a standard Ubuntu server you can use the following file: sudo nano /etc/rsyslog.d/50-default.conf while on a Raspberry Pi (Raspbian) the rsyslog.conf file is located at sudo nano /etc/rsyslog.conf. In any case, you must simply add the following line at the very end of the file, either for IPv6 or for legacy IP:

After that, restart the rsyslog daemon and you’re done: sudo service rsyslog restart.

Shell Coloring

Make the shell prompt colored (I like that) by uncommenting the following line in the .bashrc file: nano ~/.bashrc

 

No Hibernation

I sometimes use old notebooks for my servers. They are fast enough, quite, and require not that much power. One task to not forget is to disable the hibernation when closing the cover/lid. That is, the lid switch must be disabled such as shown here:

 

Auto Updates

For *some* servers I am using auto updates for security patches and even auto reboot. Figure out what the best solution for your server is. More information is shown here. I am using, for example, the following settings:

Now in this file uncomment and adjust the settings you want, e.g.:

Good luck. ;) As always it is a trade-off between security (install them fast) and availability (maybe something could break).

Featured image: “Karton” by Peter P. is licensed under CC BY-NC 2.0.

2 thoughts on “New Linux Server Program Installation

  1. Hello I have a new Linux server from GoDaddy and the sudo commands did not work for me in this article

    1. Yes, ok, I should have mentioned that all my “sudo” commands are for Debian Linux distributions (and therefore also for Ubuntu), but NOT for other Linux. And GoDaddy uses CentOS which is not Debian based.
      –> You must run many of these commands with the superuser account. However, the “apt-get” commands wont work for you either, since CentOS uses YUM instead of APT. I am sorry…

Leave a Reply

Your email address will not be published. Required fields are marked *