10 KiB
Essential Linux
Introduction to Linux
Where does Linux originate from?
- The spiritual mother of Linux is Unix.
- POSIX is not an OS in itself but a standard.
- Which OS's are POSIX compliant
Who is behind this project?
- Who is Richard Stallmann?
- Who is Linux Torvalds?
What is the deal with 'GNU-slash-Linux'?
- GNU/Linux controversy
- What is a kernel
- What does GNU bring to the table?
- What's the deal with userspace and kernelspace?
Where can you get some Linux?
- You probably already have a Linux computer running at home!
Debian
- Reasons to choose Debian.
- Why is Debian called the universal operating system?
- comparison of CPU architectures
- download Debian
How to create a virtual machine
Step by step walk-through of a VM creation in virtualbox with some notes on each step with best practice pointers.
Breakdown of the Debian installation
All right, enough talking, let's get started! I'll install a full blown and modern graphical Debian machine and I would like you to not do it yourself but take notes on each step so you'll be able to reference your notes later when I ask you to install a machine yourself.
- step by step installation instructions
- don't set a root password, use
sudo
instead - stress the graphical/minimal difference
- don't set a root password, use
Exercise
OK, now it's up to you! Please install a Debian machine with the default graphical environment. Once installed, take some time out to explore the system. Which software is installed by default? How can you tweak the system settings such as language, keyboard, networking? Can you install extra software?
Quick look at an idle system
Package managers
- what is a package manager
Graphical installation
Command line installation
waldek@hellodebian:~$ htop
-bash: htop: command not found
waldek@hellodebian:~$ apt install htop
E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
waldek@hellodebian:~$ sudo apt install htop
[sudo] password for waldek:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Suggested packages:
lm-sensors strace
The following NEW packages will be installed:
htop
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 127 kB of archives.
After this operation, 328 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bullseye/main amd64 htop amd64 3.0.5-7 [127 kB]
Fetched 127 kB in 0s (2,030 kB/s)
Selecting previously unselected package htop.
(Reading database ... 141359 files and directories currently installed.)
Preparing to unpack .../htop_3.0.5-7_amd64.deb ...
Unpacking htop (3.0.5-7) ...
Setting up htop (3.0.5-7) ...
Processing triggers for mailcap (3.69) ...
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for gnome-menus (3.36.0-1) ...
Processing triggers for man-db (2.9.4-2) ...
waldek@hellodebian:~$
Adding a secondary desktop environment
Changing the runlevel
The first process started by the kernel can be discover by htop
and is /usr/sbin/init
.
This is rather vague but we can find out a bit more about this program via ls
which we'll get into more detail later.
For now just have a look at the output of the following commmand.
waldek@hellodebian:~$ ls -l /usr/sbin/init
lrwxrwxrwx 1 root root 20 Jul 13 2021 /usr/sbin/init -> /lib/systemd/systemd
waldek@hellodebian:~$
Now, what is this systemd?
And more importantly, how do we interact with it?
For now just accept that the main program to communicate with systemd
is systemctl
.
A quick look at the man
pages gives us the following.
SYSTEMCTL(1) systemctl SYSTEMCTL(1)
NAME
systemctl - Control the systemd system and service manager
SYNOPSIS
systemctl [OPTIONS...] COMMAND [UNIT...]
DESCRIPTION
systemctl may be used to introspect and control the state of the "systemd" system and service manager. Please refer to systemd(1) for an
introduction into the basic concepts and functionality this tool manages.
waldek@hellodebian:~$ sudo systemctl set-default multi-user.target
[sudo] password for waldek:
Removed /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target → /lib/systemd/system/multi-user.target.
waldek@hellodebian:~$ sudo reboot now
waldek@hellodebian:~$ sudo systemctl set-default graphical.target
[sudo] password for waldek:
Removed /etc/systemd/system/default.target.
Created symlink /etc/systemd/system/default.target → /lib/systemd/system/graphical.target.
waldek@hellodebian:~$ sudo reboot now