Linux
# Useful stuff
# Related
# To learn
sudo
- NixOS and Nix package manager
# Terminal thingies
Maybe move this to somewhere else?
Useful terminal and shell commands
# Controlling processes
You can launch some process with &
in the end to start it in the background, like yes &
. Or press Ctrl + Z
to pause current process and move it to the background, then bg
to continue it. See UNIX processes.