๐๐ถ๐ป๐๐ ๐๐ผ๐บ๐บ๐ฎ๐ป๐ฑ๐ ๐๐๐ฒ๐ฟ๐ ๐๐๐ฏ๐ฒ๐ฟ๐๐ฒ๐ฐ๐๐ฟ๐ถ๐๐ ๐๐ฒ๐ฎ๐ฟ๐ป๐ฒ๐ฟ
๐๐ถ๐ป๐๐
๐๐ผ๐บ๐บ๐ฎ๐ป๐ฑ๐ ๐๐๐ฒ๐ฟ๐ ๐๐๐ฏ๐ฒ๐ฟ๐๐ฒ๐ฐ๐๐ฟ๐ถ๐๐ ๐๐ฒ๐ฎ๐ฟ๐ป๐ฒ๐ฟ ๐ฆ๐ต๐ผ๐๐น๐ฑ ๐๐ป๐ผ๐ ๐ง๐ป
1๏ธโฃ Getting Started With The Terminal
โข 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
3๏ธโฃ Working With Files & Directories
โข touch file.txt โ create empty file
โข mkdir folder โ create directory
โข cp source dest โ copy file
โข cp -r dir1 dir2 โ copy directory recursively
โข mv old new โ move or rename file
โข rm file.txt โ delete file
โข rm -r folder โ delete directory recursively
โข rmdir folder โ remove empty directory
4๏ธโฃ Viewing & Editing Files
โข cat file.txt โ display file contents
โข less file.txt โ read large files
โข head file.txt โ first 10 lines
โข tail file.txt โ last 10 lines
โข nano file.txt โ beginner-friendly editor
โข vim file.txt โ advanced editor
5๏ธโฃ Searching & Finding Files
โข find /path -name file โ search file by name
โข grep "text" file.txt โ search text inside file
โข grep -r "text" /path โ recursive search
โข locate filename โ quickly find files
6๏ธโฃ Installing & Managing Software
(Debian / Ubuntu Based)
โข sudo apt update โ refresh packages
โข sudo apt upgrade โ upgrade installed packages
โข sudo apt install package โ install software
โข sudo apt remove package โ remove software
โข dpkg -i package.deb โ install .deb package
7๏ธโฃ System Information & Monitoring
โข 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
The terminal is where real learning starts.
Log in to like, dislike, or reply.