~ Return to the rest of the site

linux

updated 2022-05-17


ACPI client

An ACPI client is a program that displays computer ACPI information, typically power and thermal statuses. The usual text program used is acpi(1).

Alpine

Always install manual pages

Alpine doesn't include man pages in program packages to save on space, instead keeping them in [package]-doc sibling packages. To always install doc packages with program packages, apk add docs.

Arch and Artix

Bootstrapping: Installing essential packages

On Artix, use basestrap(8). On Arch, use pacstrap(8).

At a minimum you need base on both Arch and Artix. On Artix, you need to select the initialization you want to use: 66, dinit, openrc, runit, or s6-base. On both Arch and Artix, select a kernel; linux, linux-lts, or another Linux configuration or fork. Arch says you need to install linux-firmware, technically you don't need to do so but you should. Artix says you need to install the appropriate elogind package (elogind-$(INIT_SYSTEM); e.g. elogind-66). This isn't necessary if you aren't using elogind, but you most likely want elogind. Install base-devel if you plan on using the AUR or if you don't know what the AUR is yet.

It's also a good idea to install any utilities you'll need on the bootstrapped system. Text editors, network managers or utilities, and other administration tools, for example. Manual utilities such as man-db and others would also be useful.

Ubiquitous packages missing

From the anals of my notes, 2021-06-04:

