CSE 390a Lecture 3. bash shell continued: processes; multi-user systems; remote login; editors

Similar documents
CSE 391 Lecture 3. bash shell continued: processes; multi-user systems; remote login; editors

CSE 391 Editing and Moving Files

CSE 390a Lecture 2. Exploring Shell Commands, Streams, Redirection, and Processes

CSE 390a Lecture 3. Multi-user systems; remote login; editors; users/groups; permissions

CSE 303 Lecture 4. users/groups; permissions; intro to shell scripting. read Linux Pocket Guide pp , 25-27, 61-65, , 176

Introduction to Unix The Windows User perspective. Wes Frisby Kyle Horne Todd Johansen

CSE 390a Lecture 2. Exploring Shell Commands, Streams, and Redirection

CSE 391 Lecture 1. introduction to Linux/Unix environment

Intro to Linux & Command Line

Lab 2: Linux/Unix shell

Computer Systems and Architecture

CSE 391 Lecture 1. introduction to Linux/Unix environment

This lab exercise is to be submitted at the end of the lab session! passwd [That is the command to change your current password to a new one]

Using UNIX. -rwxr--r-- 1 root sys Sep 5 14:15 good_program

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

CS 460 Linux Tutorial

CSE 390a Lecture 1. introduction to Linux/Unix environment

Introduction to UNIX Shell Exercises

CSE 390a Lecture 5. Intro to shell scripting

CS Fundamentals of Programming II Fall Very Basic UNIX

Linux Command Line Primer. By: Scott Marshall

Computer Systems and Architecture

Introduction to Linux

Introduction to UNIX Command Line

Mills HPC Tutorial Series. Linux Basics I

Introduction to UNIX. Logging in. Basic System Architecture 10/7/10. most systems have graphical login on Linux machines

CS370 Operating Systems

CSE 390a Lecture 4. Persistent shell settings; users/groups; permissions

Review of Fundamentals. Todd Kelley CST8207 Todd Kelley 1

CSE 391 Lecture 5. Intro to shell scripting

Linux at the Command Line Don Johnson of BU IS&T

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

Linux Bootcamp Fall 2015

CSE 390a Lecture 6. bash scripting continued; remote X windows; unix tidbits

CSCE 212H, Spring 2008, Matthews Lab Assignment 1: Representation of Integers Assigned: January 17 Due: January 22

UNIX. The Very 10 Short Howto for beginners. Soon-Hyung Yook. March 27, Soon-Hyung Yook UNIX March 27, / 29

CSE Linux VM. For Microsoft Windows. Based on opensuse Leap 42.2

CSE 390a Lecture 4. Persistent shell settings; users/groups; permissions

CS 215 Fundamentals of Programming II Spring 2019 Very Basic UNIX

Linux Fundamentals (L-120)

Unix/Linux Operating System. Introduction to Computational Statistics STAT 598G, Fall 2011

CSE 303 Lecture 2. Introduction to bash shell. read Linux Pocket Guide pp , 58-59, 60, 65-70, 71-72, 77-80

Using LINUX a BCMB/CHEM 8190 Tutorial Updated (1/17/12)

Linux crash lecture by Andrey Lukyanenko

Unix Workshop Aug 2014

Review of Fundamentals

commands exercises Linux System Administration and IP Services AfNOG 2015 Linux Commands # Notes

Chap2: Operating-System Structures

Lecture 01 - Working with Linux Servers and Git

unix intro Documentation

An Introduction to Unix

Getting started with Hugs on Linux

Research. We make it happen. Unix Basics. User Support Group help-line: personal:

Introduction To. Barry Grant

Operating Systems Lab 1 (Users, Groups, and Security)

Perl and R Scripting for Biologists

LINUX FUNDAMENTALS (5 Day)

Introduction to UNIX/Linux

The Unix Shell & Shell Scripts

Traditional Access Permissions

CS CS Tutorial 2 2 Winter 2018

UNIX Quick Reference

CSE 390a Lecture 6. bash scripting continued; remote X windows; unix tidbits

Introduction: What is Unix?

STA 303 / 1002 Using SAS on CQUEST

1Z Oracle Linux Fundamentals (Oracle Partner Network) Exam Summary Syllabus Questions

Connecting to ICS Server, Shell, Vim CS238P Operating Systems fall 18

Introduction to the shell Part II

AMS 200: Working on Linux/Unix Machines

Traditional Access Permissions

The student will have the essential skills needed to be proficient at the Unix or Linux command line.

LAB #5 Intro to Linux and Python on ENGR

Exercise 1: Basic Tools

Review of Fundamentals. Todd Kelley CST8207 Todd Kelley 1

An Introduction to Cluster Computing Using Newton

A Brief Introduction to the Linux Shell for Data Science

Practical Session 0 Introduction to Linux

Introduction to Linux Workshop 1

CS Unix Tools. Fall 2010 Lecture 10. Hussam Abu-Libdeh based on slides by David Slater. September 29th, 2010

COSC UNIX. Textbook. Grading Scheme

CSE 351. Introduction & Course Tools

CSCI 2132 Software Development. Lecture 3: Unix Shells and Other Basic Concepts

Lab 1 Introduction to UNIX and C

Scripting Languages Course 1. Diana Trandabăț

CSC209H Lecture 1. Dan Zingaro. January 7, 2015

GNU/Linux 101. Casey McLaughlin. Research Computing Center Spring Workshop Series 2018

Getting started with Hugs on Linux

Outline. Structure of a UNIX command

Command-line interpreters

