SlideShare a Scribd company logo
Learning Unix/Linux




  Bioinformatics Orientation 2008
           Eric Bishop
Introduction: What is Unix?
 An operating system
 Developed at AT&T Bell Labs in the
  1960’s
 Command Line Interpreter
 GUIs (Window systems) are now available
Introduction: Unix vs. Linux
 Unix was the predecessor of Linux
 Linux is a variant of Unix
   So is Mac OS X, so much of this tutorial applies
    to Macs as well
 Linux is open source
 Most of the machines you’ll use in the
  Bioinformatics program are running the
  Linux OS
Introduction: Why Unix/Linux?


 Linux   is free
 It’s fully customizable
 It’s stable (i.e. it almost never crashes)


 These  characteristics make it an ideal OS
  for programmers and scientists
Connecting to a Unix/Linux system
 Open   up a terminal:
Connecting to a Unix/Linux system
 Open      up a terminal:




                            The “prompt”



            The current directory (“path”)



 The host
What exactly is a “shell”?
 Afterlogging in, Linux/Unix starts another
  program called the shell
 The shell interprets commands the user types
  and manages their execution
      The shell communicates with the internal part of the
       operating system called the kernel
      The most popular shells are: tcsh, csh, korn, and bash

      The differences are most times subtle

      For this tutorial, we are using bash




 Shell   commands are CASE SENSITIVE!
Help!
 Whenever you need help with a command
 type “man” and the command name
Help!
Help!
Help!
Unix/Linux File System
                              NOTE: Unix file names
                              are CASE SENSITIVE!




                                      /home/mary/




                         /home/john/portfolio/



                             The Path
Command: pwd
 To   find your current path use “pwd”
Command: cd
 To   change to a specific directory use “cd”
Command: cd
   “~” is the location of your home directory
Command: cd
 “..”
     is the location of the directory below
  current one
Command: ls
 To   list the files in the current directory use “ls”
Command: ls
 ls   has many options
      -l long list (displays lots of info)
      -t sort by modification time
      -S sort by size
      -h list file sizes in human readable format
      -r reverse the order
 “man ls” for more options
 Options can be combined: “ls -ltr”
Command: ls -ltr
 List   files by time in reverse order with long listing
General Syntax: *
 “*”   can be used as a wildcard in unix/linux
Command: mkdir
 To   create a new directory use “mkdir”
Command: rmdir
 Toremove and empty directory use
 “rmdir”
Creating files in Unix/Linux
 Requires the use of an Editor
 Various Editors:
    1)   nano / pico
    2)   vi
    3)   emacs
Editing a file using pico or nano
 Type   “pico” or “nano” at the prompt
Editing a file using pico
 To   save use “ctrl-x”
Displaying a file
 Various    ways to display a file in Unix
     cat
     less
     head
     tail
Command: cat
 Dumps an entire file to standard output
 Good for displaying short, simple files
Command: less
    “less” displays a file, allowing
    forward/backward movement within it
     return scrolls forward one line, space one page
     y scrolls back one line, b one page

 use “/” to search for a string
 Press q to quit
Command: head
 “head” displays the top part of a file
 By default it shows the first 10 lines
 -n option allows you to change that
 “head -n50 file.txt” displays the first 50
 lines of file.txt
Command: head
 Here’s   an example of using “head”:
Command: tail
 Same   as head, but shows the last lines
File Commands
 Copying a file: cp
 Move or rename a file: mv
 Remove a file: rm
Command: cp
 To   copy a file use “cp”
Command: mv
 To   move a file to a different location use “mv”
Command: mv
 mv   can also be used to rename a file
Command: rm
 To   remove a file use “rm”
Command: rm
 To  remove a file “recursively”: rm –r
 Used to remove all files and directories
 Be very careful, deletions are permanent
  in Unix/Linux
File permissions
 Each  file in Unix/Linux has an associated
  permission level
 This allows the user to prevent others from
  reading/writing/executing their files or
  directories
 Use “ls -l filename” to find the permission
  level of that file
