The id command displays the identity of the user running the session along with the list of groups they belong to
The uname -a command returns a single line documenting the kernel name (Linux), the hostname, the kernel release, the kernel version, the machine type (an architecture string such as x86_64), and the name of the operating system (GNU/Linux).
The ps aux command lists the processes currently running and helps to identify them by showing their PID. Once you know the PID of a process, the kill -signal pid command allows you to send it a signal (if you own the process).
The jobs command lists the processes running in the background; running fg %job-number (for foreground) restores a job to the foreground. When a command is running in the foreground (either because it was started normally, or brought back to the foreground with fg), the Control+Z key combination pauses the process and resumes control of the command line. The process can then be restarted in the background with bg %job-number (for background).
You can retrieve the kernel logs with the dmesg command. Systemd’s journal also stores multiple logs (stdout/stderr output of services, syslog messages, kernel logs) and makes it easy to query them with journalctl.
(ex: journalctl -u ssh.service).
The find directory criteria command searches for files in the hierarchy under directory according to several criteria.
lspci lists PCI devices, lsusb lists USB devices, and lspcmcia lists PCMCIA cards (pcmciautils must be installed with apt update followed by apt install pcmciautils).