Linux Command Line Interface. December 27, 2017

Session 1: Accessing MUGrid and Command Line Basics

Part I. UNIX Workshop Series: Quick-Start

Parallel Programming Pre-Assignment. Setting up the Software Environment

Crash Course in Unix. For more info check out the Unix man pages -orhttp:// -or- Unix in a Nutshell (an O Reilly book).

Running Programs in UNIX 1 / 30

EECS Software Tools. Lab 2 Tutorial: Introduction to UNIX/Linux. Tilemachos Pechlivanoglou

Unix/Linux Basics. Cpt S 223, Fall 2007 Copyright: Washington State University

Introduction to the Linux Command Line January Presentation Topics

bash, part 3 Chris GauthierDickey

Transcription:

CSE 390a Lecture 3 bash shell continued: processes; multi-user systems; remote login; editors slides created by Marty Stepp, modified by Jessica Miller and Ruth Anderson http://www.cs.washington.edu/390a/ 1

Lecture summary A bit more on combining s Processes and basic process management Connecting to remote servers (attu) multi-user environments Text editors 2

Review: Redirection and Pipes > filename Write the output of to filename (>> to append instead) < filename Use filename as the input stream to 1 2 Use the console output of 1 as the input to 2 1 ; 2 Run 1 and then run 2 1 && 2 Run 1, if completed without errors then run 2 3

Tricky Examples The wc can take multiple files: wc names.txt student.txt Can we use the following to wc on every txt file in the directory? ls *.txt wc Amongst the top 250 movies in movies.txt, display the third to last movie that contains "The" in the title when movies titles are sorted. Find the disk space usage of the man program Hints: use which and du... Does which man du work? 4

The back-tick 1 `2` run 2 and pass its console output to 1 as a parameter; ` is a back-tick, on the ~ key; not an apostrophe best used when 2's output is short (one line) Finish the example! du `which man` 5

xargs xargs run each line of input as an argument to a specified xargs allows you to repeatedly run a over a set of lines often used in conjunction with find to process each of a set of files Example: Remove all my.class files. find ~ -name *.class xargs rm Find the disk usage of man using xargs which man xargs du 6

Processes process: a program that is running (essentially) when you run s in a shell, it launches a process for each Process management is one of the major purposes of an OS PID: 1232 Name: ls PID: 1173 Name: gedit PID: 1343 Name: man PID: 1723 Name: Mozilla PID: 1288 Name: cp 7

Process s ps or jobs top kill killall list processes being run by a user; each process has a unique integer id (PID) show which processes are using CPU/memory; also shows stats about the computer terminate a process by PID terminate several processes by name use kill or killall to stop a runaway process (infinite loop) similar to ^C hotkey, but doesn't require keyboard intervention 8

Background processes & ^Z fg, bg (special character) when placed at the end of a, runs that in the background (hotkey) suspends the currently running process resumes the currently suspended process in either the foreground or background If you run a graphical program like gedit from the shell, the shell will lock up waiting for the graphical program to finish instead, run the program in the background, so the shell won't wait: $ gedit homework1.txt & if you forget to use &, suspend gedit with ^Z, then run bg lets play around with an infinite process 9

Connecting with ssh ssh open a shell on a remote server Linux/Unix are built to be used in multi-user environments where several users are logged in to the same machine at the same time users can be logged in either locally or via the network You can connect to other Linux/Unix servers with ssh once connected, you can run s on the remote server other users might also be connected; you can interact with them can connect even from other operating systems 10

The attu server attu : The UW CSE department's shared Linux server connect to attu by typing: ssh attu.cs.washington.edu (or ssh username@attu.cs.washington.edu if your Linux system's user name is different than your CSE user name) Note: There are several computers that respond as attu (to spread load), so if you want to be on the same machine as your friend, you may need to connect to attu2, attu3, etc. 11

12 Multi-user environments whoami passwd hostname w or finger write outputs your username changes your password outputs this computer's name/address see info about people logged in to this server send a message to another logged in user Exercise : Connect to attu, and send somebody else a message.

Network s links or lynx ssh sftp or scp wget curl alpine, mail text-only web browsers (really!) connect to a remote server transfer files to/from a remote server (after starting sftp, use get and put s) download from a URL to a file download from a URL and output to console text-only email programs 13

Text editors pico or nano emacs vi or vim simple but crappy text editors More advanced text editor More advanced text editor you cannot run graphical programs when connected to attu (yet) so if you want to edit documents, you need to use a text-only editor most advanced Unix/Linux users learn emacs or vi these editors are powerful but complicated and hard to learn we recommend the simpler nano (hotkeys are shown on screen) 14

Aliases alias assigns a pseudonym to a alias name= must wrap the in quotes if it contains spaces Do not put spaces on either side of the = Example: When I type q, I want it to log me out of my shell. Example: When I type ll, I want it to list all files in long format. alias q=exit alias ll="ls -la" Exercise : Make it so that typing q quits out of a shell. Exercise : Make it so that typing woman runs man. Exercise : Make it so that typing attu connects me to attu. 15

Mounting remote files sshfs mount and interact with remote directories and files An alternate usage model to remotely connecting to servers is mounting remote directories and files and work on them locally once mounted, use remote directories and files as if they were local To mount a remote directory create a local directory to mount to mkdir csehomedir mount your remote files on your local system sshfs username@attu.cs.washington.edu:/homes/iws/username csehomedir/ 16

17 Remote editing Gnome's file browser and gedit text editor are capable of opening files on a remote server and editing them from your computer press Ctrl-L to type in a network location to open