UNIX Introduction Peter Wad Sackett.

Slides:



Advertisements
Similar presentations
Introduction to Linux command line for bioinformatics Wenjun Kang, MS Jorge Andrade, PhD 6/28/2013 Bioinformatics Core, Center.
Advertisements

Learning Unix/Linux Bioinformatics Orientation 2008 Eric Bishop.
Introduction to UNIX CSE 2031 Fall May 2015.
Introduction to Linux Alan Orth April 17, 2010 ILRI, Nairobi.
Introducing the Command Line CMSC 121 Introduction to UNIX Much of the material in these slides was taken from Dan Hood’s CMSC 121 Lecture Notes.
UNIX Introduction Peter Wad Sackett. 2DTU Systems Biology, Technical University of Denmark How a computer works ? Who cares ! You just need to use it.
Guide To UNIX Using Linux Third Edition
T UTORIAL OF U NIX C OMMAND & SHELL SCRIPT S 5027 Professor: Dr. Shu-Ching Chen TA: Samira Pouyanfar Spring 2015.
Very Quick & Basic Unix Steven Newhouse Unix is user-friendly. It's just very selective about who its friends are.
“Linux at the Command Line” Don Johnson of BU IS&T.
Introduction to Linux and Shell Scripting Jacob Chan.
Using Macs and Unix Nancy Griffeth January 6, 2014 Funding for this workshop was provided by the program “Computational Modeling and Analysis of Complex.
Introduction to Linux Workshop February Introduction Rob Lane & The HPC Support Team Research Computing Services CUIT.
Introduction A computer system consists of hardware system programs application programs.
Overview of Linux CS3530 Spring 2014 Dr. José M. Garrido Department of Computer Science.
Help session: Unix basics Keith 9/9/2011. Login in Unix lab  User name: ug0xx Password: ece321 (initial)  The password will not be displayed on the.
Linux environment ● Graphical interface – X-window + window manager ● Text interface – terminal + shell.
Essential Unix at ACEnet Joey Bernard, Computational Research Consultant.
Chapter Four UNIX File Processing. 2 Lesson A Extracting Information from Files.
Guide To UNIX Using Linux Fourth Edition
Dedan Githae, BecA-ILRI Hub Introduction to Linux / UNIX OS MARI eBioKit Workshop; Nov , 2014.
PROGRAMMING PROJECT POLICIES AND UNIX INTRO Sal LaMarca CSCI 1302, Fall 2009.
Session 2 Wharton Summer Tech Camp Basic Unix. Agenda Cover basic UNIX commands and useful functions.
Unix/Linux cs3353. The Shell The shell is a program that acts as the interface between the user and the kernel. –The shell is fully programmable and will.
1 CSE 303 Lecture 3 bash shell continued: processes; multi-user systems; combining commands read Linux Pocket Guide pp , , , 118, 122,
Lecture 24CS311 – Operating Systems 1 1 CS311 – Lecture 24 Outline Final Exam Study Guide Note: These lecture notes are not intended replace your notes.
Chapter Four I/O Redirection1 System Programming Shell Operators.
Introduction to Programming Using C An Introduction to Operating Systems.
Basic of UNIX For fresh members of SPARCS
AN INTRO TO UNIX/LINUX COMMANDS BY: JIAYANG WANG.
 Last lesson, the Windows Operating System was discussed along with the Windows command shell  Unix is a computer operating system, that similarly manages.
1 CS3695 – Network Vulnerability Assessment & Risk Mitigation – Introduction to Unix & Linux.
Lecture 1: Introduction, Basic UNIX Advanced Programming Techniques.
Introduction to Linux Workshop February 15, 2016.
1 CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
CS 120 Extra: The CS1 Server Tarik Booker CS 120.
Learning Unix/Linux Based on slides from: Eric Bishop.
Intro to GNU/Linux See, Stallman? I said GNU. Are you happy now?
Using Linux Kaya Oğuz Room: 310.
Introduction to the Linux Command Line Interface Research Computing Systems Bob Torgerson July 19, 2016.
Overview of Linux Fall 2016 Dr. Donghyun Kim
UNIX To do work for the class, you will be using the Unix operating system. Once connected to the system, you will be presented with a login screen. Once.
Tutorial of Unix Command & shell scriptS 5027
Linux Commands Help HANDS ON TRAINING Author: Muhammad Laique
Andy Wang Object Oriented Programming in C++ COP 3330
Some Linux Commands.
C151 Multi-User Operating Systems
Introduction to Linux Dr Karina Kubiak - Ossowska
CSE 303 Concepts and Tools for Software Development
Tutorial of Unix Command & shell scriptS 5027
Basic UNIX OLC Training.
UNIX Introduction Peter Wad Sackett.
Tutorial of Unix Commands
Tutorial of Unix Command & shell scriptS 5027
Introduction to Linux Week 0 - Thursday.
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
Tutorial of Unix Command & shell scriptS 5027
Introduction to Linux/UNIX
Introduction to Computer Organization & Systems
Chapter Four UNIX File Processing.
Andy Wang Object Oriented Programming in C++ COP 3330
Tutorial Unix Command & Makefile CIS 5027
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
Yung-Hsiang Lu Purdue University
CSE 303 Concepts and Tools for Software Development
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller.
Introduction to Linux Commands
LPI Linux Certification
Presentation transcript:

