It's best to search distribution's manual/official help pages before trying commands found on Internet, including ones here. Certain seemingly short commands can instantly break your installation and - rarely - command parameters differ, leading to behavior different from expected.

In all examples, cat could be replaced with less with few crucial considerations:

Notes regarding easy of use

General info

Getting information about shell built-in functions and commands.

help

Shows help page for built-in help command

man

Shows manual entry page for command man command

Persistent sessions

Preventing programs terminating due to connectivity issues.

tmux

Disk and space

Checking space usage and available disks.

Information about disk devices (script-friendly, verbose)

cat /proc/diskstats

df

lsblk

Lists block devices excluding loop device (for example, snap devices) lsblk -e 7 Lists block devices with serial number (if any) lsblk -o +SERIAL

System info

htop

Start program listing system CPU/memory loads and list of processes htop

free

Memory and swap info (sizes in human-friendly format) free -h

swapon

swap info (human-friendly) swapon --show

uptime

Current hour, uptime then load averages over 1/5/15 minutes uptime

dmidecode

DMI - Desktop Management Interface (SMBIOS - System Management BIOS) table content in human-readable format (description of hardware components, serial numbers, BIOS revision sudo dmidecode Display value of DMI string identified by KEYWORD: -s, --string (skipping KEYWORD prints available options). Most of those can be read directly from sysfs at /sys/devices/virtual/dmi/id sudo dmidecode --string KEYWORD Display entries of type TYPE: -t, --type (skipping TYPE prints available options) sudo dmidecode --type TYPE DMI types:
Type Information
0 BIOS
1 System
2 Baseboard
3 Chassis
4 Processor
5 Memory Controller
6 Memory Module
7 Cache
8 Port Connector
9 System Slots
10 On Board Devices
11 OEM Strings
12 System Configuration Options
13 BIOS Language
14 Group Associations
15 System Event Log
16 Physical Memory Array
17 Memory Device
18 32-bit Memory Error
19 Memory Array Mapped Address
20 Memory Device Mapped Address
21 Built-in Pointing Device
22 Portable Battery
23 System Reset
24 Hardware Security
25 System Power Controls
26 Voltage Probe
27 Cooling Device
28 Temperature Probe
29 Electrical Current Probe
30 Out-of-band Remote Access
31 Boot Integrity Services
32 System Boot
33 64-bit Memory Error
34 Management Device
35 Management Device Component
36 Management Device Threshold Data
37 Memory Channel
38 IPMI Device
39 Power Supply
40 Additional Information
41 Onboard Devices Extended Information
42 Management Controller Host Interface
Keyword - type table:
Keyword Type
bios 0, 13
system 1, 12, 15, 23, 32
baseboard 2, 10, 41
chassis 3
processor 4
memory 5, 6, 16, 17
cache 7
connector 8
slot 9

Logs

journalctl

Continuously display logs of service sudo journalctl -u SERVICE_NAME -f Further details: page about systemd

dmesg

Checking kernel logs sudo dmesg Log file less /var/log/dmesg

tail

Print file content and continue printing it as it comes tail -f path_to_file

Searching for things

find

Helps find file based on its properties or name.

grep

Helps locate file containing specific content.

Other