Had an issue with pacman missing some ubiquitous packages (esr's `ascii`, xorg-xev, etc).
This fixed it. I don't really know why - maybe some issues with my repos?
This was cleanly installed artix-openrc.

[5:46 PM] Bassman Leyla: So what I did is I went into /etc/pacman.d/mirrorlist-arch and uncommented a local mirror
[5:46 PM] Bassman Leyla: Then I appended a config block a package maintainer gave me onto /etc/pacman.conf
[5:46 PM] Bassman Leyla: I'll paste it in
[5:47 PM] Bassman Leyla:
```
#
# ARCHLINUX
#

#[testing]
#Include = /etc/pacman.d/mirrorlist-arch

[extra]
Include = /etc/pacman.d/mirrorlist-arch

#[community-testing]
#Include = /etc/pacman.d/mirrorlist-arch

[community]
Include = /etc/pacman.d/mirrorlist-arch

#[multilib-testing]
#Include = /etc/pacman.d/mirrorlist-arch

#[multilib]
#Include = /etc/pacman.d/mirrorlist-arch
```

C Language

For compilation, tcc(1), gcc(1), and clang(1) are all reasonable choices depending on your needs.

On Alpine Linux, the standard library headers are in the musl-dev package.

In most system package managers, standard library documentation can be found in the man-pages and man-pages-posix packages.

Many Linux software distributions' system package managers have meta-packages that pull all necessities for C development as dependencies. Alpine has build-base and Debian has build-essential.

Debian

Debian is a Linux software distribution known for its stability and longevity. Debian uses SystemD as its initialization system, the GNU core utilities, and dpkg and apt for package management.

Fonts

fstab

See fstab(5).

postmarketOS requires that the localmount OpenRC service be enabled for the system to read fstab(5).

Arch and Artix have fstab generators at genfstab(8) and fstabgen(8) respectively in their installation scripts.

Login manager

Use elogind.

Make utility

make(1) in modern times is fragmented into the GNU version (in context, gmake) and the {Free,Open,Net}BSD version (bmake). Complex Makefiles may not be useable in both. It's custom for Linux systems to have make(1) as GNU Make and bmake(1) as BSD Make, and BSD-based systems to have make(1) as BSD Make and gmake(1) as GNU Make.

On-line manual

In the context of POSIX and UNIX-like systems, an "on-line" manual is a manual that is accessible via the computer system it documents. Particularly, the man(1) utility and the manual "pages" it references.

Alpine by default uses mandoc.

Paging

less(1) is more(1); more or less.

Partitions and filesystems

Don't use partitioners included with OS media where the same job can be done by GParted (which has live media available) or another good general-purpose partitioner. BSDs and Plan 9 are exceptions to this rule due to their exotic partitioning systems. Using utilities from a shell or TUIs does not make you "cooler" than someone who needs a GUI for partitioning; in some cases, messing up partitioning can have serious consequences, so it's always nice to have some idiot-proofing. I always partition my disks with the GParted live media.

You should do your own research on how you should partition your disks. I personally use separate partitions for /boot, /home, /, and swap. Your needs will vary.

Please note that a separate boot partition is mandatory if you intend to boot via (U)EFI. Check out the linked pages in the "See also" section.

Use mkfs(8) for creating filesystems and mount(8) for mounting partitions' filesystems.

LUKS

e2fsprogs is needed for the dm_mod kernel module used for LUKS partition decryption.

To format a partition to a LUKS volume, determine the physical block device location for that partition and run cryptsetup luksFormat [partition]. The passphrase used can be changed or removed after creation.

To open a LUKS volume, use cryptsetup luksOpen [partition] [name]. This name is the name the decrypted block device location will take in /dev/mapper/.

Before the decrypted block device has a filesystem it'll just be cleared space - format as normal but use the decrypted block device location.

To mount a partition in an opened LUKS volume, use mount(8) as normal, just with the decrypted block device location.

To close an open LUKS volume, umount(8) any mapped and mounted partitions from the volume and cryptsetup luksClose [name].

To make the LUKS partition openable via keyfile, first make a keyfile (dd if=/dev/urandom of=/root/keyfile bs=1024 count=4 seems to work), and optionally make it readable by root only (chmod 0400 [keyfile]). Then add the keyfile to the partition's LUKS header with cryptsetup luksAddKey [physical partition block device] [keyfile].

dm-crypt

dm-crypt is a service that automatically mounts LUKS volumes at boot.

On most OpenRC-initialized distributions, the cryptsetup-openrc package provides dmcrypt. Make sure that service is added to runlevel boot.

Configuration is in /etc/conf.d/dmcrypt and further configuration should be done in fstab. dm-crypt will need the UUID of the physical block device while fstab (if being configured with UUIDs will need the UUID of the decrypted block device in the device mapper.

postmarketOS

postmarketOS is an Alpine-based Linux software distribution that makes configuring and using Linux easy on mobile devices. It uses OpenRC for initialization, busybox for core utilities, and can come with any of multiple windowing systems and window managers.

Random MAC address generation on Wifi

By default, postmarketOS will generate a random software MAC address when connecting to a new WLAN network. You can disable this by adding a NetworkManager rule. In /etc/NetworkManager/conf.d/ you can make a file with any name that has the following:


[device]
wifi.scan-rand-mac-address=no

On a live system you can then rc-service networkmanager restart to restart NetworkManager and have it load the new configuration.

Power

Much of this can be configured in the ACPI settings in your login manager, provided you have one running that can do this.

Check out tlp for Thinkpads and some other Lenovo devices.

SSH keys

SSH keys are typically stored in $HOME/.ssh.

Typically, the public key's filename will be suffixed with .pub, while the private key will not.

You can generate an SSH key with ssh-keygen(1). Currently the preferred implementation is openssh-keygen, part of the OpenSSH suite.

Microsoft GitHub documentation suggests a user create a key with ssh-keygen -t ed25519 -C "[e-mail address]". This generates an Ed25519 SSH key with an e-mail address in the key comment.

Task management

top(1) comes with busybox, otherwise use htop.

Text editing

nano(1) is a text editor that's usually recommended for beginners because its controls are more intuitive. ne(1) is like nano(1) but with different superpowers. Not yet in pkgsrc.

ed

A particularly shoddy attempt at ed(1) is provided by busybox. A traditional ed(1) implementation is in plan9ports. I'm pretty sure some later UNIX-based OSes doubled the ed(1) buffers, there's pretty much no downside to doing so in the modern era but it should be very easy to do yourself if it hasn't already been done (just double some of the array sizes in the beginning of ed.c).

vi

Unlike busybox's ed(1) implementation, its vi(1) is very useable. vim(1) is a popular re-implementation of vi(1).

emacs

Emacs ("editor macros") is a text editor with a very powerful Lisp interpreter included. Lisp is mostly antiquated due to its undeserved lack of popularity. Linus Torvalds uses his own fork of uEmacs ("micro Emacs"), an Emacs without the Lisp interpreter(?).

cat

Technically cat(1) and other UNIX utilities can be used in a hacky way for text editing functions. You'd be better off using ed(1); the UX is very similar.

util-linux

util-linux is distributed on all popular Linux distributions and contains utilities users may expect to be already present on their systems, like more(1) or hexdump(1).

WiFi

I use iwd(8) and iwctl(8). Some prefer NetworkManager and I believe that's the default on Debian. The Artix wiki suggests connman.

wpa_supplicant

wpa_supplicant(1) is often used by insane people without any helper scripts. I haven't had good luck with it but Alpine set it up automatically.

X

X is a graphical windowing system that can be used on Linux, FreeBSD, OpenBSD, NetBSD, and some proprietary operating systems as well. X is not the only windowing system; twin(1) exists for windowed multitasking within a framebuffer and Wayland is another windowing system intended to replace X.

Xorg requires the user to be a member of the input and video groups (or superuser), otherwise it won't be able to access the relevent device files. These errors look like Failed to open /dev/input/event[number] (Permission denied) when not in the input group and Failed to open /dev/tty[number] (Permission denied) when not in the video group.

Some Linux software distributions have included scripts to automatically fetch and install an X server. Alpine has setup-xorg-base, which adds the packages xorg-server, xf86-input-libinput, eudev, and mesa, and then enables the OpenRC services for udev.

startx(1) is provided as part of xinit.

Arch has the xorg and xorg-apps package groups. Documentation can be found within xorg-docs, drivers within the xorg-drivers package group, the server itself as xorg-server, the X event monitor as xorg-xev, xinit as xorg-xinit, xinput as xorg-xinput, XRandR as xorg-xrandr, the X resource database manager as xorg-xrdb, xset as xorg-xset, and xsetroot as xorg-xsetroot.

Alpine has xinput as xinput.

Audio

Most audio servers recommend that they be run in userspace with user privileges, with PulseAudio going so far as to exiting when run as root without additional configuration. The Alpine wiki currently recommends pipewire(1), with postmarketOS, which is based on Alpine, coming pre-configured with PipeWire. PipeWire is relatively new and the typical audio server used is PulseAudio; Debian and many popular Debian-based distributions come pre-configured with PulseAudio.

ALSA

The Alpine wiki ("Adding sound") says to install alsa-conf, alsa-lib, and alsa-utils, add yourself to the audio group, and then do some more configuration that I've never needed to do: Use alsamixer(1) to find a working sound card (press F6 from the first screen ALSAMixer presents) and edit /usr/share/alsa/alsa.conf and change defaults.ctl.card and defaults.pcm.card to the sound card that works.

The Alpine wiki doesn't mention this but you'll need to enable the alsa OpenRC service and either start it or reboot. I also installed gstreamer but I don't know why.

ALSA is clunky, many people prefer to use a frontend such as Pipewire or PulseAudio that exposes its own interface while remaining compatible with ALSA.

OSS

Deprecated, unfortunately.

PipeWire

Provided by the pipewire package on Alpine.

RTKit error: org.freedesktop.DBus.Error.ServiceUnknown

This means you need rtkit installed and running through your initialization system.

PulseAudio

On Alpine you'll need the pulseaudio, pulseaudio-alsa, and alsa-plugins-pulse packages for PulseAudio with ALSA compatibility. Start pulseaudio(1) when you want audio, ideally in your .xinitrc.

Media

mpv(1) and vlc(1) are good options.