DEV Community

Cover image for How To Install Debian 11 Bullseye Expert Mode Minimal Install
brandon_wallace
brandon_wallace

Posted on • Updated on

How To Install Debian 11 Bullseye Expert Mode Minimal Install

Introduction

In this article, I will show you how to do a minimal installation of Debian 11 Bullseye in "Expert Install" mode.

The Debian installer is very flexible. You can easily use the installation media to install Debian as a server or a desktop/laptop. I will go over a minimal installation step by step and include an option to install a desktop environment of your choice. Doing an "Expert Install" will provide you with a few advanced options which allow for better customization of the operating system.

Why Debian?

These are some of the reasons why people install Debian.

  • Very stable and secure
  • Has wide hardware support
  • Is a community project of volunteers around the world
  • Has a flexible installer that allows for customization
  • Upgrades smoothly from one release to the next release

Here are the requirements for Debian 11 Bullseye.

Requirements Minimum Recommended
RAM: 512MB 2GB
Processor (CPU): 1GHz
Hard Drive: 10GB

A minimal installation is great for a server set up. The benefit of setting up a server with a command line interface you will not use a lot of resources.

Here is a server that contains 2 gigabytes of RAM. You see this server is using is only using 61 megabytes of RAM without a graphical user interface!

brandon@debian $ free -m
              total        used        free
Mem:           1982          61        1920
Swap:           975           0         975
Enter fullscreen mode Exit fullscreen mode

After installing the full Xfce desktop the RAM usage increased to 311 megabytes.

74.png

You can use almost any computer for this. If you have some old hardware laying around such as a

  • Desktop
  • Laptop
  • A Mac computer
  • Used server hardware

What can you do with a Linux server? Here are some examples.

  • Private Git server
  • Web server
  • File server with NFS or Samba
  • Media server
  • Database server
  • DNS server
  • NTP server
  • Email server
  • Ad blocker
  • Set up RAID (Redundant Array of Independent Disks)
  • Explore the GNU/Linux operating system

Installation

Download the amd64 Debian 11 Bullseye firmware-11.5.0-amd64-netinst.iso file from the Debian.org website. Pick the architecture supported by your computer. For example, if your computer is really old it might not support 64-bit (amd64). In that case, you will need the 32-bit ISO (i386) file.

If you need non-free firmware to have drivers to set up for hardware such as WiFi use this ISO file to install Debian.

firmware-11.5.0-amd64-netinst.iso
(Recommended - includes non-free firmware)

debian-11.5.0-amd64-netinst.iso
(non-free firmware NOT included)

Install the ISO file to a USB flash drive using one of these tools.

Rufus
Etcher
Unetbootin
Pendrive Linux

If have Linux installed already you can run the dd command to install the ISO to the USB flash drive.
WARNING!! If you use dd make sure you write to the correct /dev/sdX drive.

I list my drives in the computer like this.

$ sudo fdisk -l 2> /dev/null | egrep 'Disk /dev/'

# Output

Disk /dev/sdb: 254.8 GiB
Disk /dev/sda: 120.9 GiB 
Disk /dev/sdc: 15.9 GiB  <== My USB flash drive

Enter fullscreen mode Exit fullscreen mode

On my computer the flash drive is /dev/sdc so I run this command.

$ sudo dd if=firmware-11.5.0-amd64-netinst.iso of=/dev/sdc bs=4M status=progress; sync

# Or

$ sudo dd if=debian-11.5.0-amd64-netinst.iso of=/dev/sdc bs=4M status=progress; sync
Enter fullscreen mode Exit fullscreen mode

Find out how to boot off of the USB flash drive. Every manufacture has a different key to press to get to the boot menu. On my computer I press the F12 key to select the boot menu.

Once you boot off of the USB flash drive the installation menu will come up.
Select "Advanced options".

1.png

Select "Expert Install".

2.png

Choose a language.

3.png

I am choosing English because that is one of the languages I speak.

4.png

Select your location to set the correct time zone.

5.png

