Operations 5 min read

Essential Linux Commands Every Sysadmin Should Know

This guide compiles the most useful Linux command‑line tools for inspecting system information, managing resources, networking, processes, users, services, packages, security settings, and FTP operations, providing a quick reference for administrators and power users alike.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Essential Linux Commands Every Sysadmin Should Know

System Information

# uname -a

– display kernel, OS, and CPU details # head -n 1 /etc/issue – show OS version # cat /proc/cpuinfo – view CPU information # hostname – display the host name # env – list environment variables # dmidecode – retrieve detailed hardware data

Resources

# free -m

– show memory and swap usage # df -h – display disk space usage for all partitions # du -sh – report size of a specific directory # uptime – show system uptime, user count, and load average

Network

# ifconfig

– list network interface properties # iptables -L – view firewall rules # route -n – display routing table # netstat -lntp – show all listening ports # netstat -antp – list established connections # netstat -s – network statistics # lsof – list open files and network connections

Processes

# ps -ef

– list all processes # top – real‑time process monitoring

Users

# w

– display currently logged‑in users # id – show user identity information # last – view login history # finger root – display user details # cut -d: -f1 /etc/passwd – list all system users # cut -d: -f1 /etc/group – list all groups # crontab -l – show current user's scheduled jobs

Services

# chkconfig --list

– list all services # chkconfig --list | grep on – list services enabled at boot

Packages

# rpm -qa

– list all installed packages

Security / History

To disable Bash command history:

export HISTSIZE=0
export HISTFILE=/dev/null

FTP Commands

Common FTP client commands (options in brackets are optional): bin – use binary transfer mode bye – exit the FTP session cdup – change to the parent directory on the remote host chmod mode filename – change remote file permissions (e.g., chmod 777 a.out) delete remote-file – remove a file on the remote host get remote-file [local-file] – download a file ls [remote-dir] [local-file] – list remote directory contents and optionally save to a local file mkdir dir-name – create a directory on the remote host put local-file – upload one or more files to the remote host quit – exit the FTP session (same as bye) system – display the remote host's operating system type

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

Sysadminsystem commandsFTP
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.