SlideShare a Scribd company logo
BASIC LINUX COMMANDS
What the ~*&?!
~ “tilde” indicates your home directory: /home/you
* “star”: wildcard, matches anything
? wildcard, matches any one character
! History substitution, do not use
& run a job in the background, or redirect errors
#% special characters for most crystallography programs
`([“’ back-quote, backslash, etc. special to shell
_ underscore, use this instead of spaces!!!
Where am I?
Print name of the “current working directory”
This is the default directory/folder where the shell program will
look first for programs, files, etc. It is “where you are” in Unix
space.
pwd
What is a directory?
Directories are places you put files. They are
represented as words connected by the “/”
character. On Windows, they use a “”, just to be
different. On Mac, they are called “folders”.
Whatever you do…
DO NOT PUT SPACES
In directory/file names!
/home/yourname/whatever
What have we here?
List contents of the current working directory
ls –l - long listing, with dates, owners, etc.
ls –lrt - above, but sorted by time
ls –lrt /home/yourname/something
- long-list a different directory
ls
Go somewhere else?
Change the current working directory
cd /tmp/yourname/
- go to your temporary directory
cd - - go back to where you just were
cd - no arguments, go back “home”
“home” is where your login starts
cd
A new beginning…
Create a new directory.
mkdir ./something - make it
cd ./something - go there
ls - check its is empty
mkdir
How do I get help?
Display the manual for a given program
man ls - see manual for the “ls” command
man tcsh - learn about the C shell
man bash - learn about that other shell
man man - read the manual for the manual
to return to the command prompt, type “q”
man
Move it!
Move or rename a file. If you think about it, these are the same thing.
mv stupidname.txt bettername.txt
- change name
mv stupidplace/file.txt ../betterplace/file.txt
- same name, different directory
mv stupidname_*.img bettername_*.img
Will not work! Never ever do this!
mv
Copy machine
Copy a file. This is just like “mv”
except it does not delete the original.
cp stupidname.txt bettername.txt
- change name, keep original
rm stupidname.txt
- now this is the same as “mv”
cp
“Permission denied” !?
Change the “permission” of a file.
chmod a+r filename.txt
- make it so everyone can read it
chmod u+rwx filename.txt
- make it you can read/write/execute it
chmod –R u+rw /some/random/place
- make it so you can read/write everything under
a directory
chmod
Destroy! Destroy!
Remove a file forever. There is no “trash” or “undelete” in unix.
rm unwanted_file.txt
- delete file with that name
rm –f /tmp/yourname/*
- forcefully remove everything in your
temporary directory.
Will not prompt for confirmation!
rm
less is more
Display the contents of a text file, page by page
more filename.txt - display contents
less filename.txt - many installs now have a
replacement for “more” called “less” which has nicer search
features.
to return to the command prompt, type “q”
more
After the download…
File compression and decompression
gunzip ~/Downloads/whatever.tar.gz
- decompress
gzip ~/Downloads/whatever.tar
- compress, creates file with .gz extension
gunzip
Where the %$#& is it?
Search through directories, find files
find ./ -name ’important*.txt’
- look at everything under current working directory
with name starting with “important” and ending in “.txt”
find / -name ’important*.txt’
- will always find it, but take a very long time!
find
Did I run out of disk space?
Check how much space is left on disks
df - look at space left on all disks
df . - look at space left in the current working directory
du –sk . | sort –g
- add up space taken up by all files and
subdirectories, list biggest hog last
df du
Why so slow?
Look for programs that may be eating up CPU or memory.
top - list processes in order of CPU usage
jobs - list jobs running in background of current terminal
ps –fHu yourname
- list jobs belonging to your account in order of what
spawned what
ps top
Die Die Die!
Stop jobs that are running in the background
kill %1 - kill job [1], as listed in “jobs”
kill 1234 - kill job listed as 1234 by “ps” or “top”
kill -9 1234 - that was not a suggestion!
kill -9 -g 1234 – seriously kill that job and the
program that launched it
kill

More Related Content

Similar to Linux Commands.pptx

Linux basic for CADD biologist
Linux basic for CADD biologistLinux basic for CADD biologist
Linux basic for CADD biologist
Ajay Murali
 
Operating system lab manual
Operating system lab manualOperating system lab manual
Operating system lab manual
Meerut Institute of Technology
 
OS Lab Manual.pdf
OS Lab Manual.pdfOS Lab Manual.pdf
OS Lab Manual.pdf
QucHunh15
 
The structure of Linux - Introduction to Linux for bioinformatics
The structure of Linux - Introduction to Linux for bioinformaticsThe structure of Linux - Introduction to Linux for bioinformatics
The structure of Linux - Introduction to Linux for bioinformatics
BITS
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
AdamFallon4
 
MCLS 45 Lab Manual
MCLS 45 Lab ManualMCLS 45 Lab Manual
MCLS 45 Lab Manual
Lokesh Singrol
 
An Introduction to Linux
An Introduction to LinuxAn Introduction to Linux
An Introduction to LinuxDimas Prasetyo
 
Shell Scripting crash course.pdf
Shell Scripting crash course.pdfShell Scripting crash course.pdf
Shell Scripting crash course.pdf
harikrishnapolaki
 
Shell_Scripting.ppt
Shell_Scripting.pptShell_Scripting.ppt
Shell_Scripting.ppt
KiranMantri
 
linux cmds.pptx
linux cmds.pptxlinux cmds.pptx
linux cmds.pptx
divyanshianand3
 
Introduction to the linux command line.pdf
Introduction to the linux command line.pdfIntroduction to the linux command line.pdf
Introduction to the linux command line.pdf
CesleySCruz
 
Common linux ubuntu commands overview
Common linux  ubuntu commands overviewCommon linux  ubuntu commands overview
Common linux ubuntu commands overview
Ameer Sameer
 
Linux presentation
Linux presentationLinux presentation
Linux presentationNikhil Jain
 
Introduction to linux2
Introduction to linux2Introduction to linux2
Introduction to linux2
Gourav Varma
 
8.1.intro unix
8.1.intro unix8.1.intro unix
8.1.intro unixsouthees
 
Linux Basic Commands
Linux Basic CommandsLinux Basic Commands
Linux Basic Commands
Hanan Nmr
 
Introduction to linux day1
Introduction to linux day1Introduction to linux day1
Introduction to linux day1
UtpalenduChakrobortt1
 
Treebeard's Unix Cheat Sheet
Treebeard's Unix Cheat SheetTreebeard's Unix Cheat Sheet
Treebeard's Unix Cheat Sheetwensheng wei
 

Similar to Linux Commands.pptx (20)

Linux basic for CADD biologist
Linux basic for CADD biologistLinux basic for CADD biologist
Linux basic for CADD biologist
 
Operating system lab manual
Operating system lab manualOperating system lab manual
Operating system lab manual
 
OS Lab Manual.pdf
OS Lab Manual.pdfOS Lab Manual.pdf
OS Lab Manual.pdf
 
The structure of Linux - Introduction to Linux for bioinformatics
The structure of Linux - Introduction to Linux for bioinformaticsThe structure of Linux - Introduction to Linux for bioinformatics
The structure of Linux - Introduction to Linux for bioinformatics
 
Using the command line on macOS
Using the command line on macOSUsing the command line on macOS
Using the command line on macOS
 
MCLS 45 Lab Manual
MCLS 45 Lab ManualMCLS 45 Lab Manual
MCLS 45 Lab Manual
 
An Introduction to Linux
An Introduction to LinuxAn Introduction to Linux
An Introduction to Linux
 
Shell Scripting crash course.pdf
Shell Scripting crash course.pdfShell Scripting crash course.pdf
Shell Scripting crash course.pdf
 
Shell_Scripting.ppt
Shell_Scripting.pptShell_Scripting.ppt
Shell_Scripting.ppt
 
Linux shell scripting
Linux shell scriptingLinux shell scripting
Linux shell scripting
 
linux cmds.pptx
linux cmds.pptxlinux cmds.pptx
linux cmds.pptx
 
Introduction to the linux command line.pdf
Introduction to the linux command line.pdfIntroduction to the linux command line.pdf
Introduction to the linux command line.pdf
 
Common linux ubuntu commands overview
Common linux  ubuntu commands overviewCommon linux  ubuntu commands overview
Common linux ubuntu commands overview
 
Linux ppt
Linux pptLinux ppt
Linux ppt
 
Linux presentation
Linux presentationLinux presentation
Linux presentation
 
Introduction to linux2
Introduction to linux2Introduction to linux2
Introduction to linux2
 
8.1.intro unix
8.1.intro unix8.1.intro unix
8.1.intro unix
 
Linux Basic Commands
Linux Basic CommandsLinux Basic Commands
Linux Basic Commands
 
Introduction to linux day1
Introduction to linux day1Introduction to linux day1
Introduction to linux day1
 
Treebeard's Unix Cheat Sheet
Treebeard's Unix Cheat SheetTreebeard's Unix Cheat Sheet
Treebeard's Unix Cheat Sheet
 

Recently uploaded

The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
kimdan468
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
ArianaBusciglio
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 

Recently uploaded (20)

The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 

Linux Commands.pptx

  • 2. What the ~*&?! ~ “tilde” indicates your home directory: /home/you * “star”: wildcard, matches anything ? wildcard, matches any one character ! History substitution, do not use & run a job in the background, or redirect errors #% special characters for most crystallography programs `([“’ back-quote, backslash, etc. special to shell _ underscore, use this instead of spaces!!!
  • 3. Where am I? Print name of the “current working directory” This is the default directory/folder where the shell program will look first for programs, files, etc. It is “where you are” in Unix space. pwd
  • 4. What is a directory? Directories are places you put files. They are represented as words connected by the “/” character. On Windows, they use a “”, just to be different. On Mac, they are called “folders”. Whatever you do… DO NOT PUT SPACES In directory/file names! /home/yourname/whatever
  • 5. What have we here? List contents of the current working directory ls –l - long listing, with dates, owners, etc. ls –lrt - above, but sorted by time ls –lrt /home/yourname/something - long-list a different directory ls
  • 6. Go somewhere else? Change the current working directory cd /tmp/yourname/ - go to your temporary directory cd - - go back to where you just were cd - no arguments, go back “home” “home” is where your login starts cd
  • 7. A new beginning… Create a new directory. mkdir ./something - make it cd ./something - go there ls - check its is empty mkdir
  • 8. How do I get help? Display the manual for a given program man ls - see manual for the “ls” command man tcsh - learn about the C shell man bash - learn about that other shell man man - read the manual for the manual to return to the command prompt, type “q” man
  • 9. Move it! Move or rename a file. If you think about it, these are the same thing. mv stupidname.txt bettername.txt - change name mv stupidplace/file.txt ../betterplace/file.txt - same name, different directory mv stupidname_*.img bettername_*.img Will not work! Never ever do this! mv
  • 10. Copy machine Copy a file. This is just like “mv” except it does not delete the original. cp stupidname.txt bettername.txt - change name, keep original rm stupidname.txt - now this is the same as “mv” cp
  • 11. “Permission denied” !? Change the “permission” of a file. chmod a+r filename.txt - make it so everyone can read it chmod u+rwx filename.txt - make it you can read/write/execute it chmod –R u+rw /some/random/place - make it so you can read/write everything under a directory chmod
  • 12. Destroy! Destroy! Remove a file forever. There is no “trash” or “undelete” in unix. rm unwanted_file.txt - delete file with that name rm –f /tmp/yourname/* - forcefully remove everything in your temporary directory. Will not prompt for confirmation! rm
  • 13. less is more Display the contents of a text file, page by page more filename.txt - display contents less filename.txt - many installs now have a replacement for “more” called “less” which has nicer search features. to return to the command prompt, type “q” more
  • 14. After the download… File compression and decompression gunzip ~/Downloads/whatever.tar.gz - decompress gzip ~/Downloads/whatever.tar - compress, creates file with .gz extension gunzip
  • 15. Where the %$#& is it? Search through directories, find files find ./ -name ’important*.txt’ - look at everything under current working directory with name starting with “important” and ending in “.txt” find / -name ’important*.txt’ - will always find it, but take a very long time! find
  • 16. Did I run out of disk space? Check how much space is left on disks df - look at space left on all disks df . - look at space left in the current working directory du –sk . | sort –g - add up space taken up by all files and subdirectories, list biggest hog last df du
  • 17. Why so slow? Look for programs that may be eating up CPU or memory. top - list processes in order of CPU usage jobs - list jobs running in background of current terminal ps –fHu yourname - list jobs belonging to your account in order of what spawned what ps top
  • 18. Die Die Die! Stop jobs that are running in the background kill %1 - kill job [1], as listed in “jobs” kill 1234 - kill job listed as 1234 by “ps” or “top” kill -9 1234 - that was not a suggestion! kill -9 -g 1234 – seriously kill that job and the program that launched it kill