Permission levels
 “r”means “read only” permission
 “w” means “write” permission
 “x” means “execute” permission
    In case of directory, “x” grants permission to list
     directory contents
File Permissions




User (you)
File Permissions




Group
File Permissions




“The World”
Command: chmod
   If you own the file, you can change it’s permissions with
    “chmod”
      Syntax: chmod [user/group/others/all]+[permission] [file(s)]

       Below we grant execute permission to all:
Running a program (a.k.a. a job)
 Make  sure the program has executable
  permissions
 Use “./” to run the program
Running a program: an example
 Running   the sample perl script “hello_world.pl”
Ending a program
 To   end a program use “ctrl-c”. To try it:
Command: ps
 To   view the processes that you’re running:
Command: top
 To   view the CPU usage of all processes:
Command: kill
 To   terminate a process use “kill”
Input/Output Redirection (“piping”)
 Programs   can output to other programs
 Called “piping”
 “program_a | program_b”
       program_a’s output becomes program_b’s input
 “program_a        > file.txt”
       program_a’s output is written to a file called “file.txt”
   “program_a < input.txt”
       program_a gets its input from a file called “input.txt”
A few examples of piping
A few examples of piping
Command: wc
 To  count the characters, words, and lines
  in a file use “wc”
 The first column in the output is lines, the
  second is words, and the last is characters
A few examples of piping
Command: grep
 To search files in a directory for a specific
 string use “grep”
Command: diff
 To compare to files for differences use
 “diff”
   Try:diff /dev/null hello.txt
   /dev/null is a special address -- it is always
    empty, and anything moved there is deleted
ssh, scp
 ssh is used to securely log in to remote systems, successor to telnet
 ssh [username]@[hostname]
 Try:

       ssh yourusername@localhost
       Type “exit” to log out of session



   Scp is used to copy files to/from remote systems, syntax is similar to
    cp:
        scp [local path] [usernme]@[hostname]:[remote file path]
   Try:
        scp hello.txt yourusername@localhost:scp-test.txt
Unix Web Resources
 http://www.ee.surrey.ac.uk/Teaching/Unix/


 http://www.ugu.com/sui/ugu/show?help.
 beginners

 http://en.wikipedia.org/wiki/Unix

More Related Content

What's hot (20)

Linux basic commands tutorial
Linux basic commands tutorial
Teja Bheemanapally
 
Basics of-linux
Basics of-linux
Singsys Pte Ltd
 
Quick Guide with Linux Command Line
Quick Guide with Linux Command Line
Anuchit Chalothorn
 
Unix
Unix
Sudharsan S
 
Terminal Commands (Linux - ubuntu) (part-1)
Terminal Commands (Linux - ubuntu) (part-1)
raj upadhyay
 
Linux Commands
Linux Commands
Ramasubbu .P
 
Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013
Wave Digitech
 
50 most frequently used unix linux commands (with examples)
50 most frequently used unix linux commands (with examples)
Rodrigo Maia
 
Linux Administration
Linux Administration
Harish1983
 
Linux commands
Linux commands
Balakumaran Arunachalam
 
Basic commands
Basic commands
ambilivava
 
Linux Shell Basics
Linux Shell Basics
Constantine Nosovsky
 
Basic linux commands
Basic linux commands
Shakeel Shafiq
 
Useful Linux and Unix commands handbook
Useful Linux and Unix commands handbook
Wave Digitech
 
Linux commands
Linux commands
Mannu Khani
 
17 Linux Basics #burningkeyboards
17 Linux Basics #burningkeyboards
Denis Ristic
 
Unix Shell Script
Unix Shell Script
student
 
BASIC COMMANDS OF LINUX
BASIC COMMANDS OF LINUX
Mr.AKHILESH KUMAR {Computer Lab Technician}
 
Linux commands and file structure
Linux commands and file structure
Sreenatha Reddy K R
 
