โข pwd โ show current directory
โข whoami โ show logged-in user
โข clear โ clear terminal screen
โข exit โ close terminal session
2๏ธโฃ Navigating The File System
โข ls โ list files & directories
โข ls -l โ detailed file list
โข ls -a โ show hidden files
โข cd folder โ change directory
โข cd .. โ move one directory back
โข cd ~ โ go to home directory
โข tree โ visualize directory structure
โข uname -a โ kernel & system info
โข top โ real-time process monitoring
โข htop โ interactive process viewer
โข df -h โ disk usage
โข du -sh folder โ folder size
โข free -h โ memory usage
โข uptime โ system uptime
โข hostname โ system name
โข lscpu / lsblk / lsusb / lspci โ hardware info
8๏ธโฃ Users & Permissions Management
โข adduser username โ create user
โข passwd username โ change password
โข chmod 755 file โ modify permissions
โข chown user:group file โ change ownership
โข id โ user UID & groups
โข who / w โ logged-in users
9๏ธโฃ Networking Commands
โข ip a / ifconfig โ network interfaces
โข ping hostname โ test connectivity
โข curl website[.]com โ retrieve web data
โข wget url โ download files
โข netstat -tuln โ open ports
โข ss -tulwn โ socket statistics
๐ File Compression & Archiving
โข tar -cvf archive.tar folder/ โ create tar archive
โข tar -xvf archive.tar โ extract tar archive
โข gzip file โ compress file
โข gunzip file.gz โ decompress gzip file
โข zip -r archive[.]zip folder/ โ create zip archive
โข unzip archive[.]zip โ extract zip archive
๐ Most Important Commands For Beginners
โ ls
โ cd
โ cat
โ grep
โ find
โ chmod
โ curl
โ top
โ ssh
โ tar
Master these first.
Linux is one of the most important skills in: โข Cybersecurity
โข Cloud
โข DevOps
โข System Administration
โข Networking