SlideShare une entreprise Scribd logo
1  sur  4
Télécharger pour lire hors ligne
 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 

Contenu connexe

Tendances

Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
nejadmand
 
Chapter 2 Operating System Structures.ppt
Chapter 2 Operating System Structures.pptChapter 2 Operating System Structures.ppt
Chapter 2 Operating System Structures.ppt
ErenJeager20
 

Tendances (20)

Timer
TimerTimer
Timer
 
The Linux Command Cheat Sheet
The Linux Command Cheat SheetThe Linux Command Cheat Sheet
The Linux Command Cheat Sheet
 
GIT presentation
GIT presentationGIT presentation
GIT presentation
 
Linux basic commands
Linux basic commandsLinux basic commands
Linux basic commands
 
git - eine praktische Einführung
git - eine praktische Einführunggit - eine praktische Einführung
git - eine praktische Einführung
 
Memory consistency models
Memory consistency modelsMemory consistency models
Memory consistency models
 
Cuda Architecture
Cuda ArchitectureCuda Architecture
Cuda Architecture
 
Software management in linux
Software management in linuxSoftware management in linux
Software management in linux
 
Q2.12: Debugging with GDB
Q2.12: Debugging with GDBQ2.12: Debugging with GDB
Q2.12: Debugging with GDB
 
Deadlock- Operating System
Deadlock- Operating SystemDeadlock- Operating System
Deadlock- Operating System
 
Advanced Operating System- Introduction
Advanced Operating System- IntroductionAdvanced Operating System- Introduction
Advanced Operating System- Introduction
 
Tabular Data Stream: The Binding Between Client and SAP ASE
Tabular Data Stream: The Binding Between Client and SAP ASETabular Data Stream: The Binding Between Client and SAP ASE
Tabular Data Stream: The Binding Between Client and SAP ASE
 
Deep dive into PostgreSQL statistics.
Deep dive into PostgreSQL statistics.Deep dive into PostgreSQL statistics.
Deep dive into PostgreSQL statistics.
 
High Availability PostgreSQL with Zalando Patroni
High Availability PostgreSQL with Zalando PatroniHigh Availability PostgreSQL with Zalando Patroni
High Availability PostgreSQL with Zalando Patroni
 
Chapter 2 Operating System Structures.ppt
Chapter 2 Operating System Structures.pptChapter 2 Operating System Structures.ppt
Chapter 2 Operating System Structures.ppt
 
Open MPI
Open MPIOpen MPI
Open MPI
 
Solution(1)
Solution(1)Solution(1)
Solution(1)
 
Cuda
CudaCuda
Cuda
 
Cuda
CudaCuda
Cuda
 
Embedded Systems: Lecture 1: Course Overview
Embedded Systems: Lecture 1: Course OverviewEmbedded Systems: Lecture 1: Course Overview
Embedded Systems: Lecture 1: Course Overview
 

En vedette (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
 

Similaire à Unix commands

Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
aaj_sarkar06
 
Linux commands
Linux commandsLinux commands
Linux commands
U.P Police
 

Similaire à 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
 
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
 
Linux ppt
Linux pptLinux ppt
Linux ppt
 

Dernier

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Dernier (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
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...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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