The locale sets character encoding, date and time formatting, currency, default paper size, etc. The default setting should be fine. For US English the default is "en_US.UTF-8". No need to change this setting.

6.png

You have the option to add additional locales here if you need them. I will use the default "en_US.UTF-8" set on the previous page. Press "Continue".

7.png

Here you can select the keyboard layout of your preference such as Dvorak. I will stick with the default "American English" here.

8.png

9.png

Time to detect the installation media which is the USB flash drive that you booted off earlier.

10.png

Press "Continue".

11.png

Press "Continue".

12.png

Installer components get loaded from the USB installation media.

13.png

Optional specialized components can be selected here if you need them. By default nothing is selected. Press "Continue".

14.png

Network hardware will be detected here.

15.png

Configure the network connection.

16.png

Select "Yes" to set the IP address using DHCP (Dynamic Host Control Protocol). This is recommended for a desktop/laptop. If you select "Yes", skip the "For a static IP" section. The IP address will be configured via DHCP and you will move on to setting the hostname.

Select "No" to set a static IP address. A static IP address is recommended for a server.

17.png

For a static IP I set my IP address to 192.168.12.34 since I know that will work on my network.

18.png

For a static IP I set the netmask to /24 which is 255.255.255.0.

19.png

For a static IP I set the gateway to 192.168.12.1 because that is the gateway of my network.

20.png

For a static IP I set three public DNS (Domain name servers) using a space as a delimiter.

1.1.1.1 <== Cloudflare DNS
208.67.222.222 <== OpenDNS
8.8.8.8 <== Google DNS

21.png

For a static IP Verify the networking information is correct. Click "Yes" to accept the changes.

22.png

Wait 3 seconds for the network link to be detected. Press "Continue".

23.png

Set the hostname for the computer.

24.png

Set a domain name for the system. It is better to make something up here. For more information see RFC6762

25.png

Set up users and passwords for the system.

26.png

Enable shadow passwords. Select "Yes" here. This is for security. Shadow passwords will allow the hashed password to be stored in /etc/shadow, which is only readable by root.

27.png

For added security, select "No" for "Allow login as root". Users will be able to type sudo to run root commands.

28.png

Type your full name here. Applications that display your full name will use this.

29.png

Type the user name which you will use to log into the computer.

30.png

Set a strong password here.

31.png

Re-type the password you selected to make sure it is correct.

32.png

Set the system clock.

33.png

If you wish to use NTP (Network Time Protocol) select "Yes".

34.png

Select a public NTP server close to where you live for the best outcome. I live in the United States so I set my NTP server to "0.us.pool.ntp.org".

35.png

Set the time zone you live in. I selected "Eastern" since I live in the Eastern time zone.

36.png

The installer will detect the disks connected to the system.

37.png

Partitioning the disks will allow us to divide the hard disk into sections. I select "Guided - use entire disk" here to install on my empty 500GB hard drive.

39.png

38.png

It displays I have one 500GB drive installed in the system.

40.png

Select the partitioning scheme you wish to use here. I recommend separating /home, /var, and /tmp partitions to for the following reasons.

  • Separate data that needs backing up such as /home to make things easier.
  • Isolate parts of the file system to increase security.
  • Restrict the growth of a file system. If /var is filled it will not fill the whole disk.

41.png

After the guided partitions are created select "Finish partitioning and write changes to disk".

42.png

The changes will be displayed to make sure that is how you want it. Select "Yes" to write the changes to disk.

43.png

Install the packages for the base system.

44.png

Select a kernel to install in the system. linux-image-amd64 is the kernel generic package.
linux-image-5.10.0-8-amd64 will just specify the exact version.

45.png

Select "generic: include all available drivers" to make sure you install the drivers you need.

46.png

Configure the package manager.

47.png

This option allows you to scan for extra installation media such as a DVD. We only have the USB we are using to install the operating system. Select "No" to scan extra installation media. Extra programs can be installed from a network mirror.

48.png

