SlideShare a Scribd company logo
 Unix/Linux Command Reference

File Commands
   1.   ls                      Directory listing
   2.   ls -al                  Formatted listing with hidden files
   3.   ls -lt                  Sorting the Formatted listing by time modification
   4.   cd dir                  Change directory to dir
   5.   cd                      Change to home directory
   6.   pwd                     Show current working directory
   7.   mkdir dir               Creating a directory dir
   8.   cat >file               Places the standard input into the file
   9.   more file               Output the contents of the file
   10. head file                Output the first 10 lines of the file
   11. tail file                Output the last 10 lines of the file
   12. tail -f file             Output the contents of file as it grows,starting with
                                the last 10 lines
   13. touch file               Create or update file
   14. rm file                  Deleting the file
   15. rm -r dir                Deleting the directory
   16. rm -f file               Force to remove the file
   17. rm -rf dir               Force to remove the directory dir
   18. cp file1 file2           Copy the contents of file1 to file2
   19. cp -r dir1 dir2          Copy dir1 to dir2;create dir2 if not present
   20. mv file1 file2           Rename or move file1 to file2,if file2 is an existing
                                directory
   21. ln -s file link          Create symbolic link link to file


Process management
   1.   ps                      To display the currently working processes
   2.   top                     Display all running process


Unix/Linux Command Reference 
3.   kill pid                 Kill the process with given pid
   4.   killall proc             Kill all the process named proc
   5.   pkill pattern            Will kill all processes matching the pattern
   6.   bg                       List stopped or background jobs,resume a stopped
                                 job in the background
   7.   fg                       Brings the most recent job to foreground
   8.   fg n                     Brings job n to the foreground


File permission
   1.   chmod octal file         Change the permission of file to octal,which can
                                 be found separately for user,group,world by
                                 adding,
                                    •  4-read(r)
                                    •  2-write(w)
                                    •  1-execute(x)



Searching
   1.    grep pattern file       Search for pattern in file
   2.    grep -r pattern dir     Search recursively for pattern in dir
   3.    command | grep          Search pattern in the output of a command
         pattern
   4.    locate file             Find all instances of file
   5.    find . -name filename   Searches in the current directory (represented by
                                 a period) and below it, for files and directories with
                                 names starting with filename
   6.    pgrep pattern           Searches for all the named processes , that
                                 matches with the pattern and, by default, returns
                                 their ID

System Info
   1.    date                    Show the current date and time
   2.    cal                     Show this month's calender
   3.    uptime                  Show current uptime
   4.    w                       Display who is on line
   5.    whoami                  Who you are logged in as



Unix/Linux Command Reference 
6.    finger user                 Display information about user
   7.    uname -a                    Show kernel information
   8.    cat /proc/cpuinfo           Cpu information
   9.    cat proc/meminfo            Memory information
   10. man command                   Show the manual for command
   11. df                            Show the disk usage
   12. du                            Show directory space usage
   13. free                          Show memory and swap usage
   14. whereis app                   Show possible locations of app
   15. which app                     Show which applications will be run by default

Compression
   1.    tar cf file.tar file        Create tar named file.tar containing file
   2.    tar xf file.tar             Extract the files from file.tar
   3.    tar czf file.tar.gz files   Create a tar with Gzip compression
   4.    tar xzf file.tar.gz         Extract a tar using Gzip
   5.    tar cjf file.tar.bz2        Create tar with Bzip2 compression
   6.    tar xjf file.tar.bz2        Extract a tar using Bzip2
   7.    gzip file                   Compresses file and renames it to file.gz
   8.    gzip -d file.gz             Decompresses file.gz back to file



Network
   1.    ping host                   Ping host and output results
   2.    whois domain                Get whois information for domains
   3.    dig domain                  Get DNS information for domain
   4.    dig -x host                 Reverse lookup host
   5.    wget file                   Download file
   6.    wget -c file                Continue a stopped download




