Mastering Linux: A Comprehensive Guide to 100 Essential Commands

The Linux operating system offers a powerful array of commands to manage files, navigate directories, control processes, and interact with the system. This diverse toolkit empowers users to manipulate their environment efficiently. Commands like ls, cd, and pwd facilitate directory navigation, while cp and mv allow for copying and moving files. To manage processes, ps, top, and kill provide insight and control. System information is available through commands like uname and free. The system’s network capabilities are harnessed by commands such as ping, ssh, and netstat. Additionally, administrative tasks are supported by commands like useradd, chown, and shutdown. Overall, these commands exemplify Linux’s flexibility and functionality.

CommandSyntaxDescriptionExample
lsls [options] [directory]List files and directoriesls -l /home/user/documents
cdcd [directory]Change the current directorycd /var/www/html
pwdpwdPrint the current working directorypwd
cpcp [options] source destinationCopy files or directoriescp file.txt /backup/
mvmv [options] source destinationMove or rename files or directoriesmv oldfile.txt newfile.txt
rmrm [options] file/directoryRemove files or directoriesrm -rf folder/
mkdirmkdir [options] directoryCreate a new directorymkdir new_folder
rmdirrmdir directoryRemove an empty directoryrmdir empty_folder
touchtouch filenameCreate an empty filetouch newfile.txt
catcat filenameDisplay the contents of a filecat myfile.txt
echoecho [options] messagePrint a message or value to terminalecho “Hello, world!”
grepgrep [options] pattern fileSearch for patterns in filesgrep “error” logfile.txt
chmodchmod [options] permissions fileChange file permissionschmod 755 script.sh
chownchown [options] user:group fileChange file ownershipchown user:group myfile.txt
psps [options]Display information about processesps aux
toptopDisplay dynamic list of processestop
killkill [options] process_idTerminate a processkill 1234
dfdf [options]Display disk space usagedf -h
dudu [options] directory/fileDisplay file/directory space usagedu -sh /path
freefree [options]Display memory usagefree -h
unameuname [options]Print system informationuname -a
datedate [options]Display or set system date and timedate
calcal [options]Display calendarcal
whowho [options]Display logged-in userswho
wwDisplay information about usersw
idid [options] usernameDisplay user and group informationid john
historyhistory [options]Display command historyhistory
clearclearClear the terminal screenclear
manman commandDisplay manual page for commandman ls
infoinfo commandDisplay info page for commandinfo ls
aliasalias [options]Create or display command aliasesalias ll=’ls -l’
filefile filenameDetermine file typefile myfile.txt
tartar [options]Archive and extract filestar -cvf archive.tar files
zipzip [options] archive filesCreate compressed archivezip archive.zip file1.txt file2.txt
unzipunzip [options] archiveExtract files from compressed archiveunzip archive.zip
sshssh [options] user@hostConnect to remote host using SSHssh [email protected]
scpscp [options] source destinationCopy files securely over SSHscp file.txt [email protected]:/path/
rsyncrsync [options] source destinationSync files and directoriesrsync -avz source/ destination/
wgetwget [options] URLDownload files from the webwget https://example.com/file.txt
curlcurl [options] URLTransfer data to/from URLscurl -O https://example.com/file.txt
pingping [options] hostTest network connectivityping google.com
ifconfigifconfig [options]Configure network interfacesifconfig
ipip [options]Manage network interfacesip addr show
routeroute [options]Display or manipulate routing tableroute -n
netstatnetstat [options]Network statisticsnetstat -tuln
nslookupnslookup domainDNS lookupnslookup google.com
digdig domainDNS lookup (more advanced)dig google.com
traceroutetraceroute hostDisplay route and delay to hosttraceroute google.com
whoiswhois domainGet domain registration infowhois example.com
uptimeuptimeDisplay system uptimeuptime
shutdownshutdown [options]Shutdown or restart systemshutdown -h now
rebootrebootReboot the systemreboot
ifupifup interfaceBring a network interface upifup eth0
ifdownifdown interfaceTake a network interface downifdown eth0
systemctlsystemctl [options] command serviceManage systemd servicessystemctl start apache2
serviceservice [options] command serviceControl system servicesservice apache2 start
useradduseradd [options] usernameCreate a new useruseradd john
userdeluserdel [options] usernameDelete a useruserdel john
passwdpasswd [options] usernameChange user passwordpasswd john
groupaddgroupadd [options] groupnameCreate a new groupgroupadd developers
groupdelgroupdel [options] groupnameDelete a groupgroupdel developers
susu [options] usernameSwitch usersu john
sudosudo commandExecute command with superuser privilegessudo apt update
adduseradduser usernameAdd a user interactivelyadduser sarah
deluserdeluser usernameDelete a user and associated filesdeluser sarah
passwdpasswd usernameChange user passwordpasswd sarah
addgroupaddgroup groupnameAdd a groupaddgroup team1
delgroupdelgroup groupnameDelete a groupdelgroup team1
chmodchmod [options] permissions fileChange file permissionschmod 644 myfile.txt
chownchown [options] user:group fileChange file ownershipchown user:group myfile.txt
findfind [options] path expressionSearch for files and directoriesfind /var/log -name “*.log”
locatelocate keywordSearch for files using an indexlocate myfile.txt
lnln [options] source linkCreate symbolic or hard linksln -s target link
mountmount [options] device mountpointMount a filesystemmount /dev/sdb1 /mnt
umountumount [options] mountpointUnmount a filesystemumount /mnt
dfdf [options]Display disk space usagedf -h
dudu [options] directory/fileDisplay file/directory space usagedu -sh /path
freefree [options]Display memory usagefree -h
unameuname [options]Print system informationuname -a
datedate [options]Display or set system date and timedate
calcal [options]Display calendarcal
whowho [options]Display logged-in userswho
wwDisplay information about usersw
idid [options] usernameDisplay user and group informationid john
historyhistory [options]Display command historyhistory
clearclearClear the terminal screenclear
manman commandDisplay manual page for commandman ls
infoinfo commandDisplay info page for commandinfo ls

About the Author

Leave a Reply

Your email address will not be published. Required fields are marked *

You may also like these