User Tools

Site Tools


mkatari-bioinformatics-august-2013-introlinuxnotes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mkatari-bioinformatics-august-2013-introlinuxnotes [2015/06/03 18:13] mkatarimkatari-bioinformatics-august-2013-introlinuxnotes [2015/06/11 11:50] (current) – [Controlling Jobs] mkatari
Line 32: Line 32:
 {{:servercomputerrelation.png?600|}} {{:servercomputerrelation.png?600|}}
  
-====== The Linux Shell ======+====== Logging in with X Windows ======
  
 The standard user interface for personal computers is a GUI (Graphical User Interface). However for linux it is a command-line interpreter called shell. The standard user interface for personal computers is a GUI (Graphical User Interface). However for linux it is a command-line interpreter called shell.
 It is simply a prompt the awaits your command. There are several different shells, but the one used often is called “bash”, which is a mixture of a bunch of other shells. It is simply a prompt the awaits your command. There are several different shells, but the one used often is called “bash”, which is a mixture of a bunch of other shells.
 +
 +In cases where a program requires a GUI, you should log in using the ''–X'' option.
 +This opens a tunnel to your computer allowing all windows to open in your computer.
 +For this to work you need X11 installed on your computer (MobaXterm already has one)
 +MAC – Xquartz (http://xquartz.macosforge.org/landing/)
 +Windows – Xming (http://sourceforge.net/projects/xming/)
 +
 +<code>
 +Last login: Wed Jun  3 15:49:01 on ttys000
 +Manpreets-MacBook-Pro:~ manpreetkatari$ ssh -X mkatari@hpc.ilri.cgiar.org
 +Unauthorized access is prohibited.
 +mkatari@hpc.ilri.cgiar.org's password:
 +Last login: Wed Jun  3 16:33:26 2015 from 197.136.62.11
 +[mkatari@hpc ~]$ emacs
 +
 +</code>
 +
 +You should have a window popup on your computer that looks something like this.
 +
 +{{:emacswindow.png?300|}}
 +
 +Simply close the window to exit.
 +
 +====== Home Sweet Home ======
 +
 +When you first log in, you will be in a directory called “''home directory''
 +<code>
 +/home/<your username>
 +</code>
 +Generally in this directory you have complete control over creating, modifying, and executing files in this or any sub directory you create. In order to return to your home directory simply type the command: ''cd ~'' at the prompt. Unless appropriate changes have been made you can can not enter anyone’s directory or even see what is in it.
 +
  
 ===== Command Line Editing ===== ===== Command Line Editing =====
Line 66: Line 97:
 </code> </code>
  
-====== Logging in with X Windows ====== 
  
-In cases where program requires a GUI, you should log in using the ''–X'' option. +===== Directing standard output ===== 
-This opens tunnel to your computer allowing all windows to open in your computer. + 
-For this to work you need X11 installed on your computer (MobaXterm already has one) +Instead letting the output print to the screen we can save it to file by using the ''>'' sign and then giving the file name This will replace file if it already exists without a warningTo append use an existing file use ''>>''. It is important to mention here that once you overwrite a file, it is deletedIt is gone. There is no recycling bin to restore from trash
-MAC – Xquartz (http://xquartz.macosforge.org/landing/) + 
-Windows – Xming (http://sourceforge.net/projects/xming/)+The following command gets details about all users' home directories and saves them into a file called ''allusers.txt''
  
 <code> <code>
-Last login: Wed Jun  3 15:49:01 on ttys000 + 
-Manpreets-MacBook-Pro:manpreetkatarissh -mkatari@hpc.ilri.cgiar.org +[mkatari@hpc ~]ls -l /home/ > allusers.txt 
-Unauthorized access is prohibited. +[mkatari@hpc ~]$ ls -l allusers.txt 
-mkatari@hpc.ilri.cgiar.org's password: +-rw-rw-r--mkatari mkatari 18897 Jun  3 21:26 allusers.txt
-Last login: Wed Jun  3 16:33:26 2015 from 197.136.62.11 +
-[mkatari@hpc ~]$ emacs+
  
 </code> </code>
  
-You should have a window popup on your computer that looks something like this. 
  
-{{:emacswindow.png?300|}}+===== Command-line completion =====
  
-====== Home Sweet Home ======+In some cases the commands or the file names that you need as arguments can be very long which increases the chance of spelling mistakes. 
 + 
 +To prevent such mistakes simply type the enough letters to unambiguously identify the command or file and then pressing tab will complete it for you. 
 + 
 +In the case you don’t know how many letters you need, simply press tab twice to see all your options. 
 + 
 +In the example below, after typing the command and its options, the tab key was pressed twice to get this. The command will not be executed until the ''enter'' key is pressed.
  
-When you first log in, you will be in a directory called “''home directory'' 
 <code> <code>
-/home/<your username>+[mkatari@hpc ~]$ ls /usr/bin/bz 
 +bzcat         bzdiff        bzip2         bzless 
 +bzcmp         bzgrep        bzip2recover  bzmore
 </code> </code>
-Generally in this directory you have complete control over creating, modifying, and executing files in this or any sub directory you create. In order to return to your home directory simply type the command: ''cd ~'' at the prompt. Unless appropriate changes have been made you can can not enter anyone’s directory or even see what is in it. 
  
 +===== Wildcards =====
  
 +In cases where you want to refer to multiple files you can use ''*'' to represent any characters of any length. You can also use ''?'' To represent any character of one length.
  
 +In the example below, the first line gives all files/programs that start with bz. The second only gives which begin with bz and three letters afterwards, represented by ?
  
 +<code>
 +[mkatari@hpc ~]$ ls /usr/bin/bz*
 +/usr/bin/bzcat  /usr/bin/bzdiff  /usr/bin/bzip2         /usr/bin/bzless
 +/usr/bin/bzcmp  /usr/bin/bzgrep  /usr/bin/bzip2recover  /usr/bin/bzmore
 +[mkatari@hpc ~]$ ls /usr/bin/bz???
 +/usr/bin/bzcat  /usr/bin/bzcmp  /usr/bin/bzip2
 +</code>
  
 +===== Finding Your Way =====
 +
 +Often you will get lost on the hpc and you will need to know where you are, which computer did you log into, or even which account have you logged into. Below are some simple commands that help you find your way.
 +
 +<code>
 +[mkatari@hpc ~]$ whoami
 +mkatari
 +
 +[mkatari@hpc ~]$ pwd
 +/home/mkatari
 +
 +[mkatari@hpc ~]$ hostname
 +hpc.ilri.cgiar.org
 +
 +</code>
 +
 +===== File manipulation =====
 +
 +Useful commands for manipulating files and directories. To get details about how to use the commands type man <command>.
 +
 +^Command ^Action ^
 +|mkdir | make a directory |
 +|rmdir | remove a directory (only works if the directory is empty ) |
 +|cd    | change directory |
 +|pwd   | present working directory |
 +|ls    | list of files and directories in the directory. You can use wild card to look for specific files. You can also use -l to see details such as permission for files and directories |
 +|cp    | copy a file and/or directories. Use -r to recursively copy.  |
 +|mv    | move a file. It will copy and then delete the source. This can be used to rename files as well. |
 +|rm    | remove a file |
 +
 +<code>
 +[mkatari@hpc ~]$ mkdir temp
 +[mkatari@hpc ~]$ cd temp/
 +[mkatari@hpc temp]$ ls
 +[mkatari@hpc temp]$ cp ../allusers.txt ./
 +[mkatari@hpc temp]$ ls
 +allusers.txt
 +[mkatari@hpc temp]$ mv allusers.txt allusers.backup
 +[mkatari@hpc temp]$ ls
 +allusers.backup
 +[mkatari@hpc temp]$ rm allusers.backup
 +[mkatari@hpc temp]$ ls
 +[mkatari@hpc temp]$ cd ../
 +[mkatari@hpc ~]$ rmdir temp/
 +
 +</code>
 +
 +====== Permissions ======
 +
 +There are three levels of permissions that can be assigned to all files, programs, and directories
 +  * Read: open the file and copy it
 +  * Write: edit the file and delete it
 +  * Execute: Run the commands in the file or change into the directory if it is a directory
 +
 +There are also three different levels of users:
 +  * User – you
 +  * Group – A collection of users that are in a group
 +  * Everyone - Not just the people who have accounts on the machine but if the directory is open to the public and any one.
 +
 +The commands used to change owner, group, and specific permissions are:
 +  * chown – changes the owner
 +  * chgrp – changes the group
 +  * chmod – change read, write, and execute permissions
 +    * +/- r = read
 +    * +/- w = write
 +    * +/- x = execute
 +    * u = user level
 +    * g = group level
 +    * o = others
 +    * a = all
 +  * chmod can also use three numbers to set permissions where the value of the number represents a specific combination of rwx and their order assigns it to the different levels (u,g,o)
 +    * 0 = none
 +    * 1 = execute only
 +    * 2 = write only
 +    * 3 = write and execute only
 +    * 4 = read only
 +    * 5 = read and execute only
 +    * 6 = read and write only
 +    * 7 = read, write and execute
 +
 +<code>
 +
 +[mkatari@hpc ~]$ tail allusers.txt > bottomusers.txt
 +[mkatari@hpc ~]$ ls -al bottomusers.txt
 +-rw-rw-r--. 1 mkatari mkatari 772 Jun 11 13:54 bottomusers.txt
 +
 +[mkatari@hpc ~]$ chmod u=+r-wx,g=+r-wx,o=-rwx bottomusers.txt
 +[mkatari@hpc ~]$ ls -al bottomusers.txt
 +-r--r-----. 1 mkatari mkatari 772 Jun 11 13:54 bottomusers.txt
 +
 +[mkatari@hpc ~]$ rm bottomusers.txt
 +rm: remove write-protected regular file `bottomusers.txt'? y
 +[mkatari@hpc ~]$ ls -al bottomusers.txt
 +ls: cannot access bottomusers.txt: No such file or directory
 +
 +</code>
 +Notice that since we have taken away our own write permission to the file we can not automatically delete it. The shell is asking to change the permission so it can delete. If we have write permissions that it would have delete right away.
 +
 +====== History ======
 +
 +Your shell saves all your commands and you can access them using the up and down keys.
 +
 +Typing the command “history” returns all the commands you have entered and a number assigned to it.
 +
 +You can run a specific one again by typing ! (also called “bang”) Followed by the job number.
 +
 +!! Will perform the most recent command.
 +
 +In the example code below, ''tail'' is used to get the last lines of the file allusers.txt. The ''>'' sign redirects the output to a new file called bottomusers.txt.
 +
 +<code>
 +[mkatari@hpc ~]$ history | grep bottom
 + 1000  tail allusers.txt > bottomusers.txt
 + 1001  ls -al bottomusers.txt
 + 1002  chmod u=+r-wx,g=+r-wx,o=-rwx bottomusers.txt
 + 1003  ls -al bottomusers.txt
 + 1004  rm bottomusers.txt
 + 1005  ls -al bottomusers.txt
 + 1006  rm bottomusers.txt
 + 1007  ls -al bottomusers.txt
 + 1008  history | grep bottom
 +[mkatari@hpc ~]$ !1000
 +tail allusers.txt > bottomusers.txt
 +[mkatari@hpc ~]$ ls -al bottomusers.txt
 +-rw-rw-r--. 1 mkatari mkatari 772 Jun 11 14:01 bottomusers.txt
 +[mkatari@hpc ~]$ !1002
 +chmod u=+r-wx,g=+r-wx,o=-rwx bottomusers.txt
 +[mkatari@hpc ~]$ ls -al bottomusers.txt
 +-r--r-----. 1 mkatari mkatari 772 Jun 11 14:01 bottomusers.txt
 +</code>
 +
 +====== Transferring Files ======
 +
 +There are several ways to transfer files to a server. The most reliable and consistent way is to use ''scp''. scp is a combination of the cp copy command and ssh command for connecting securely. An important thing to note is that you can only use scp if the remote server accepts ssh connections. For example, if you are using a windows machine and have not setup a service to accept ssh connections, you can copy to your windows machines, but you can copy from your windows machine. 
 +
 +One major advantage of using mobaxterm on windows machines is that it comes with some basic linux commands, including scp. On a mac, scp comes with the operating system. So if you want to copy a file that is on your Desktop to hpc from your laptop you can use the following command:
 +
 +<code>
 +[2015-06-11 07:22.19]  ~
 +[Manpreet.WIN-OAOVO3NM02E] ➤ cp allusers.txt Desktop/allusers_local.txt
 +                                                                           ✔
 +────────────────────────────────────────────────────────────────────────────
 +[2015-06-11 07:22.37]  ~
 +[Manpreet.WIN-OAOVO3NM02E] ➤ scp Desktop/allusers_local.txt mkatari@hpc.ilri.cgiar.org:
 +Unauthorized access is prohibited.
 +allusers_local.txt                        100%   18KB  18.2KB/  00:00
 +
 +</code>
 +the : at the end is very important because it tells the shell that is a server and not a file name. The : by itself puts the file in your home directory, but you can specify a specific path if you wanted to.
 +
 +Now to copy the file back to my computer I will use the following command. Note that this time I am also renaming the file on my computer.
 +
 +<code>
 +[Manpreet.WIN-OAOVO3NM02E] ➤ scp mkatari@hpc.ilri.cgiar.org:allusers_local.txt ./return_allusers.txt
 +Unauthorized access is prohibited.
 +allusers_local.txt                        100%   18KB  18.2KB/  00:00
 +                 
 +</code>
 +
 +====== Controlling Jobs ======
 +
 +The following commands and keyboard short-cuts can come in handing when you need to cancel, suspend, or start a job.
 +
 +^Command^Action^
 +|ctrl-C|Terminate current running job|
 +|ctrl-Z|Suspend Jobs|
 +| bg | Once a job has been suspended ''bg'' can be put in the background |
 +| fg | In order to put a background job in the foreground type ''fg''|
 +| & | When executing a command and you want to put it in the background immediately put the ''&'' symbol at the end of the command.|
 +| jobs | This gives a list of jobs (suspended, running, and terminating)|
 +| top | This starts an interface where you can see all jobs. To see all jobs under your account type ''u'' and then when prompted, your account id.
 +
 +====== Commands for manipulating and querying files ======
 +
 +Some more cool commands
 +
 +^Command^Action^
 +|less/more | read through the file without loading the entire file. Press spacebar to continue or q to quit. |
 +|touch | create an empty file |
 +|head | show the first few lines of the file|
 +|tail | show the last few lines of the file|
 +|cat | read through the file(s)|
 +|grep | search for patterns in a file or files|
 +|cut | separate file based on columns|
 +|comm/diff | compare and see the difference between the files. The files have to be sorted before using either of these commands.|
 +|split | splits file into smaller files based on the options|
 +|sort | sort the file base on the options selected.|
 +|wc | wordcount|
 +
 +
 +
 +
 +
 +
 +====== Exercise ======
 +
 +  - Download the file to your computer from the following url [[ftp://ftp.jgi-psf.org/pub/compgen/phytozome/v9.0/Mesculenta/annotation/Mesculenta_147_gene.gff3.gz]]
 +  - Transfer it to your LinuxJune2015 directory on HPC.
 +  - Gunzip the file and rename it to : Cassavagenes.txt
 +  - Determine the number of different genes are present in the file. Hint – check the third column
 +  - Save the rows that contain the word “gene” in the third column as a separate file. Call it “GeneTypes.txt”
 +  - Create a directory called “Share”
 +  - Move GeneTypes.txt into Share and change permissions on Share so others can read the file.
 ====== Some useful information about linux ====== ====== Some useful information about linux ======
 +
 +
  
 === Environment variables and PATH === === Environment variables and PATH ===
mkatari-bioinformatics-august-2013-introlinuxnotes.1433355181.txt.gz · Last modified: 2015/06/03 18:13 by mkatari