SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
 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 

Weitere Àhnliche Inhalte

Was ist angesagt?

Unix Programming Lab
Unix Programming LabUnix Programming Lab
Unix Programming LabNeil Mathew
 
Basic command ppt
Basic command pptBasic command ppt
Basic command pptRohit Kumar
 
Chapter 10 - File System Interface
Chapter 10 - File System InterfaceChapter 10 - File System Interface
Chapter 10 - File System InterfaceWayne Jones Jnr
 
Memory allocation (4)
Memory allocation (4)Memory allocation (4)
Memory allocation (4)rockymani
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commandsShakeel Shafiq
 
Course 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild CardsCourse 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild CardsAhmed El-Arabawy
 
Linux basic commands with examples
Linux basic commands with examplesLinux basic commands with examples
Linux basic commands with examplesabclearnn
 
Shell scripting
Shell scriptingShell scripting
Shell scriptingManav Prasad
 
Chapter 8 distributed file systems
Chapter 8 distributed file systemsChapter 8 distributed file systems
Chapter 8 distributed file systemsAbDul ThaYyal
 
Linux command ppt
Linux command pptLinux command ppt
Linux command pptkalyanineve
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Edureka!
 
System calls
System callsSystem calls
System callsAfshanKhan51
 
005 foxpro
005 foxpro005 foxpro
005 foxproSMS2007
 
Implementation of Pipe in Linux
Implementation of Pipe in LinuxImplementation of Pipe in Linux
Implementation of Pipe in LinuxTushar B Kute
 

Was ist angesagt? (20)

Unix Programming Lab
Unix Programming LabUnix Programming Lab
Unix Programming Lab
 
Basic command ppt
Basic command pptBasic command ppt
Basic command ppt
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
Chapter 10 - File System Interface
Chapter 10 - File System InterfaceChapter 10 - File System Interface
Chapter 10 - File System Interface
 
Memory allocation (4)
Memory allocation (4)Memory allocation (4)
Memory allocation (4)
 
Basic linux commands
Basic linux commandsBasic linux commands
Basic linux commands
 
Type casting
Type castingType casting
Type casting
 
Course 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild CardsCourse 102: Lecture 4: Using Wild Cards
Course 102: Lecture 4: Using Wild Cards
 
Linux basic commands with examples
Linux basic commands with examplesLinux basic commands with examples
Linux basic commands with examples
 
Shell scripting
Shell scriptingShell scripting
Shell scripting
 
Chapter 8 distributed file systems
Chapter 8 distributed file systemsChapter 8 distributed file systems
Chapter 8 distributed file systems
 
Linux command ppt
Linux command pptLinux command ppt
Linux command ppt
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
 
Types of methods in python
Types of methods in pythonTypes of methods in python
Types of methods in python
 
System calls
System callsSystem calls
System calls
 
Processes and threads
Processes and threadsProcesses and threads
Processes and threads
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Process threads operating system.
Process threads operating system.Process threads operating system.
Process threads operating system.
 
005 foxpro
005 foxpro005 foxpro
005 foxpro
 
Implementation of Pipe in Linux
Implementation of Pipe in LinuxImplementation of Pipe in Linux
Implementation of Pipe in Linux
 

Andere mochten auch

02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2Niit Care
 
Photo Album
Photo AlbumPhoto Album
Photo Albumguesta9ff36
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cashannamaybank
 
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 cashannamaybank
 
Death by-powerpoint4344
Death by-powerpoint4344Death by-powerpoint4344
Death by-powerpoint4344selvamanisampath
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cashannamaybank
 

Andere mochten auch (7)

02 t1 s2_linux_lesson2
02 t1 s2_linux_lesson202 t1 s2_linux_lesson2
02 t1 s2_linux_lesson2
 
Photo Album
Photo AlbumPhoto Album
Photo Album
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
 
Helping make good ideas happen
Helping make good ideas happen Helping make good ideas happen
Helping make good ideas happen
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
 
Death by-powerpoint4344
Death by-powerpoint4344Death by-powerpoint4344
Death by-powerpoint4344
 
Ideas, people and cold hard cash
Ideas, people and cold hard cashIdeas, people and cold hard cash
Ideas, people and cold hard cash
 

Ähnlich wie Unix commands

linuxcommands.pdf
linuxcommands.pdflinuxcommands.pdf
linuxcommands.pdfSatishReddy212
 
Basic Linux Commands.pptx
Basic Linux Commands.pptxBasic Linux Commands.pptx
Basic Linux Commands.pptxssuser243be2
 
Basic unix
Basic unixBasic unix
Basic unixRaghu nath
 
3.1.a linux commands reference
3.1.a linux commands reference3.1.a linux commands reference
3.1.a linux commands referenceAcĂĄcio Oliveira
 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat SheetTola LENG
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commandsaaj_sarkar06
 
Basic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersBasic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersDevanand Gehlot
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOSAdamFallon4
 
Linux commands
Linux commandsLinux commands
Linux commandsU.P Police
 
Linux Basic Commands
Linux Basic CommandsLinux Basic Commands
Linux Basic CommandsHanan Nmr
 
Unix Cheat Sheet
Unix Cheat SheetUnix Cheat Sheet
Unix Cheat SheetLoiane Groner
 
Chapter 4 Linux Basic Commands
Chapter 4 Linux Basic CommandsChapter 4 Linux Basic Commands
Chapter 4 Linux Basic CommandsShankar Mahure
 
Linux Presentation
Linux PresentationLinux Presentation
Linux PresentationMuhammad Qazi
 

Ähnlich wie Unix commands (20)

linuxcommands.pdf
linuxcommands.pdflinuxcommands.pdf
linuxcommands.pdf
 
Linuxcommands
LinuxcommandsLinuxcommands
Linuxcommands
 
some title
some titlesome title
some title
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Basic Linux Commands.pptx
Basic Linux Commands.pptxBasic Linux Commands.pptx
Basic Linux Commands.pptx
 
Basic unix
Basic unixBasic unix
Basic unix
 
3.1.a linux commands reference
3.1.a linux commands reference3.1.a linux commands reference
3.1.a linux commands reference
 
14.Linux Command
14.Linux Command14.Linux Command
14.Linux Command
 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat Sheet
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
 
Linux command line
Linux command lineLinux command line
Linux command line
 
Basic shell commands by Jeremy Sanders
Basic shell commands by Jeremy SandersBasic shell commands by Jeremy Sanders
Basic shell commands by Jeremy Sanders
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
 
Directories description
Directories descriptionDirectories description
Directories description
 
Linux commands
Linux commandsLinux commands
Linux commands
 
Introduction to linux day1
Introduction to linux day1Introduction to linux day1
Introduction to linux day1
 
Linux Basic Commands
Linux Basic CommandsLinux Basic Commands
Linux Basic Commands
 
Unix Cheat Sheet
Unix Cheat SheetUnix Cheat Sheet
Unix Cheat Sheet
 
Chapter 4 Linux Basic Commands
Chapter 4 Linux Basic CommandsChapter 4 Linux Basic Commands
Chapter 4 Linux Basic Commands
 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
 

KĂŒrzlich hochgeladen

DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 

KĂŒrzlich hochgeladen (20)

DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

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Â