root@cheat
free -h
Display memory usage in human-readable format. Shows RAM and swap usage statistics.
journalctl -xe
View systemd journal logs with extended info. -x adds explanatory help text, -e jumps to the end.
systemctl restart
Restart a systemd service. Stops and then starts the service, applying any configuration changes.
systemctl status
Check the status of a systemd service. Shows if the service is running and recent log entries.
uname -a
Print detailed system information including kernel name, version, hostname, and architecture.
uptime
Show how long the system has been running, number of users logged in, and system load averages.
kill -9
Forcefully terminate a process by its PID. Signal 9 (SIGKILL) cannot be caught or ignored.
htop
Enhanced interactive process viewer with color display and mouse support. More user-friendly than top.
top
Interactive real-time process viewer. Shows system summary and list of processes updated continuously.
ps aux
Display all running processes with detailed information including CPU and memory usage.
tail -f
Display the last lines of a file and follow new additions. -f flag follows the file in real-time.
apt
Install packages on Debian/Ubuntu systems
sudo
Execute a command with superuser privileges
df
Display disk space usage in human-readable format