Unix/Linux Command Reference 
Shortcuts
   1.   ctrl+c                  Halts the current command
   2.   ctrl+z                  Stops the current command, resume with fg in the
                                foreground or bg in the background
   3.   ctrl+d                  Logout the current session, similar to exit
   4.   ctrl+w                  Erases one word in the current line
   5.   ctrl+u                  Erases the whole line
   6.   ctrl+r                  Type to bring up a recent command
   7.   !!                      Repeats the last command
   8.   exit                    Logout the current session




Unix/Linux Command Reference 
Ad

More Related Content

What's hot (20)

Python programming : Files
Python programming : FilesPython programming : Files
Python programming : Files
Emertxe Information Technologies Pvt Ltd
 
Python Modules
Python ModulesPython Modules
Python Modules
Nitin Reddy Katkam
 
Exception handling and function in python
Exception handling and function in pythonException handling and function in python
Exception handling and function in python
TMARAGATHAM
 
Inter Process Communication
Inter Process CommunicationInter Process Communication
Inter Process Communication
Anil Kumar Pugalia
 
Basics of shell programming
Basics of shell programmingBasics of shell programming
Basics of shell programming
Chandan Kumar Rana
 
Shell and its types in LINUX
Shell and its types in LINUXShell and its types in LINUX
Shell and its types in LINUX
SHUBHA CHATURVEDI
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
Manav Prasad
 
Loops in Python
Loops in PythonLoops in Python
Loops in Python
AbhayDhupar
 
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYAChapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Chapter 1 - INTRODUCTION TO PYTHON -MAULIK BORSANIYA
Maulik Borsaniya
 
Linux basic commands
Linux basic commandsLinux basic commands
Linux basic commands
Sagar Kumar
 
Linux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell ScriptingLinux systems - Linux Commands and Shell Scripting
Linux systems - Linux Commands and Shell Scripting
Emertxe Information Technologies Pvt Ltd
 
Python : Regular expressions
Python : Regular expressionsPython : Regular expressions
Python : Regular expressions
Emertxe Information Technologies Pvt Ltd
 
Python programming
Python programmingPython programming
Python programming
Prof. Dr. K. Adisesha
 
Linux commands
Linux commandsLinux commands
Linux commands
Balakumaran Arunachalam
 
Python made easy
Python made easy Python made easy
Python made easy
Abhishek kumar
 
File handling in Python
File handling in PythonFile handling in Python
File handling in Python
Megha V
 
Unix Cheat Sheet
Unix Cheat SheetUnix Cheat Sheet
Unix Cheat Sheet
Loiane Groner
 
Basic Linux commands
Basic Linux commandsBasic Linux commands
Basic Linux commands
atozknowledge .com
 
MPI
MPIMPI
MPI
Rohit Banga
 
Linux
LinuxLinux
Linux
Gouthaman V
 

Viewers also liked (7)

02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
Niit Care
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
Helping make good ideas happen
Helping make good ideas happen Helping make good ideas happen
Helping make good ideas happen
annamaybank
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
Death by-powerpoint4344
Death by-powerpoint4344Death by-powerpoint4344
Death by-powerpoint4344
selvamanisampath
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
Niit Care
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
Helping make good ideas happen
Helping make good ideas happen Helping make good ideas happen
Helping make good ideas happen
annamaybank
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
annamaybank
 
Ad

Similar to Unix commands (20)

linuxcommands.pdf
linuxcommands.pdflinuxcommands.pdf
linuxcommands.pdf
SatishReddy212
 
Unix/Linux Command Reference - File Commands and Shortcuts
Unix/Linux Command Reference - File Commands and ShortcutsUnix/Linux Command Reference - File Commands and Shortcuts
Unix/Linux Command Reference - File Commands and Shortcuts
Jason J Pulikkottil
 
Linuxcommands
LinuxcommandsLinuxcommands
Linuxcommands
Lokendra Tiwari
 
some title
some titlesome title
some title
PlanetExpressATX
 
Linux commands
Linux commandsLinux commands
Linux commands
Shiva Bhardwaj
 
