Linux Commands Cheat Sheet

Loading commands...

๐Ÿ”

๐Ÿ”

No commands found. Try a different search term.

Linux Commands Reference

This comprehensive Linux commands cheat sheet covers over 200 essential commands every Linux user, developer, and system administrator should know. Whether you're a beginner learning the terminal or an experienced sysadmin needing a quick reference, this guide organizes commands into logical categories for easy browsing and searching.

Categories Covered

How to Use This Cheat Sheet

Use the search box at the top to instantly filter commands by name or keyword. Click a category tag to browse all commands in that category. Each command card shows the command name, a description, and practical examples with common flags and options.

Linux Command Tips for Beginners

FAQ

What's the difference between sudo and su? โ€” sudo runs a single command as root, while su switches to the root user's shell entirely.

How do I find a file in Linux? โ€” Use find /path -name 'filename' or locate filename for faster searches.

How do I check disk space? โ€” Use df -h for filesystem usage or du -sh /path for directory size.

How do I kill a process? โ€” Find the PID with ps aux | grep name or pgrep name, then kill PID or killall name.