Select "Yes" to use a network mirror. This will connect us to a online repository to access more software than what is on the installation USB.

49.png

Select "http".

50.png

Pick a network mirror that is closest to you for the fastest download.

51.png

52.png

Leave HTTP proxy information blank and select "Continue" unless you know you are using a proxy.

53.png

Select use "non-free" software. Recommended for a desktop/laptop.

54.png

Source repositiories in APT will allow you to download the source code for packages. You can select "No" here. This can be enabled easily in /etc/apt/sources.list later if you want.

55.png

It is recommended to install security updates. Click "Continue".

56.png

Select and install software.

57.png

It is your choice to have security updates installed automatically using the unattended-upgrades package. The default setting is to not run automatic security updates.

58.png

You can join the package survey if you wish here.

59.png

For a minimal Debian install I have deselected everything here except for "standard system utilities". This will provide you with a lean system that is not resource hungry. Remember other packages can be installed later.

60.png

Install GRUB to the boot loader of the hard disk.

61.png

Select "Yes" to install GRUB to the primary drive.

62.png

I have one drive in the computer, /dev/sda. I will select that option instead of entering it manually.

63.png

Select "Yes" to force GRUB installation to the EFI removable media path to a fallback location just in case the EFI firmware does not meet the EFI specification.

64.png

Click "Enter" to finish the installation.

65.png

Click "Yes" to set the system clock to UTC.

66.png

If you wanted to set up a server, once you get to this point reboot the computer and your Debian installation is finished.

67.png

If you only wanted a minimal server you are done with the installation process. Click "Continue" to reboot. Remember to remove the USB flash drive installation media. Upon reboot you will be presented with this splash screen.

68.png

How to add a desktop environment

If you wanted a graphical user interface sign in and install the desktop of your choice. You have many desktop options such as Xfce, Gnome, KDE, Mate, LXDE. See task-xfce-desktop task-gnome-desktop task-kde-desktop etc.

To install the Xfce desktop run these commands.

$ sudo apt update

$ sudo apt upgrade

$ sudo apt install task-xfce-desktop 

$ sudo systemctl reboot

Enter fullscreen mode Exit fullscreen mode

After logging in you will be presented with the Xfce desktop.

71.png

Conclusion

I have shown you how to expert install of Debian 11 Bullseye step by step.
You will be now able to use Debian's flexible installer to install a minimal server or a desktop/laptop.

Thank you for reading my article.

Follow me on Dev.to and Github.

Please feel free to leave comments, questions, and suggestions.

Top comments (8)

Collapse
 
dotur911 profile image
dotur911

Hi,and thank you for the complete guide, i have followed instalation guide like you and i choose not to have installed any additional soft (gui addon, tools, ssh server... etc) an i ended up in 119MB memory usage. i dont know how is that possible. As i can see,you are ended up with 61 MB, What did I do wrong?...

Collapse
 
brandonwallace profile image
brandon_wallace

You can check to see what is utilizing the memory with a system monitor application. I do not think you have a problem at all. If the system is using only 119MB of memory that is pretty good. I would not worry about it.

Collapse
 
mccurcio profile image
Matt Curcio • Edited
  • This article brings me back to good old days when they had books that showed these pictures. haha

Good job! I know how hard it is to collect the screen shots from a process like this and keep it all straight.

Collapse
 
brandonwallace profile image
brandon_wallace

Yes, I wanted to make it easy for people to go through the install. I have not seen any tutorials on the internet showing the "Expert install".

Collapse
 
koskoros profile image
nikolas koskoros

And frankly, it's much easier and straightforward than the automatic graphic install thanks to your article. Too bad I default installed Gnome on a ten year old Pavilion dv6 with 4gb of memory but your guidelines are so clear, I already know how to switch to Xfce. Kudos!

Collapse
 
danielcristho profile image
Daniel Pepuho

cool article😎

Collapse
 
brandonwallace profile image
brandon_wallace

Thanks.

Collapse
 
brandonwallace profile image
brandon_wallace

I agree with you 100%.