Basic Linux Commands.pptx
Basic Linux Commands.pptxBasic Linux Commands.pptx
Basic Linux Commands.pptx
ssuser243be2
 
Basic unix
Basic unixBasic unix
Basic unix
Raghu nath
 
3.1.a linux commands reference
3.1.a linux commands reference3.1.a linux commands reference
3.1.a linux commands reference
Acácio Oliveira
 
14.Linux Command
14.Linux Command14.Linux Command
14.Linux Command
Export Promotion Bureau
 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat Sheet
Tola LENG
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
aaj_sarkar06
 
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdfjs_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
qualwinforhacking
 
Linux command line
Linux command lineLinux command line
Linux command line
fernando valenzuela hernández
 
Basic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersBasic shell commands by Jeremy Sanders
Basic shell commands by Jeremy Sanders
Devanand Gehlot
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
AdamFallon4
 
Information about linux operating system
Information about linux operating systemInformation about linux operating system
Information about linux operating system
PriyankaMate4
 
Information about linux operating system
Information about linux operating systemInformation about linux operating system
Information about linux operating system
PriyankaMate4
 
Directories description
Directories descriptionDirectories description
Directories description
Dr.M.Karthika parthasarathy
 
Linux commands
Linux commandsLinux commands
Linux commands
U.P Police
 
Introduction to linux day1
Introduction to linux day1Introduction to linux day1
Introduction to linux day1
UtpalenduChakrobortt1
 
Unix/Linux Command Reference - File Commands and Shortcuts
Unix/Linux Command Reference - File Commands and ShortcutsUnix/Linux Command Reference - File Commands and Shortcuts
Unix/Linux Command Reference - File Commands and Shortcuts
Jason J Pulikkottil
 
Basic Linux Commands.pptx
Basic Linux Commands.pptxBasic Linux Commands.pptx
Basic Linux Commands.pptx
ssuser243be2
 
3.1.a linux commands reference
3.1.a linux commands reference3.1.a linux commands reference
3.1.a linux commands reference
Acácio Oliveira
 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat Sheet
Tola LENG
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
aaj_sarkar06
 
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdfjs_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
js_injwqeweqwqewqewqewqewqewqewqeected_xss.pdf
qualwinforhacking
 
Basic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersBasic shell commands by Jeremy Sanders
Basic shell commands by Jeremy Sanders
Devanand Gehlot
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
AdamFallon4
 
Information about linux operating system
Information about linux operating systemInformation about linux operating system
Information about linux operating system
PriyankaMate4
 
Information about linux operating system
Information about linux operating systemInformation about linux operating system
Information about linux operating system
PriyankaMate4
 
Linux commands
Linux commandsLinux commands
Linux commands
U.P Police
 
Ad

Recently uploaded (20)

Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
Lynda Kane
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Image processinglab image processing image processing
Image processinglab image processing  image processingImage processinglab image processing  image processing
Image processinglab image processing image processing
RaghadHany
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5..."Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
Fwdays
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
Technology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data AnalyticsTechnology Trends in 2025: AI and Big Data Analytics
Technology Trends in 2025: AI and Big Data Analytics
InData Labs
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
Lynda Kane
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
Linux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdfLinux Professional Institute LPIC-1 Exam.pdf
Linux Professional Institute LPIC-1 Exam.pdf
RHCSA Guru
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Image processinglab image processing image processing
Image processinglab image processing  image processingImage processinglab image processing  image processing
Image processinglab image processing image processing
RaghadHany
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Datastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptxDatastucture-Unit 4-Linked List Presentation.pptx
Datastucture-Unit 4-Linked List Presentation.pptx
kaleeswaric3
 
"PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System""PHP and MySQL CRUD Operations for Student Management System"
"PHP and MySQL CRUD Operations for Student Management System"
Jainul Musani
 
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5..."Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
"Client Partnership — the Path to Exponential Growth for Companies Sized 50-5...
Fwdays
 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your UsersAutomation Dreamin' 2022: Sharing Some Gratitude with Your Users