Basic command ppt
Basic command ppt
Rohit Kumar
 
Quick Guide with Linux Command Line
Quick Guide with Linux Command Line
Anuchit Chalothorn
 
Terminal Commands (Linux - ubuntu) (part-1)
Terminal Commands (Linux - ubuntu) (part-1)
raj upadhyay
 
Unix Linux Commands Presentation 2013
Unix Linux Commands Presentation 2013
Wave Digitech
 
50 most frequently used unix linux commands (with examples)
50 most frequently used unix linux commands (with examples)
Rodrigo Maia
 
Linux Administration
Linux Administration
Harish1983
 
Basic commands
Basic commands
ambilivava
 
Useful Linux and Unix commands handbook
Useful Linux and Unix commands handbook
Wave Digitech
 
17 Linux Basics #burningkeyboards
17 Linux Basics #burningkeyboards
Denis Ristic
 
Unix Shell Script
Unix Shell Script
student
 
Linux commands and file structure
Linux commands and file structure
Sreenatha Reddy K R
 
Basic command ppt
Basic command ppt
Rohit Kumar
 

Viewers also liked (20)

Chap 18 net
Chap 18 net
Kenny (netman)
 
Linux fundamental - Chap 16 System Rescue
Linux fundamental - Chap 16 System Rescue
Kenny (netman)
 
Linux Commands
Linux Commands
Utkarsh Sengar
 
Ras pioverview
Ras pioverview
Alec Clews
 
Chap 17 advfs
Chap 17 advfs
Kenny (netman)
 
Linux pipe & redirection
Linux pipe & redirection
Colin Su
 
Linux network monitoring hands-on pratice
Linux network monitoring hands-on pratice
Kenny (netman)
 
Linux fundamentals
Linux fundamentals
chakrikolla
 
Power point (asking permission)
Power point (asking permission)
ahmaddarda1505
 
Unix - Filters/Editors
Unix - Filters/Editors
ananthimurugesan
 
Chap 19 web
Chap 19 web
Kenny (netman)
 
Linux fundamental - Chap 05 filter
Linux fundamental - Chap 05 filter
Kenny (netman)
 
Linux fundamental - Chap 13 account management
Linux fundamental - Chap 13 account management
Kenny (netman)
 
Linux fundamental - Chap 09 pkg
Linux fundamental - Chap 09 pkg
Kenny (netman)
 
Linux fundamental - Chap 02 perm
Linux fundamental - Chap 02 perm
Kenny (netman)
 
Linux fundamental - Chap 14 shell script
Linux fundamental - Chap 14 shell script
Kenny (netman)
 
Importance of linux system fundamental in technical documentation reading
Importance of linux system fundamental in technical documentation reading
Kenny (netman)
 
Linux-Permission
Linux-Permission
Colin Su
 
Linux files and file permission
Linux files and file permission
U.P Police
 
Red Hat Certified engineer course
Red Hat Certified engineer course
Ali Abdo
 
Linux fundamental - Chap 16 System Rescue
Linux fundamental - Chap 16 System Rescue
Kenny (netman)
 
Ras pioverview
Ras pioverview
Alec Clews
 
Linux pipe & redirection
Linux pipe & redirection
Colin Su
 
Linux network monitoring hands-on pratice
Linux network monitoring hands-on pratice
Kenny (netman)
 
Linux fundamentals
Linux fundamentals
chakrikolla
 
Power point (asking permission)
Power point (asking permission)
ahmaddarda1505
 
Linux fundamental - Chap 05 filter
Linux fundamental - Chap 05 filter
Kenny (netman)
 
Linux fundamental - Chap 13 account management
Linux fundamental - Chap 13 account management
Kenny (netman)
 
Linux fundamental - Chap 09 pkg
Linux fundamental - Chap 09 pkg
Kenny (netman)
 
Linux fundamental - Chap 02 perm
Linux fundamental - Chap 02 perm
Kenny (netman)
 
