Advertisement
← All Cheat Sheets

Linux Terminal Commands

Essential terminal commands for Linux/Unix

Navigation

pwdPrint working directory
ls -alDetailed list
cd dirChange directory
clearClear terminal

Create/Edit/Remove

touch fileCreate file
mkdir dirMake new dir
rm fileRemove file
rm -r dirRemove dir recursively

Permissions

chmod +x fileMake executable
chown user fileChange owner

Network & Process

ping hostCheck network
ifconfigNetwork details
topProcess monitor
Advertisement