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
Next revisionBoth sides next revision
mkatari-bioinformatics-august-2013-introlinuxnotes [2013/08/13 15:58] mkatarimkatari-bioinformatics-august-2013-introlinuxnotes [2015/06/03 18:11] mkatari
Line 1: Line 1:
-====== Introduction to Linux ======+[[mkatari-bioinformatics-august-2013|Back to Manny's Bioinformatics Workshop Home]] 
 + 
 +====== What is Linux ? ====== 
 + 
 +It is a free and open source operating system released in 1991 under the GNU GPL license.GPL allows anyone to use, modify and redistribute with the requirement that they pass it on with the same license. 
 + 
 +It is the leading operating system of choice for servers such as supercomputers. 
 +More than 90% of the top 500 fastest computers are based on Linux
 + 
 +MAC computers are related to Linux because they are also based on UNIX 
 + 
 +Depending on the purpose of the Linux machine, it may or may not have a Desktop environment that we are familiar with on our personal computers. Linux uses X Window System to provide the Desktop environment.  
 + 
 +A popular distribution of Linux operating system is called Ubuntu. 
 + 
 +REF: [[http://en.wikipedia.org/wiki/Linux]] 
 + 
 +====== Why do bioinformaticians use Linux? ====== 
 + 
 +  * Many bioinformatics core tools are written in Linux. 
 +      * BLAST, CLUSTALW, PHRAP, etc 
 +      * Many web applications are also supported on web servers hosted on linux machines 
 +  * Linux supports development of software for many different programming languages. 
 +      * Developers are lazy so creating a software that does not require a window is much faster and easier 
 + 
 +  * Multiple users can log in at the same time. 
 +      * A user logging in over the network can do just about anything a user sitting in front of the computer can do. Which also means linux handles multitasking very well. 
 + 
 + 
 +====== Remote vs. Local ====== 
 + 
 +{{:servercomputerrelation.png?600|}} 
 + 
 +====== The Linux 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. 
 + 
 +===== Command Line Editing ===== 
 + 
 +The command is only executed once you press enter. Till then you can edit the line by using the following key strokes: 
 + 
 +^Action ^Result ^ 
 +|Backspace (delete on MACs) |delete previous character| 
 +|Left Arrow, Right Arrow| move left and right on lines | 
 +|Up Arrow, down Arrow| previous and following command| 
 +|Ctrl-A| go to front of line| 
 +|Ctrl-E| go to end of line| 
 +|Ctrl-D| delete next character| 
 +|Ctrl-K| delete everything to the right of the character| 
 +|Ctrl-Y| paste| 
 +|Ctrl-C| stop a running job| 
 + 
 +Once you press enter the program will be executed. When your prompt returns, you know that the program has finished. If there is an output to the program it usually prints it on the screen (often referred to as the standard output) 
 + 
 +In the example below, ''date'' is a command that is being executed with no arguments. Many commands/programs have options that are provided immediately following the command. In the ''ls -l'' example, ls is the command and everything else are options that are provided. 
 + 
 +<code> 
 +[mkatari@hpc ~]$ date 
 +Wed Jun  3 21:10:57 EAT 2015 
 +[mkatari@hpc ~]$ ls -l 
 +total 19443152 
 +-rw-rw-r--. 1 mkatari mkatari      16263 Jun  3 16:29 03-06-2015.pdf 
 +-rw-rw-r--. 1 mkatari mkatari     990646 Jun 12  2014 _1.fastq 
 +-rw-rw-r--. 1 mkatari mkatari     381856 Jun 12  2014 _2.fastq 
 +</code> 
 + 
 +====== Logging in with X Windows ====== 
 + 
 +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 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 ~]$ 
 +</code> 
 + 
 +You should have a window popup on your computer that looks something like this. 
 + 
 +{{:emacswindow.png?300|}} 
 + 
 +====== 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. 
 + 
 + 
 + 
 + 
 + 
 +====== Some useful information about linux ======
  
 === Environment variables and PATH === === Environment variables and PATH ===
mkatari-bioinformatics-august-2013-introlinuxnotes.txt · Last modified: 2015/06/11 11:50 by mkatari