Automation Dreamin' 2022: Sharing Some Gratitude with Your Users
Lynda Kane
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In FranceManifest Pre-Seed Update | A Humanoid OEM Deeptech In France
Manifest Pre-Seed Update | A Humanoid OEM Deeptech In France
chb3
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 

Unix commands

  • 1.  Unix/Linux Command Reference File Commands 1. ls Directory listing 2. ls -al Formatted listing with hidden files 3. ls -lt Sorting the Formatted listing by time modification 4. cd dir Change directory to dir 5. cd Change to home directory 6. pwd Show current working directory 7. mkdir dir Creating a directory dir 8. cat >file Places the standard input into the file 9. more file Output the contents of the file 10. head file Output the first 10 lines of the file 11. tail file Output the last 10 lines of the file 12. tail -f file Output the contents of file as it grows,starting with the last 10 lines 13. touch file Create or update file 14. rm file Deleting the file 15. rm -r dir Deleting the directory 16. rm -f file Force to remove the file 17. rm -rf dir Force to remove the directory dir 18. cp file1 file2 Copy the contents of file1 to file2 19. cp -r dir1 dir2 Copy dir1 to dir2;create dir2 if not present 20. mv file1 file2 Rename or move file1 to file2,if file2 is an existing directory 21. ln -s file link Create symbolic link link to file Process management 1. ps To display the currently working processes 2. top Display all running process Unix/Linux Command Reference 
  • 2. 3. kill pid Kill the process with given pid 4. killall proc Kill all the process named proc 5. pkill pattern Will kill all processes matching the pattern 6. bg List stopped or background jobs,resume a stopped job in the background 7. fg Brings the most recent job to foreground 8. fg n Brings job n to the foreground File permission 1. chmod octal file Change the permission of file to octal,which can be found separately for user,group,world by adding, • 4-read(r) • 2-write(w) • 1-execute(x) Searching 1. grep pattern file Search for pattern in file 2. grep -r pattern dir Search recursively for pattern in dir 3. command | grep Search pattern in the output of a command pattern 4. locate file Find all instances of file 5. find . -name filename Searches in the current directory (represented by a period) and below it, for files and directories with names starting with filename 6. pgrep pattern Searches for all the named processes , that matches with the pattern and, by default, returns their ID System Info 1. date Show the current date and time 2. cal Show this month's calender 3. uptime Show current uptime 4. w Display who is on line 5. whoami Who you are logged in as Unix/Linux Command Reference 
  • 3. 6. finger user Display information about user 7. uname -a Show kernel information 8. cat /proc/cpuinfo Cpu information 9. cat proc/meminfo Memory information 10. man command Show the manual for command 11. df Show the disk usage 12. du Show directory space usage 13. free Show memory and swap usage 14. whereis app Show possible locations of app 15. which app Show which applications will be run by default Compression 1. tar cf file.tar file Create tar named file.tar containing file 2. tar xf file.tar Extract the files from file.tar 3. tar czf file.tar.gz files Create a tar with Gzip compression 4. tar xzf file.tar.gz Extract a tar using Gzip 5. tar cjf file.tar.bz2 Create tar with Bzip2 compression 6. tar xjf file.tar.bz2 Extract a tar using Bzip2 7. gzip file Compresses file and renames it to file.gz 8. gzip -d file.gz Decompresses file.gz back to file Network 1. ping host Ping host and output results 2. whois domain Get whois information for domains 3. dig domain Get DNS information for domain 4. dig -x host Reverse lookup host 5. wget file Download file 6. wget -c file Continue a stopped download Unix/Linux Command Reference 
  • 4. Shortcuts 1. ctrl+c Halts the current command 2. ctrl+z Stops the current command, resume with fg in the foreground or bg in the background 3. ctrl+d Logout the current session, similar to exit 4. ctrl+w Erases one word in the current line 5. ctrl+u Erases the whole line 6. ctrl+r Type to bring up a recent command 7. !! Repeats the last command 8. exit Logout the current session Unix/Linux Command Reference