A Commands

CommandPurpose & ExplanationExample
aliasCreates custom shortcuts for long CLI commands.alias ll='ls -lah'
apt / apt-getDebian/Ubuntu package manager to install/update software.sudo apt update && sudo apt install nginx
awkPowerful pattern scanning and column processing language.awk '{print $1}' access.log
archDisplays computer hardware processor architecture.arch (e.g. x86_64 / aarch64)

B Commands

CommandPurpose & ExplanationExample
bashBourne Again SHell command language interpreter.bash script.sh
bgSends a paused background job to continue running.bg %1
blkidLocates block devices and UUID filesystems.sudo blkid

C Commands

CommandPurpose & ExplanationExample
catConcatenates and displays file contents in output stream.cat /etc/os-release
cdChanges current working directory.cd /var/www/html/
chmodChanges file read/write/execute access permissions.chmod 400 key.pem
chownChanges file owner user and group ownership.sudo chown -R www-data:www-data /var/www/
clearClears the terminal screen buffer.clear
cpCopies files or directories from source to destination.cp -r /src /dest
crontabSchedules automated recurring background cron jobs.crontab -e
curlTransfers data to/from servers supporting HTTP/HTTPS/FTP.curl -I https://teluguittutorials.com
cutRemoves sections or columns from each line of files.cut -d: -f1 /etc/passwd

D Commands

CommandPurpose & ExplanationExample
dateDisplays or sets system date and time.date "+%Y-%m-%d %H:%M:%S"
dfDisplays disk filesystem space usage in human units.df -h
diffCompares two files line by line showing differences.diff file1.txt file2.txt
digDNS lookup utility for checking domain A/CNAME/MX records.dig teluguittutorials.com
duEstimates file space usage of directories.du -sh /var/log/*

E Commands

CommandPurpose & ExplanationExample
echoPrints text string or environment variable to terminal.echo $PATH
envDisplays all active environment variables.env
exportSets environment variable for current and child processes.export PORT=8080

F Commands

CommandPurpose & ExplanationExample
findSearches for files in directory tree based on conditions.find /var/log -name "*.log"
freeDisplays free and used system RAM memory.free -h

G Commands

CommandPurpose & ExplanationExample
gitDistributed version control system CLI tool.git status
grepSearches text files for matching regular expression patterns.grep -rnI "ERROR" /var/log/
gzipCompresses files using Lempel-Ziv coding (LZ77).gzip app.log

H Commands

CommandPurpose & ExplanationExample
headOutputs the first 10 lines of a file stream.head -n 20 /var/log/syslog
historyDisplays list of previously executed terminal commands.history | grep ssh
htopInteractive colored process viewer and RAM/CPU monitor.htop

I Commands

CommandPurpose & ExplanationExample
ipManipulates network interfaces, routing tables, and IP addresses.ip a / ip route
iptablesAdministration tool for IPv4 packet filtering and firewall rules.sudo iptables -L

J Commands

CommandPurpose & ExplanationExample
journalctlQueries systemd journal logging daemon.sudo journalctl -u nginx -f

K Commands

CommandPurpose & ExplanationExample
killSends termination signal (e.g. SIGKILL 9) to a specific PID.kill -9 1234
pkillSends signals to processes based on matching name.pkill -f node

L Commands

CommandPurpose & ExplanationExample
lsLists directory contents with file details.ls -lah
lsblkLists block devices (hard drives, EBS volumes, partitions).lsblk
lsofLists open files and network sockets opened by processes.sudo lsof -i :8080

M Commands

CommandPurpose & ExplanationExample
mkdirCreates new empty directories.mkdir -p /var/www/app
mountMounts a storage disk filesystem to a directory path.sudo mount /dev/sdb1 /mnt/data
mvMoves or renames files and directories.mv old.txt new.txt

N Commands

CommandPurpose & ExplanationExample
nc (netcat)Reads and writes data across network connections.nc -zv db.internal 5432
netstatPrints network connections, routing tables, and interface stats.netstat -tulpn
nslookupQueries Internet name servers interactively for IP hostnames.nslookup google.com

P Commands

CommandPurpose & ExplanationExample
pingSends ICMP ECHO_REQUEST packets to network hosts.ping 8.8.8.8
psReports a snapshot of current active processes.ps aux | grep python
pwdPrints absolute path of current working directory.pwd

R Commands

CommandPurpose & ExplanationExample
rmRemoves files or directories recursively.rm -rf /tmp/cache
rsyncFast, incremental file transfer tool over SSH.rsync -avz ./dist/ user@server:/var/www/

S Commands

CommandPurpose & ExplanationExample
sedStream editor for filtering and transforming text inline.sed -i 's/foo/bar/g' config.env
sortSorts lines of text files alphabetically or numerically.sort -nr numbers.txt
ssModern utility to dump socket statistics (replaces netstat).ss -tulpn
sshOpenSSH SSH client for secure remote terminal login.ssh -i key.pem ubuntu@ec2-ip
sudoExecutes a command with root/super-user privileges.sudo systemctl restart nginx
systemctlControl tool for systemd system and service manager.sudo systemctl status docker

T Commands

CommandPurpose & ExplanationExample
tailOutputs the last part of files or streams live logs.tail -f /var/log/syslog
tarArchives multiple files into a single `.tar.gz` bundle.tar -czvf app.tar.gz /app/
topDisplays Linux processes in real time.top
touchCreates empty files or updates file timestamps.touch index.js

U Commands

CommandPurpose & ExplanationExample
ufwUncomplicated Firewall management tool for Ubuntu.sudo ufw allow 80/tcp
unamePrints system hardware and Linux kernel specifications.uname -a
uniqFilters out repeated identical adjacent lines.uniq -c access.log
uptimeShows how long the server has been running.uptime

V, W, X, Z Commands

CommandPurpose & ExplanationExample
vim / viModal terminal text editor.vim /etc/nginx/nginx.conf
watchExecutes a command periodically, displaying output fullscreen.watch -n 2 'free -m'
wcCounts lines, words, and byte counts in files.wc -l access.log
wgetNon-interactive network downloader.wget https://example.com/file.zip
whoamiPrints current effective logged-in username.whoami
xargsBuilds and executes commands from standard input streams.find . -name "*.tmp" | xargs rm
zip / unzipPackages and extracts compressed zip archives.unzip build.zip -d /var/www/
Master Linux & Cloud DevOps in Telugu!

Want structured hands-on training in Linux server administration, AWS Cloud, Docker, and Kubernetes? Enroll in our live virtual cohorts at Telugu IT Tutorials. View All Courses →