Linux fundamental - Chap 14 shell script
Linux fundamental - Chap 14 shell script
Kenny (netman)
 
Importance of linux system fundamental in technical documentation reading
Importance of linux system fundamental in technical documentation reading
Kenny (netman)
 
Linux-Permission
Linux-Permission
Colin Su
 
Linux files and file permission
Linux files and file permission
U.P Police
 
Red Hat Certified engineer course
Red Hat Certified engineer course
Ali Abdo
 
Ad

Similar to Unix tutorial-08 (20)

linux-commands.ppt
linux-commands.ppt
saubhagya ranjan
 
linux-commands.ppt
linux-commands.ppt
AbhishekKumarSrivast36
 
linux-commands.ppt
linux-commands.ppt
ArliPutraPratama1
 
linux-commands.ppt
linux-commands.ppt
MeghrajPatil11
 
linux-commands.ppt
linux-commands.ppt
ArliPutraPratama
 
Linux commands
Linux commands
VenkatakrishnaAdari1
 
linux-commands.ppt
linux-commands.ppt
hazhamina
 
Unix Shell Script - 2 Days Session.pptx
Unix Shell Script - 2 Days Session.pptx
Rajesh Kumar
 
Unix environment [autosaved]
Unix environment [autosaved]
Er Mittinpreet Singh
 
Unix and Linux - The simple introduction
Unix and Linux - The simple introduction
Amity University Noida
 
Shell_Scripting.ppt
Shell_Scripting.ppt
KiranMantri
 
Karkha unix shell scritping
Karkha unix shell scritping
chockit88
 
Chapter 2 unix system commands
Chapter 2 unix system commands
LukasJohnny
 
Linux Commands all presentation file .pptx
Linux Commands all presentation file .pptx
AshutoshPrajapati30
 
PowerPoint_merge.ppt on unix programming
PowerPoint_merge.ppt on unix programming
Priyadarshini648418
 
58518522 study-aix
58518522 study-aix
homeworkping3
 
Commands and shell programming (3)
Commands and shell programming (3)
christ university
 
8.1.intro unix
8.1.intro unix
southees
 
various shell commands in unix operating system.pptx
various shell commands in unix operating system.pptx
ssuserc26f8f
 
QSpiders - Unix Operating Systems and Commands
QSpiders - Unix Operating Systems and Commands
Qspiders - Software Testing Training Institute
 
linux-commands.ppt
linux-commands.ppt
hazhamina
 
Unix Shell Script - 2 Days Session.pptx
Unix Shell Script - 2 Days Session.pptx
Rajesh Kumar
 
Unix and Linux - The simple introduction
Unix and Linux - The simple introduction
Amity University Noida
 
Shell_Scripting.ppt
Shell_Scripting.ppt
KiranMantri
 
Karkha unix shell scritping
Karkha unix shell scritping
chockit88
 
Chapter 2 unix system commands
Chapter 2 unix system commands
LukasJohnny
 
Linux Commands all presentation file .pptx
Linux Commands all presentation file .pptx
AshutoshPrajapati30
 
PowerPoint_merge.ppt on unix programming
PowerPoint_merge.ppt on unix programming
Priyadarshini648418
 
Commands and shell programming (3)
Commands and shell programming (3)
christ university
 
8.1.intro unix
8.1.intro unix
southees
 
various shell commands in unix operating system.pptx
various shell commands in unix operating system.pptx
ssuserc26f8f
 
Ad

Recently uploaded (20)

Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
Black and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdf
AnnasofiaUrsini
 
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Chalukyas of Gujrat, Solanki Dynasty NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
LDMMIA Spring Ending Guest Grad Student News
LDMMIA Spring Ending Guest Grad Student News
LDM & Mia eStudios
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Rajdeep Bavaliya
 
PEST OF WHEAT SORGHUM BAJRA and MINOR MILLETS.pptx
PEST OF WHEAT SORGHUM BAJRA and MINOR MILLETS.pptx
Arshad Shaikh
 
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
BUSINESS QUIZ PRELIMS | QUIZ CLUB OF PSGCAS | 9 SEPTEMBER 2024
Quiz Club of PSG College of Arts & Science
 
