Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abarrak/linux-sysops-handbook

Essentials of Linux system administration.
https://github.com/abarrak/linux-sysops-handbook

gitbook linux markdown

Last synced: 4 days ago
JSON representation

Essentials of Linux system administration.

Awesome Lists containing this project

README

        

# Linux SysOps Handbook

An essentials notebook for the common knowledge and tasks of a Linux system admin.

[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)


![GitHub contributors](https://img.shields.io/github/contributors/abarrak/linux-sysops-handbook)

## Table of Content

- [1. Processes](#processes)
- [2. User Management](#user-management)
- [3. Shell Tips and Tricks](#shell-tips-and-tricks)
- [4. File Permissions](#file-permissions)
- [5. Background Services and Crons](#background-services-and-crons)
- [6. Linux Distros](#linux-distros)
- [7. Logs, Monitoring, and Troubleshooting](#logs-monitoring-and-troubleshooting)
- [8. Network Essentials](#network-essentials)
- [9. System Updates and Patching](#system-updates-and-patching)
- [10. Storage](#storage)
- [11. Notes & Additional Resources](#notes-and-additional-resources)

## Processes

List the current active process with their statuses, numbers, resource usage, etc. using the command `ps`.

```shell
$ ps auxc
```

Quoting man's page documentation on `ps`: "A different set of processes can be selected for display by using any combination of the `-a, -G, -g, -p, -T, -t, -U, and -u` options. If more than one of these options are given, then ps will select all processes which are matched by at least one of the given options".

The daemon `systemd` process starts during boot time, and remains active until the shutdown. It's the parent process for all other process in the system.

Each process contains several main parts, such as: PID, state, virtual space address (memory), threads, network and file descriptors, scheduler information, and links. Processes are controlled and respond to signals. The states that a process can transition among are depicted below:

To observe the states and other information of the processes interactively, use the `top` command.

To run executables as background process (job), append an ampersand to it:

```shell
$ echo "Hi .. looping:" | sleep 10000 | echo "done." &
```

To view the current jobs, and their details run `job`, `ps j` commands respectively.

To bring back a job in the foreground in the current session, and send it back use the following:

```shell
$ fg %
$ ctrl+z
$ bg %
```

Use the command `kill -l` to see the available signals to send to processes, like interrupt, terminate, resume, etc.

```shell
$ kill -l
$ kill -9 5921
$ kill -SIGTERM 6152
```

Use `killall` to operate on multiple processes using their executable name. Use `pkill` for filtering with more options.

```shell
$ killall -15 nginx
$ pkill -U tester
```

Finally, use `pstree` and `pgrep` to view process parent/child tree and search for processes by pattern.

```shell
$ psgrep -u abdullah -l
```

## User Management

The users and groups are managed in `/etc/passwd` and `/etc/group` files.

```shell
$ tail /etc/passwd
$ tail /etc/group
$ tail /etc/shadow
```

The commands to manage a user are as follows:
- `useradd`
- `usermod`
- `userdel`

And for groups:
- `groupadd`
- `groupmod`
- `groupdel`

Each user in the system is associated with unique user id `uid`, and each group is associated with `gid`.

```shell
$ id abdullah
```

Use flags `-g` and `-aG` for users to replace group or append group, respectively:

```shell
$ sudo usermod -G admins abdullah
$ sudo usermod -aG staff abdullah
```

To lock or unlock a user account, us the `-L`, `-U` options respectively.

```shell
$ usermod -L
$ usermod -U
```

To restrict service user accounts (e.g. accounts for web servers), the shell can be set to `nologin`:

```shell
$ usermod -s /sbin/nologin nginx_usr1
```

To change a user password, use the command `passwd` interactively. Additionally `change` command sets the password policy in the system.

Use the command `su - ` to switch to the specified user. which will promote for her password. Running the command without username will switch to
the root user. To avoid cases where password is not available, use `sudo` to switch accounts using current user password only and according to rules in `/etc/sudoers` directory. Use `sudo -i` to gain an interactive root shell.

## Shell Tips and Tricks

Getting used to [bash language and its fundamentals](https://learnxinyminutes.com/docs/bash/) like conditions, looping, functions, etc. is recommended.

The popular files and text processing and manipulation utilities are important to master, such as:

- `cat`
- `cp`
- `rm`
- `mkdir`
- `rmdir`
- `touch`
- `less`
- `more`
- `head`
- `tail`
- `grep`
- `find`
- `locate`
- `wc`
- `sed`

Use the command `date` to print the current date and time or others in the past and future:

```shell
$ date +%x
```

The standard terminal channels in Linux are 3: `stdin`, `stdout`, and `stderr` where the first is for input stream and the latters for output and error streams.

By default the successful command results are outputted to `stdout` (equivalent to `>`). You can explicity redirect to `stdout` or `stderr` as follows:

```shell
$ echo "hi there!" 1> error_log.txt
$ cat ~/incorrect-path 2> error_log.txt
# To both:
$ (echo "hi" && cat ~/wrong) >> log.txt 2>&1
```

To discard output stream, redirect it to the special directory `/dev/null`.

The standard input can be captured via redirection or file pipes:

```shell
$ cat <

An example of a cron entry that runs backup command, every day at 5:00 AM:

```shell
0 5 * * * /usr/bin/daily-backup
```

## Linux Distros

In 1991, Linux kernel was introduced by Linus Torvalds, and combined with GNU project, which was previously created in 1983-1984 as open source OS programs and components. This formed what we call today Linux distribution, a Unix-like operating system.

Today the Linux operating system is supported on most hardware platforms. [Linux works on almost every architecture from i386 to SPARC](https://www.linuxtrainingacademy.com/linux-distribution-intro/). Linux can be found on almost every type of device today, from watches, televisions, mobile phones, servers, desktops, and even vending machines.

One of the major distinction between Linux distributions is the package management part and how software is installed and managed. There are multiple package formats, and the most common ones are Debian (deb), RedHat Package Manager (RPM).

Here's a listing for the common Debian based distributions:

- Debian.
- Ubuntu.
- Linux Mint.
- Kali Linux.

And here's for RPM based distributions:

- Fedora.
- RedHat Enterprise Linux (RHEL).
- CentOS.
- openSUSE.

## Logs, Monitoring, and Troubleshooting

You can monitor the system's resources usage, uptime, and sessions' load leverages over time as follows:

```shell
$ top
$ uptime
$ w
```

Use `lscpu` to see the system's CPU in use and other details.

The system events and processes traces are usually kept in as logs in `/var/log` directory. There are two categories of logs: 1. essential system logs via `journald`, that are wiped across boots by default (can be configured to persist). 2. `rsyslog` logs that persist by default and organized inside `/var/log/` folder. Mainly, the logging mechanism in Linux follows the standard `syslog` protocol for the system's messages, events, security incidents, mailing, and jobs logs, while other programs may or may not follow `syslog` format identically.

As explored in section (3), use `cat`, `head`, `tail` commands to interactively see or follow the logs.

```shell
$ head -n 50 /var/logs/mail.log
$ tail -f /var/logs/mysql.log
```

You can configure `rsyslog` service and manage it as any daemon:

```shell
$ vim /etc/rsyslog.conf
$ systemctl reload rsyslog
```

On the other hand, use `journalctl` to view and follow the system's `journald` log entries, which resides in `/run/log/journal`.

```shell
$ journalctl -n 50 -p err
$ journalctl -f
$ journalctl _PID=6610
```

## Network Essentials

For effective work on the system network configurations and troubleshooting, it is essential to review network/internet protocols (TCP/UDP) and IPv4/IPv6 concepts [(Ref.1)](https://www.ibm.com/cloud/learn/networking-a-complete-guide), [(Ref.2)](https://www.cloudflare.com/learning/network-layer/what-is-a-protocol/).

See the hostname of current machine or set it as below:

```shell
$ hostname
$ hostnamectl set-hostname rhel.n1.apps.com
```

The host name is managed under `/etc/hostname`.

The host connection is either managed dynamically (`DHCP`) configured in `/etc/resolv.conf` or manually in `/etc/hosts` file.

The `ping` utiltiy helps for connectivity checking:

```shell
$ ping 172.168.9.13
$ ping -c4 github.com
$ ping6 2001:db8:3333:4444:5555:6666:7777:8888
```

To see the network routing table and interfaces, use the following:

```shell
$ ip route
$ ip -6 route
$ ip help
$ ip show link
```

Use the command `nmap` [for advanced network investigation and security monitor and scan.](https://www.cyberciti.biz/security/nmap-command-examples-tutorials/)

```shell
# Scan a single ip address
$ nmap 192.168.1.1

# Scan a host name
$ nmap -v server1.cyberciti.biz

# View open ports:
$ nmap --open 192.168.2.18

# Trace all pakets:
$ nmap --packet-trace 192.168.1.1
```

`NetworkManager` is the kernel feature [to manage network configurations in Linux](https://en.wikipedia.org/wiki/NetworkManager). `nmcli` is the terminal utility.

```shell
$ nmcli device wifi list
$ nmcli dev status
$ nmcli general hostname centos-8.cluster.internal
$ nmcli con show
```

## System Updates and Patching

Managing the system packages varies depending on Linux distributions, but the essential parts are the same (installation, repositories, package managers, etc.). For Debian based distributions, `apt` is the package manager, whereas for Fedora / RHEL, `yum` is used.

Search for some package:

```shell
$ apt search
$ yum search
```

Install a package:

```shell
$ apt install
$ yum install
```

Update a package or all packages:

```shell
$ apt upgrade
$ yum update
```

Remove a package:

```shell
$ apt remove
$ yum remove
```

Show details on a package:

```shell
$ apt show
$ yum info
```

List all current packages on the system:

```shell
$ apt list --installed
$ yum list
```

Audit the history of package management actions:

```shell
$ cat less /var/log/apt/history.log | less
$ cat less /var/log/dnf.rpm.log | less
$ yum history
```

And finally, the package source repositories can be set up and updated through the following:

```shell
# list current enabled repos
$ yum repolist all
$ apt-cache policy

# manage and add repos in these directories:
$ cat /etc/apt/sources.list /etc/apt/sources.list.d/*
$ cat /etc/yum.repos.d/*
```

## Storage

Linux is formed for a unified file-system consists of all file systems provided by the hardware or virtual storage devices attached to the system. Essentially, everything in Linux is a file. It can be viewed as a reversed tree of nested directories starting from the root directory `/`.

Block devices are the mechanism that the kernel detects and identify raw storage devices (HDD, SSD, USBs, ..). [As the name indicates, the kernel interfaces and references them by fixed-size blocks (chunks of spaces)](https://www.digitalocean.com/community/tutorials/an-introduction-to-storage-terminology-and-concepts-in-linux). The block devices are stored in `/dev` directory by the OS, and has letters naming convention such as `/dev/sda`, `/dev/sdb`, `/dev/vda`, and appended numbers in case of partitions `/dev/sda3`. The attachment of the block device into the system is done through mounting it to a directory in the system.

Two operations are essential for using block storage:

**1. Partitioning:**

Breaking the disk into reusable smaller units, each treated as own disk.
The main partitioning methods are MBR (Master Boot Record) and GPT (GUID Partition Table).
Use `parted` or equivalent commands to prepare partitions of block devices.

**2. Formatting:**

Preparing the device as a file-system to be read and write to. Many file-system formats exists like:

- `Ext4`.
- `XFS`.
- `Btrfs`.
- `ZFS`.

Additionally, LVM concepts focus on building more extensible storage layout by grouping physical volumes (PV) into logical groups (VG), then creating logical volumes from, with possibility of extending or reduction later on.

To see the block devices and currently attached file system with mounts, and disk usage:

```shell
$ blkid
$ mount
$ df -h
$ du -h /opt/data
```

The `lsof` command lists all active processes using the block device.

The permanent mounting process rely on `/etc/fstab` file to determine devices to mount on the boot time.

Use the commands `lsblk`, `mount`, and `unmount` to check and mount filesystem devices, respectively.

## Notes and Additional Resources

Use the `man` command to lookup the manual information on commands or topics in the system.

Additionally, the `info` command is the GNU documentation tool and provide more detailed materials.

Both provide shortcuts, navigation, and searching capabilities (e.g. `man -K ` to search across manual).

### Recommended Reading List

**Books:**

1. [How Linux Works What Every Superuser Should Know, Brian Ward, _2nd Edition, No Starch Press_.](https://www.amazon.com/How-Linux-Works-2nd-Superuser/dp/1593275676).
2. [Linux Command Line and Shell Scripting Bible, R. Blum and C. Bresnahan, _3rd Edition, Wiley_.](https://www.amazon.com/Command-Scripting-Christine-Bresnahan-2015-01-20/dp/B01JNWWSZA)
3. [Linux Bible, Christopher Negus, _9th Edition, Wiley_.](https://www.amazon.com/Linux-Bible-Christopher-Negus/dp/1119578884/)

**Websites & Blogs:**

1. [Digital Ocean Knowledge Hub.](https://www.digitalocean.com/community/tags/linux-basics?language=en)
2. [9 to 5 Linux Blog.](https://9to5linux.com/)
3. [nixCraft.](https://www.cyberciti.biz/)

## License

[GNU General Public License v3.0](https://github.com/abarrak/linux-sysops-handbook/blob/main/LICENSE).