Ada hal yang berbeda ketika kita ingin melakukan instalasi Linux Debian dengan kebutuhan server minimal. Maksud minimal disini adalah bahwa kita tidak perlu melakukan instalasi paket-paket yang tidak diperlukan untuk instalasi server , seperti paket office, paket desktop, paket games, dan paket-paket lainnya dengan tujuan bahwa bahwa server hanya diinstall untuk sesuatu dan sesuai dengan fungsinya. Kebutuhan minimal ini juga dimaksudkan jangan sampai menghabiskan sumber daya server tersebut.
Langkah yang membedakan terletak pada pemilihan kategori paket yang akan diinstall seperti dibawah ini :

Untuk langkah instalasi yang lain sama saja seperti debian versi sebelumnya.
Berikut langkah instalasi server ssh dengan openSSH :
# apt-get -y install ssh openssh-server
Instalasi editor :
# apt-get -y install vim-nox nano
Konfigurasi network :
# apt-get install net-tool
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug ens33 iface ens33 inet dhcp
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto ens33 iface ens33 inet static address 192.168.1.100 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.1.255 gateway 192.168.1.1
Kemudian silahkan edit untuk pemberian nama hostname :
127.0.0.1 localhost.localdomain localhost 192.168.1.100 server1.example.com server1 # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback ff02::1 ip6-allnodes ff02::2 ip6-allrouters