How to Manage Inventory Movement in Odoo 18 POS
How to Manage Inventory Movement in Odoo 18 POS
Celine George
 
Nice Dream.pdf /
Nice Dream.pdf /
ErinUsher3
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Final Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptx
bobby205207
 
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
Unit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptx
bobby205207
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
Black and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdf
AnnasofiaUrsini
 
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Basic English for Communication - Dr Hj Euis Eti Rohaeti Mpd
Restu Bias Primandhika
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
LDMMIA Spring Ending Guest Grad Student News
LDMMIA Spring Ending Guest Grad Student News
LDM & Mia eStudios
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Paper 108 | Thoreau’s Influence on Gandhi: The Evolution of Civil Disobedience
Rajdeep Bavaliya
 
PEST OF WHEAT SORGHUM BAJRA and MINOR MILLETS.pptx
PEST OF WHEAT SORGHUM BAJRA and MINOR MILLETS.pptx
Arshad Shaikh
 
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
How to Manage Inventory Movement in Odoo 18 POS
How to Manage Inventory Movement in Odoo 18 POS
Celine George
 
Nice Dream.pdf /
Nice Dream.pdf /
ErinUsher3
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
Final Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptx
bobby205207
 
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Webcrawler_Mule_AIChain_MuleSoft_Meetup_Hyderabad
Veera Pallapu
 
Unit 3 Poster Sketches with annotations.pptx
Unit 3 Poster Sketches with annotations.pptx
bobby205207
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 