UNIX Introduction Peter Wad Sackett

History of UNIX Emerged in 1971 from a more complex system (which failed). Lead designers: Ken Thompson & Dennis Ritchie Generally used in the public and private sector. Linux emerged in 1991 by effort of Linus Torvalds. Many different UNIX versions exists. By now, Linux is the main UNIX platform. Reason; free and good. But does the history of UNIX matter ! Not really, except from the effect it has had on Open Source. A set of enabling technologies first developed at AT&T that have been incorporated into several legally distinct but closely related operating systems, each of which can be considered to be a "UNIX system." If it looks like UNIX, operates like UNIX, runs common UNIX utilities and programs, and is developed with UNIX as a model, it's UNIX. Seth T. Ross

Reasons to learn UNIX

Better reasons Automation Stability Development Large tool set Free(dom) Mastery of UNIX, like mastery of language, offers real freedom. The price of freedom is always dear, but there’s no substitute. Personally, I’d rather pay for my freedom than live in a bitmapped, pop-up-happy dungeon like Windows. I’m hoping that as IT folks become more seasoned and less impressed by superficial convenience at the expense of real freedom, they will yearn for the kind of freedom and responsibility UNIX allows. When they do, UNIX will be there to fill the need. Thomas Scoville

Get to it; The Shell Command line interface Everything has to be typed File system navigation Many simple tools available Tab completion Repeating commands Copy/Paste

File system navigation Listing files ls ls –l The path Changing directories cd <folder> Creating directories mkdir <folder> Deleting directories rmdir <folder> Where are you? pwd Why are you here? Sorry, no answer to that one

File handling Coping files cp <file> <destination> Moving/renaming files mv <file> <destination> Deleting files rm <file> Changing file permissions. chmod <options> <file>

File inspection Seeing the top of the file head <file> Seeing the end of the file tail <file> Seeing all of the file cat <file> Inspecting the file less <file> You can browse up and down in the file with PgUp/b and PgDn/space, search with /, but most importantly exit the application with q. G goes to the top and g to the bottom.

Editors Grahpical editors (using X) nedit <file> gedit <file> Pro: easy to use. Con: requires good bandwidth on the network Also jEdit, Kwrite, TextWrangler (mac). Text based editors vim <file> emacs <file> Also vi, Elvis, jove, ed. Pro: works fine on poor network. Con: hard to learn

Working with the file Counting the lines/words/bytes in the file wc <file> Merging files paste <file1> <file2> Extracting columns from a file cut <options> <file> Usually used as ’cut –f2,4 myfile.txt’ on tab files Sorting files Sort <file> Extracting lines from a file grep <pattern> <file> This is an incredibly useful command, very versatile.

A closer look at grep and patterns Many versions of grep – different capabilities grep HUMAN <file> Lines containing HUMAN, like POSTHUMAN grep –v HUMAN Lines without HUMAN grep –c HUMAN Count lines with HUMAN grep ”^HUMAN” Lines starting with HUMAN grep ”HUMAN$” Lines ending with HUMAN grep –e/E Regular expressions . any single char + one or more of preceeding char * zero or more of preceeding char grep –e ”H.+MAN” Matches HEMAN, HUMAN, HITMAN, etc

IO redirection and pipes Every program has STDIN, STDOUT and STDERR They are file streams – streams/lines of data. Defaults; STDIN = keyboard, STDOUT, STDERR = screen Save output of a command in a file; > grep HUMAN orphans.sp > humanproteins.txt Append to the file with >> Feed a file to a command; < wc < humanproteins.txt Pipe (stream) the output of one command to the next command; | grep HUMAN orphans.sp | wc The pipe sign does not separate the commands, it connects them.

Miscellaneous Downloading files from the internet wget <URL> An URL is the link you see in the browser. Printing text to the screen echo <text> Getting time and date information date Seeing what programs are running ps Stopping them kill <pid>

Remote computers Logging in to remote computers. ssh -X <username>@<hostname> This will start a shell on the remote computer if you have an account on the machine. Transferring files to and from other computers. ftp <hostname> Give your username and password to the remote computer. You use the keywords "put” and "get" for file transfer. An encrypted and therefore secure alternative is sftp. sftp <username>@<hostname> You will be prompted for password, but the functionality of ftp and sftp is the same.

More information and help The UNIX manual man <command> The manual is shown with less. Also try google: man <command> whatis <command> Single line description of the command Plenty of UNIX guides on the net. Here are some of the best. http://www.ee.surrey.ac.uk/Teaching/Unix/ http://unixhelp.ed.ac.uk/ Google is your friend.