Useful commands

  1. ncdu - Better version of du that provides a navigation interface. Allows navigation, deleting of files, sorting by file names / sizes etc. Read more at: https://linux.die.net/man/1/ncdu
  2. getent group <x> - Get list of all members in group <x>
  3. ifconfig - Deprecated. Use ip addr instead
  4. ip addr - Alternative to inconfig. Allows addition/deletion of ips. Read more at: https://linux.die.net/man/8/ip
  5. lastb - Gives a list of all failed logins
  6. fail2ban - Is a service to prevent malicious logins (Read more at: https://www.fail2ban.org/wiki/index.php/Main_Page)
  7. fail2ban-client status sshd - Will give stats about failed logins
  8. last reboot - Prints list of past reboots
  9. netplan apply - Applies the network configuration defined in /etc/netplan/...yaml
  10. lsblk - List block devices. Read more at: https://linux.die.net/man/8/lsblk
  11. dmidecode - Software tool that allows you to extract detailed hardware information from a system by decoding the DMI (Desktop Management Interface). Read more at https://www.howtoforge.com/dmidecode-finding-out-hardware-details-without-opening-the-computer-case Commonly used dmidecode -t system and dmidecode -t baseboard
  12. lsb_release -a - Shows current version of the OS
  13. #!/bin/bash -e - The 'shebang' that you add to the top of a bash script such that the script exits when any line in the script returns with a non-zero exit status
  14. do-release-upgrade - Upgrades the OS to latest developmental release. This is NOT a CLEAN INSTALL. It will upgrade the existing OS that’s all!
  15. dmesg - https://www.howtogeek.com/449335/how-to-use-the-dmesg-command-on-linux/
  16. modprobe - Used to add or remove modules from the kernel. Read more at https://www.linuxfordevices.com/tutorials/linux/modprobe-command and https://linux.die.net/man/8/modprobe

OS services

systemctl - CLI utility to manage services without using SystemD. Read more at: https://man7.org/linux/man-pages/man1/systemctl.1.html

systemctl list-units - Lists units that systemd currently has in memory. Includes units directly referenced or through a dependency.