Unix tutorial-08

  • 1. Learning Unix/Linux Bioinformatics Orientation 2008 Eric Bishop
  • 2. Introduction: What is Unix?  An operating system  Developed at AT&T Bell Labs in the 1960’s  Command Line Interpreter  GUIs (Window systems) are now available
  • 3. Introduction: Unix vs. Linux  Unix was the predecessor of Linux  Linux is a variant of Unix  So is Mac OS X, so much of this tutorial applies to Macs as well  Linux is open source  Most of the machines you’ll use in the Bioinformatics program are running the Linux OS
  • 4. Introduction: Why Unix/Linux?  Linux is free  It’s fully customizable  It’s stable (i.e. it almost never crashes)  These characteristics make it an ideal OS for programmers and scientists
  • 5. Connecting to a Unix/Linux system  Open up a terminal:
  • 6. Connecting to a Unix/Linux system  Open up a terminal: The “prompt” The current directory (“path”) The host
  • 7. What exactly is a “shell”?  Afterlogging in, Linux/Unix starts another program called the shell  The shell interprets commands the user types and manages their execution  The shell communicates with the internal part of the operating system called the kernel  The most popular shells are: tcsh, csh, korn, and bash  The differences are most times subtle  For this tutorial, we are using bash  Shell commands are CASE SENSITIVE!
  • 8. Help!  Whenever you need help with a command type “man” and the command name
  • 10. Help!
  • 11. Help!
  • 12. Unix/Linux File System NOTE: Unix file names are CASE SENSITIVE! /home/mary/ /home/john/portfolio/ The Path
  • 13. Command: pwd  To find your current path use “pwd”
  • 14. Command: cd  To change to a specific directory use “cd”
  • 15. Command: cd  “~” is the location of your home directory
  • 16. Command: cd  “..” is the location of the directory below current one
  • 17. Command: ls  To list the files in the current directory use “ls”
  • 18. Command: ls  ls has many options  -l long list (displays lots of info)  -t sort by modification time  -S sort by size  -h list file sizes in human readable format  -r reverse the order  “man ls” for more options  Options can be combined: “ls -ltr”
  • 19. Command: ls -ltr  List files by time in reverse order with long listing
  • 20. General Syntax: *  “*” can be used as a wildcard in unix/linux
  • 21. Command: mkdir  To create a new directory use “mkdir”
  • 22. Command: rmdir  Toremove and empty directory use “rmdir”
  • 23. Creating files in Unix/Linux  Requires the use of an Editor  Various Editors: 1) nano / pico 2) vi 3) emacs
  • 24. Editing a file using pico or nano  Type “pico” or “nano” at the prompt
  • 25. Editing a file using pico  To save use “ctrl-x”
  • 26. Displaying a file  Various ways to display a file in Unix  cat  less  head  tail
  • 27. Command: cat  Dumps an entire file to standard output  Good for displaying short, simple files
  • 28. Command: less  “less” displays a file, allowing forward/backward movement within it  return scrolls forward one line, space one page  y scrolls back one line, b one page  use “/” to search for a string  Press q to quit
  • 29. Command: head  “head” displays the top part of a file  By default it shows the first 10 lines  -n option allows you to change that  “head -n50 file.txt” displays the first 50 lines of file.txt
  • 30. Command: head  Here’s an example of using “head”:
  • 31. Command: tail  Same as head, but shows the last lines
  • 32. File Commands  Copying a file: cp  Move or rename a file: mv  Remove a file: rm
  • 33. Command: cp  To copy a file use “cp”
  • 34. Command: mv  To move a file to a different location use “mv”
  • 35. Command: mv  mv can also be used to rename a file
  • 36. Command: rm  To remove a file use “rm”
  • 37. Command: rm  To remove a file “recursively”: rm –r  Used to remove all files and directories  Be very careful, deletions are permanent in Unix/Linux
  • 38. File permissions  Each file in Unix/Linux has an associated permission level  This allows the user to prevent others from reading/writing/executing their files or directories  Use “ls -l filename” to find the permission level of that file
  • 39. Permission levels  “r”means “read only” permission  “w” means “write” permission  “x” means “execute” permission  In case of directory, “x” grants permission to list directory contents
  • 43. Command: chmod  If you own the file, you can change it’s permissions with “chmod”  Syntax: chmod [user/group/others/all]+[permission] [file(s)]  Below we grant execute permission to all:
  • 44. Running a program (a.k.a. a job)  Make sure the program has executable permissions  Use “./” to run the program
  • 45. Running a program: an example  Running the sample perl script “hello_world.pl”
  • 46. Ending a program  To end a program use “ctrl-c”. To try it:
  • 47. Command: ps  To view the processes that you’re running:
  • 48. Command: top  To view the CPU usage of all processes:
  • 49. Command: kill  To terminate a process use “kill”
  • 50. Input/Output Redirection (“piping”)  Programs can output to other programs  Called “piping”  “program_a | program_b”  program_a’s output becomes program_b’s input  “program_a > file.txt”  program_a’s output is written to a file called “file.txt”  “program_a < input.txt”  program_a gets its input from a file called “input.txt”
  • 51. A few examples of piping
  • 52. A few examples of piping
  • 53. Command: wc  To count the characters, words, and lines in a file use “wc”  The first column in the output is lines, the second is words, and the last is characters
  • 54. A few examples of piping
  • 55. Command: grep  To search files in a directory for a specific string use “grep”
  • 56. Command: diff  To compare to files for differences use “diff”  Try:diff /dev/null hello.txt  /dev/null is a special address -- it is always empty, and anything moved there is deleted
  • 57. ssh, scp  ssh is used to securely log in to remote systems, successor to telnet  ssh [username]@[hostname]  Try: ssh yourusername@localhost Type “exit” to log out of session  Scp is used to copy files to/from remote systems, syntax is similar to cp:  scp [local path] [usernme]@[hostname]:[remote file path]  Try:  scp hello.txt yourusername@localhost:scp-test.txt
  • 58. Unix Web Resources  http://www.ee.surrey.ac.uk/Teaching/Unix/  http://www.ugu.com/sui/ugu/show?help. beginners  http://en.wikipedia.org/wiki/Unix