system or read a good Unix book from the DESY library (e.g. Mark Sobell, APractical Guide to
|
|
|
- Adrian McCarthy
- 10 years ago
- Views:
Transcription
1 Introduction to Unix at DESY There are only a few commands that you have to know in order to get started on Unix. These will be presented in this introduction. For a more detailed description of the syntax of the commands and the available options, you can consult the help les (so called manual pages) on the computer system or read a good Unix book from the DESY library (e.g. Mark Sobell, APractical Guide to Unix System V or W. Abrahams and B.R. Larson, Unix for the Impatient). Unix commands sometimes have cryptic names and a very strict calling sequence for their options and parameters. The commands are case sensitive, as are the le names on the system, but most of the Unix commands are all lower case letters. Options are usually preceded by a{(minus) sign, or sometimes by a + (plus) sign. The general syntax is: command {options parameters but of course there are exceptions. Most commands allow more than one option. These options can either be put individually on the command line (e.g. cmd ) or combined to a single option string (e.g. cmd ). File and Directory Names Unix has a tree like le and directory structure, where you can address any le or directory with its absolute path name starting at the le system root (denoted by /), or with a name relative toyour current position in the le tree. Examples:. the dot denotes the current working directory.. two dots denote the directory above the current one /usr/local/bin/xrsh is an absolute path name for the command le xrsh subdir is the name of a subdirectory below the current one../otherdir is a directory parallel to the current one your home directory username home directory of another user.controlle name of a control le in the current directory (e.g. for mail, editors, etc) usually these "dot les" are found in the home directory Manipulate Files Wildcards (? single character, * word) are very useful in handling les. Be very careful when you use wildcards with the copy, move, or remove command. Unix will delete or overwrite existing les without warning. cat name head name tail name less name cp name newname mv name newname rm name le name nd path-name expression locate name ln name newname list le with name name list rst 10 lines of le (option -number, e.g. head -20 for rst 20 lines) list last 10 lines of le (option -number, e.g. tail -20 for last 20 lines) tail -f continuously lists the end of a le list le page by page (other pagers are more, pg) copy le to new name or new directory move le to new name or new directory remove le (option -i will prompt you before deletion) analyze le type and contents nd a le in the le tree (relatively slow) locate a le in the le tree (fast, based on a periodically updated list) link an existing le with name name to a new location/name newname Introduction to Unix at DESY 1
2 Manipulate Directories mkdir name rmdir name cd name pwd ls name create a directory with name name remove the (empty) directory with name name change to working directory with name name print (=list) name of the current working directory list contents of the directory with the name name if name is omitted, the current working directory is listed. (options -l long detailed listing, -a lists also dot les) e.g. ls -al will list all les in the current directory in the long form Editors There is a large variety of editors on Unix. The basic editor vi is cryptic to learn but very powerful, while other editors, like pico, are very easy to learn but have only a limited number of commands. The editor that is recommended because of its widespread usage on all kinds of Unix platforms and VMS is emacs. vi pico emacs xedit ted standard Unix editor (see USG/93/01) an easy to use editor (see USG/93/02) the recommended editor (see emacs reference card and USG/93/07) an X based editor a Motif style editor Shells The interaction between the user and the Unix system is controlled by a program called shell. There are two basic families of shells, the Bourne shell and the C shell family. High level shells are recommended for interactive work, while shell scripts should be written in a low level shell (sh). At DESY the following shells are supported: sh ksh zsh csh tcsh basic Bourne shell Korn shell, which is a Bourne shell with additions Z shell, which is a Bourne shell with more additions basic C shell C shell with many additions Printing All PostScript printers at DESY are accessible from all computer platforms. The print request is spooled via central print servers which recognise various formats (e.g. text, PostScript, dvi, metales, etc.) and print them accordingly. lp name lpr name lpdest lpq (lpstat) lprm (cancel) print le (on System V Unix systems) options: -dprinter, -nnumber-of-copies, -odesy-option e.g. lp -dr02ps3 -n5 -oc name will print 5 copies of the le name on r02ps3 in a compressed format print le (on BSD Unix systems) options: -Pprinter e.g. lpr -Pr02ps3 lename will print on r02ps3 list all printer destinations (DESY command) list jobs on the print queue submitted by lpr (lp) remove job from the print queue submitted by lpr (lp) Introduction to Unix at DESY 2
3 Manipulate Variables The behaviour of programs and of the shell is controlled by variables or environment variables. Variables in the Bourne shell family have upper case names while variables in the C shell family have lower case names. Variables are only valid for the current shell, while the values of environment variables are accessible on all subshells. echo $VAR list value of variable VAR (remember: variable names are case sensitive) VAR=value set variable VAR (in Bourne shell family ) set var=value set variable var (in C shell family) export VAR export value of variable VAR to the environment (in Bourne shell family ) setenv var value export value of variable var to the environment (in C shell family) set list values of all local variables env list values of all environment variables Command Execution Commands can be executed in the foreground or the background. In foreground execution, input is read from the keyboard and output is written to the screen. If the command does not need input, the keyboard is locked until the command execution is nished. To avoid the keyboard locking, commands can be placed in the background for execution. This is achieved by appending an ampersand (&) to the end of the command. Examples: ls -al mosaic & will be executed in the foreground will be executed in the background Whenever a command is executed, the system will start a process and assign a unique process id (pid) to it. For commands which are executed in the background, a job number will be assigned in addition. Background commands can be monitored on all but the Bourne shell with the following commands: jobs get a list of all background commands, where the returned lines mean: [job-number] process-id status command-name stop %n stop job with job number n, can be restarted with bg %n kill %n kill job with job number n notify %n request notication from job n if status changes fg %n move job n to the foreground and restart if necessary All processes can be manipulated with the following commands: ps ps -ef ps -aux kill pid ctrl-z bg list all processes started from your current window produce a full listing of all processes on the (System V) machine produce a full listing of all processes on the (BSD) machine kill command with process id pid stop current foreground command move current stopped foreground process to the background and restart Note: background does not imply batch. All jobs for H1/ZEUS should be started using the NQS batch system. Redirection and Piping In Unix, the output of a command is usually written to the screen and the input usually given from the keyboard. Error messages are printed to a le called standard error (usually the screen). These standard le assignments can be redirected to or from any other le by the usage of a less-than-sign Introduction to Unix at DESY 3
4 (<) or a greater-than-sign (>) preceded by a 1 (optional) for standard output and 2 for standard error. On csh and tcsh the standard error cannot be redirected independently of the standard output. cmd <le-in >le-out cmd >>le-out cmd 1>le-out 2>error cmd >&le-out-err will get its input from le-in and write its output to le le-out will append the output to an existing le le-out will write output to a le with the name le-out and error messages to a le with the name error will write output and error messages to a le with the name le-out-err Instead of redirecting the output to a le, it could also be redirected to the input stream of another command. This is called piping and the piping symbol is a vertical bar (j). It is quite often used for listing the output page-by-page or executing search commands, e.g. ps -ef j grep string news X11 j less will look for a string in the list of all processes will list the news item about X11 page-by-page How to Get Help The standard way to get help on a Unix machine is with the so called manual pages. If the manual page for a command is installed on a system, you will get this manual page by typing: man name-of-the-command The disadvantage of the man command is that you need the exact spelling of the command name in order to read the corresponding manual page. If you don't know the name of the command you are looking for, some machines allow for an index-driven search for the manual page: apropos keyword man -k keyword xman info xinfo insight will produce a list of manual pages containing this keyword will produce a list of manual pages containing this keyword an X-based manual browser tool (click on help-button to get help) description for GNU products an X-based description for GNU products a Motif interface to the SGI documentation Network Access On the network there are two types of host: those who have a trusted relationship to each other and those who do not. The system administrator of a host will establish a trusted relationship only if all userids on the related hosts are unique. With the help of the.rhosts le you yourself can establish a trusted relationship between single users on single hosts. The.rhosts le should only be writeable by the user (i.e. the le should have the protection -rw-r--r--). The entries in this le consist of hostname username pairs. telnet hostname create an interactive connection to a remote host rlogin hostname create an interactive connection to a trusted host 3270 hostname create an interactive connection to an IBM host xrsh hostname create a connection to a trusted host with full X access ftp hostname copy les from or to a remote host rcp le1 le2 copy les from or to a trusted host, the lenames on other hosts can be specied as userid@host:lename or host:lename Introduction to Unix at DESY 4
5 Miscellaneous Commands chmod rights le passwd who nger last grep string le di le1 le2 cmp le1 le2 sort cut uc df du [-k] tar cpio (un)compress which name wc talk Text Formatting and Displaying latex xdvi dvips a2ps ghostview change access rights (whoright) of les or directories, e.g. chmod g+x lename will add execution right for members of the same group change your password list all logged in users on local machine list information about users on local or remote machines display last login information of users on the system nd a string or regular pattern in a le display dierences between two text les display dierences between two binary les sort les in lexical/numerical order skipping elds/characters cut out columns, characters, etc from a le uncosyfy NEWLIB members which have been copied with ftp from the IBM display free space on disk display space used by directories and les [in kilobytes] tape le archiver (les with name name.tar) copy le archives in and out compress or uncompress les (les with name name.z) display the full path name for the command with name name count lines, words, and characters in a le talk to another user on a remote host run LaT E X display dvi les on an X-terminal create a PostScript le from a dvi le convert ASCII text to PostScript for printing (good for manual pages) the command will send the PostScript output directly to the printer e.g. man a2ps j a2ps will print the manual pages for a2ps display PostScript les on an X-terminal Electronic Mail and Information Services There is a wide variety ofmailinterfaces on Unix. The standard mail or mailx are not recommended. Instead try using one of the programs mentioned in the following table: pine elm mh xmh mmh vm a simple program using the pico editor a wide spread electronic mail program another mail message handling system an X based mail interface to mh a Motif style interface to mh a mail interface for emacs Important system messages are displayed when you log on to the system. This message-of-today can be reviewed with the command less /etc/motd. Other more long-term system news are kept in the local news system, while information which should be accessible on more than one computer is posted to one of the DESY newsgroups. These newsgroups are readable from mosaic and any of the many newsreaders, and to post messages you have to invoke one of the newsreaders listed below. None of the newsreader, however, is completely satisfactory. We recommened tin if you are a rst time user or mosaic if you only want to read newsgroups. Introduction to Unix at DESY 5
6 less /etc/motd news mosaic tin xrn mxrn gnus display message-of-today display system news a Motif style document browsing program, netnews reader, information source, phonebook interface,... (see USG/93/06) a netnews interface for VT style terminals an X based newsreader a Motif style newsreader a netnews interface for emacs Programming C and fortran programs can easily be maintained and run under Unix. To run a program you just type the name of the executable. The program is compiled and linked with the same command: cc progname CC progname f77 progname C compiler, e.g. cc myprog.c compiles the C program myprog.c and creates an executable named a.out C++ compiler fortran 77 compiler, e.g. f77-omyprog myprog.f -L/cern/pro/lib -lpacklib compiles and links a fortran program myprog.f with the CERN packlib and creates an executable with the name myprog Some compiler options are used frequently, others are machine dependent. In the next table some of the most common options are listed: -o name change the name of the executable from a.out to name -static allocate local variables statically and set value to zero -Olevel set the optimize level -g create additional symbol table for debugging -c just compile and produce an object le with the ending.o -lname use the library libname.a for linking -L dir directory where the libname.a libraries are kept (on HP only available for fort77 compiler, not for f77) the cernlibs are in /cern/pro/lib or /usr/local/cern/pro/lib the naglib is in /usr/local/naglib Other options can be found by consulting the corresponding manual pages for the compiler. If you have to maintain a larger program which consists of many subroutines and header les (some of which may be dependent oneach other), you might want to put down the creation rules for the program executable in a le called makele and keep your object codes in a private library. make ar option library les dbx gdb cvd maintain, update, and regenerate groups of programs see man make and USG documentation (USG/93/11) archive objectlesinlibrary, options are: t - table of contents of archive r - replace le in archive d - delete le from archive e.g. ar r libmylib.a sub.o will replace subroutine sub.o in libary mylib a debugger a GNU debugger a debugger with Motif interface To use any of the debuggers your program needs to be compiled with the -g option. Note that this will enlarge the size of the executable. Introduction to Unix at DESY 6
Cisco Networking Academy Program Curriculum Scope & Sequence. Fundamentals of UNIX version 2.0 (July, 2002)
Cisco Networking Academy Program Curriculum Scope & Sequence Fundamentals of UNIX version 2.0 (July, 2002) Course Description: Fundamentals of UNIX teaches you how to use the UNIX operating system and
Thirty Useful Unix Commands
Leaflet U5 Thirty Useful Unix Commands Last revised April 1997 This leaflet contains basic information on thirty of the most frequently used Unix Commands. It is intended for Unix beginners who need a
Unix Sampler. PEOPLE whoami id who
Unix Sampler PEOPLE whoami id who finger username hostname grep pattern /etc/passwd Learn about yourself. See who is logged on Find out about the person who has an account called username on this host
Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer
Fred Hantelmann LINUX Start-up Guide A self-contained introduction With 57 Figures Springer Contents Contents Introduction 1 1.1 Linux Versus Unix 2 1.2 Kernel Architecture 3 1.3 Guide 5 1.4 Typographical
USEFUL UNIX COMMANDS
cancel cat file USEFUL UNIX COMMANDS cancel print requested with lp Display the file cat file1 file2 > files Combine file1 and file2 into files cat file1 >> file2 chgrp [options] newgroup files Append
Tutorial 0A Programming on the command line
Tutorial 0A Programming on the command line Operating systems User Software Program 1 Program 2 Program n Operating System Hardware CPU Memory Disk Screen Keyboard Mouse 2 Operating systems Microsoft Apple
Introduction to Mac OS X
Introduction to Mac OS X The Mac OS X operating system both a graphical user interface and a command line interface. We will see how to use both to our advantage. Using DOCK The dock on Mac OS X is the
Hands-On UNIX Exercise:
Hands-On UNIX Exercise: This exercise takes you around some of the features of the shell. Even if you don't need to use them all straight away, it's very useful to be aware of them and to know how to deal
ICS 351: Today's plan
ICS 351: Today's plan routing protocols linux commands Routing protocols: overview maintaining the routing tables is very labor-intensive if done manually so routing tables are maintained automatically:
Command Line Crash Course For Unix
Command Line Crash Course For Unix Controlling Your Computer From The Terminal Zed A. Shaw December 2011 Introduction How To Use This Course You cannot learn to do this from videos alone. You can learn
UNIX Tutorial for Beginners
UNIX Tutorial for Beginners Typographical conventions In what follows, we shall use the following typographical conventions: Characters written in bold typewriter font are commands to be typed into the
Introduction to the UNIX Operating System on IT Systems
Information Technology Rice University Document UNIX 1 June 21, 2000 Introduction to the UNIX Operating System on IT Systems This document is intended to introduce you to the UNIX operating system. It
Linux command line. An introduction to the Linux command line for genomics. Susan Fairley
Linux command line An introduction to the Linux command line for genomics Susan Fairley Aims Introduce the command line Provide an awareness of basic functionality Illustrate with some examples Provide
Fundamentals of UNIX Lab 16.2.6 Networking Commands (Estimated time: 45 min.)
Fundamentals of UNIX Lab 16.2.6 Networking Commands (Estimated time: 45 min.) Objectives: Develop an understanding of UNIX and TCP/IP networking commands Ping another TCP/IP host Use traceroute to check
Birmingham Environment for Academic Research. Introduction to Linux Quick Reference Guide. Research Computing Team V1.0
Birmingham Environment for Academic Research Introduction to Linux Quick Reference Guide Research Computing Team V1.0 Contents The Basics... 4 Directory / File Permissions... 5 Process Management... 6
Command Line - Part 1
Command Line - Part 1 STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat Course web: gastonsanchez.com/teaching/stat133 GUIs 2 Graphical User Interfaces
Introduction to Unix Tutorial
Topics covered in this Tutorial Introduction to Unix Tutorial 1. CSIF Computer Network 2. Local Logging in. 3. Remote computer access: ssh 4. Navigating the UNIX file structure: cd, ls, and pwd 5. Making
HP-UX Essentials and Shell Programming Course Summary
Contact Us: (616) 875-4060 HP-UX Essentials and Shell Programming Course Summary Length: 5 Days Prerequisite: Basic computer skills Recommendation Statement: Student should be able to use a computer monitor,
RECOVER ( 8 ) Maintenance Procedures RECOVER ( 8 )
NAME recover browse and recover NetWorker files SYNOPSIS recover [-f] [-n] [-q] [-u] [-i {nnyyrr}] [-d destination] [-c client] [-t date] [-sserver] [dir] recover [-f] [-n] [-u] [-q] [-i {nnyyrr}] [-I
An Introduction to the Linux Command Shell For Beginners
An Introduction to the Linux Command Shell For Beginners Presented by: Victor Gedris In Co-Operation With: The Ottawa Canada Linux Users Group and ExitCertified Copyright and Redistribution This manual
Tutorial Guide to the IS Unix Service
Tutorial Guide to the IS Unix Service The aim of this guide is to help people to start using the facilities available on the Unix and Linux servers managed by Information Services. It refers in particular
AN INTRODUCTION TO UNIX
AN INTRODUCTION TO UNIX Paul Johnson School of Mathematics September 24, 2010 OUTLINE 1 SHELL SCRIPTS Shells 2 COMMAND LINE Command Line Input/Output 3 JOBS Processes Job Control 4 NETWORKING Working From
A UNIX/Linux in a nutshell
bergman p.1/23 A UNIX/Linux in a nutshell Introduction Linux/UNIX Tommi Bergman tommi.bergman[at]csc.fi Computational Environment & Application CSC IT center for science Ltd. Espoo, Finland bergman p.2/23
Some basic unix commands
Angling may be said to be so like the mathematics, that it can never be fully learnt. So is UNIX. IZAAK WALTON K. Nandakumar Appendix C Some basic unix commands C.1 Introduction to the shell and the desktop
An A-Z Index of the Apple OS X command line (TERMINAL) The tcsh command shell of Darwin (the open source core of OSX)
An A-Z Index of the Apple OS X command line (TERMINAL) The tcsh command shell of Darwin (the open source core of OSX) alias alloc awk Create an alias List used and free memory Find and Replace text within
Basic C Shell. [email protected]. 11th August 2003
Basic C Shell [email protected] 11th August 2003 This is a very brief guide to how to use cshell to speed up your use of Unix commands. Googling C Shell Tutorial can lead you to more detailed information.
University of Toronto
1 University of Toronto APS 105 Computer Fundamentals A Tutorial about UNIX Basics Fall 2011 I. INTRODUCTION This document serves as your introduction to the computers we will be using in this course.
CS 103 Lab Linux and Virtual Machines
1 Introduction In this lab you will login to your Linux VM and write your first C/C++ program, compile it, and then execute it. 2 What you will learn In this lab you will learn the basic commands and navigation
UNIX / Linux commands Basic level. Magali COTTEVIEILLE - September 2009
UNIX / Linux commands Basic level Magali COTTEVIEILLE - September 2009 What is Linux? Linux is a UNIX system Free Open source Developped in 1991 by Linus Torvalds There are several Linux distributions:
Linux Overview. Local facilities. Linux commands. The vi (gvim) editor
Linux Overview Local facilities Linux commands The vi (gvim) editor MobiLan This system consists of a number of laptop computers (Windows) connected to a wireless Local Area Network. You need to be careful
A Crash Course on UNIX
A Crash Course on UNIX UNIX is an "operating system". Interface between user and data stored on computer. A Windows-style interface is not required. Many flavors of UNIX (and windows interfaces). Solaris,
Extreme computing lab exercises Session one
Extreme computing lab exercises Session one Miles Osborne (original: Sasa Petrovic) October 23, 2012 1 Getting started First you need to access the machine where you will be doing all the work. Do this
Beginners Shell Scripting for Batch Jobs
Beginners Shell Scripting for Batch Jobs Evan Bollig and Geoffrey Womeldorff Before we begin... Everyone please visit this page for example scripts and grab a crib sheet from the front http://www.scs.fsu.edu/~bollig/techseries
Introduction to the UNIX Operating System and Open Windows Desktop Environment
Introduction to the UNIX Operating System and Open Windows Desktop Environment Welcome to the Unix world! And welcome to the Unity300. As you may have already noticed, there are three Sun Microsystems
CS10110 Introduction to personal computer equipment
CS10110 Introduction to personal computer equipment PRACTICAL 4 : Process, Task and Application Management In this practical you will: Use Unix shell commands to find out about the processes the operating
Unix Shell Scripts. Contents. 1 Introduction. Norman Matloff. July 30, 2008. 1 Introduction 1. 2 Invoking Shell Scripts 2
Unix Shell Scripts Norman Matloff July 30, 2008 Contents 1 Introduction 1 2 Invoking Shell Scripts 2 2.1 Direct Interpretation....................................... 2 2.2 Indirect Interpretation......................................
Basic Linux and Unix commands, editing and transfering files
First version: February 3, 2002 Last update: February 5, 2010 PATRICIA LEDESMA LIÉBANA Basic Linux and Unix commands, editing and transfering files The most recent version of this document can be found
Setting up PostgreSQL
Setting up PostgreSQL 1 Introduction to PostgreSQL PostgreSQL is an object-relational database management system based on POSTGRES, which was developed at the University of California at Berkeley. PostgreSQL
Unix Scripts and Job Scheduling
Unix Scripts and Job Scheduling Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh [email protected] http://www.sis.pitt.edu/~spring Overview Shell Scripts
Debian and Windows Shared Printing mini HOWTO
Debian and Windows Shared Printing mini HOWTO Ian Ward 2005 07 01 Revision History Revision 1.6 2005 07 01 Revised by: iw Clarified hpijs requirement, added lpinfo and lpoptions
Open Source Computational Fluid Dynamics
Open Source Computational Fluid Dynamics An MSc course to gain extended knowledge in Computational Fluid Dynamics (CFD) using open source software. Teachers: Miklós Balogh and Zoltán Hernádi Department
INASP: Effective Network Management Workshops
INASP: Effective Network Management Workshops Linux Familiarization and Commands (Exercises) Based on the materials developed by NSRC for AfNOG 2013, and reused with thanks. Adapted for the INASP Network
Progress Database Overview
Progress Database Overview Section 4 Introduction Release Contents The interface to the Progress relational database is an application tool available as an option only on the 40AP6400 hardware platform.
Linux System Administration. System Administration Tasks
System Administration Tasks User and Management useradd - Adds a new user account userdel - Deletes an existing account usermod - Modifies an existing account /etc/passwd contains user name, user ID #,
Introduction to Operating Systems
Introduction to Operating Systems It is important that you familiarize yourself with Windows and Linux in preparation for this course. The exercises in this book assume a basic knowledge of both of these
Linux System Administration on Red Hat
Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,
List of FTP commands for the Microsoft command-line FTP client
You are on the nsftools.com site This is a list of the commands available when using the Microsoft Windows command-line FTP client (requires TCP/IP to be installed). All information is from the Windows
Training Day : Linux
Training Day : Linux Objectives At the end of the day, you will be able to use Linux command line in order to : Connect to «genotoul» server Use available tools Transfer files between server and desktop
LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics:
Topics: LECTURE-7 Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. BASIC INTRODUCTION TO DOS OPERATING SYSTEM DISK OPERATING SYSTEM (DOS) In the 1980s or early 1990s, the operating
Unix Guide. Logo Reproduction. School of Computing & Information Systems. Colours red and black on white backgroun
Logo Reproduction Colours red and black on white backgroun School of Computing & Information Systems Unix Guide Mono positive black on white background 2013 Mono negative white only out of any colou 2
CMSC 216 UNIX tutorial Fall 2010
CMSC 216 UNIX tutorial Fall 2010 Larry Herman Jandelyn Plane Gwen Kaye August 28, 2010 Contents 1 Introduction 2 2 Getting started 3 2.1 Logging in........................................... 3 2.2 Logging
UNIX: Introduction to TELNET and FTP on UNIX
Introduction to TELNET and FTP on UNIX SYNOPSIS This document is written with the novice user in mind. It describes the use of TCP/IP and FTP to transfer files to and from the UNIX operating system and
UNIX Comes to the Rescue: A Comparison between UNIX SAS and PC SAS
UNIX Comes to the Rescue: A Comparison between UNIX SAS and PC SAS Chii-Dean Lin, San Diego State University, San Diego, CA Ming Ji, San Diego State University, San Diego, CA ABSTRACT Running SAS under
File Manager User Guide
File Manager User Guide Please note: EasySiteOptimizer Version 1.6 is supplied with Web Hosting (IBP) and Advanced Web Hosting only. File Manager Introduction to File Manager To access File Manager, select
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
File Transfer Protocol. What is Anonymous FTP? What is FTP?
File Transfer Protocol (FTP) File Transfer Protocol Sometimes browsing for information is not sufficient you may want to obtain copies of software programs or data files for your own use and manipulation.
WS_FTP Professional 12
WS_FTP Professional 12 Tools Guide Contents CHAPTER 1 Introduction Ways to Automate Regular File Transfers...5 Check Transfer Status and Logs...6 Building a List of Files for Transfer...6 Transfer Files
Introduction to Linux and Cluster Basics for the CCR General Computing Cluster
Introduction to Linux and Cluster Basics for the CCR General Computing Cluster Cynthia Cornelius Center for Computational Research University at Buffalo, SUNY 701 Ellicott St Buffalo, NY 14203 Phone: 716-881-8959
Secure File Transfer Installation. Sender Recipient Attached FIles Pages Date. Development Internal/External None 11 6/23/08
Technical Note Secure File Transfer Installation Sender Recipient Attached FIles Pages Date Development Internal/External None 11 6/23/08 Overview This document explains how to install OpenSSH for Secure
Lab 1: Introduction to the network lab
CSCI 312 - DATA COMMUNICATIONS AND NETWORKS FALL, 2014 Lab 1: Introduction to the network lab NOTE: Be sure to bring a flash drive to the lab; you will need it to save your data. For this and future labs,
Worksheet 3: Distributed File Systems
Worksheet 3 Distributed File Systems Name Class Please complete this worksheet and print it out. Author J.Jackson Objectives This exercise aims to investigate network file structures using various tools.
LSN 10 Linux Overview
LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced
Syntax: cd <Path> Or cd $<Custom/Standard Top Name>_TOP (In CAPS)
List of Useful Commands for UNIX SHELL Scripting We all are well aware of Unix Commands but still would like to walk you through some of the commands that we generally come across in our day to day task.
24/08/2004. Introductory User Guide
24/08/2004 Introductory User Guide CSAR Introductory User Guide Introduction This material is designed to provide new users with all the information they need to access and use the SGI systems provided
Lab 1: Introduction to C, ASCII ART and the Linux Command Line Environment
.i.-' `-. i..' `/ \' _`.,-../ o o \.' ` ( / \ ) \\\ (_.'.'"`.`._) /// \\`._(..: :..)_.'// \`. \.:-:. /.'/ `-i-->..
SFTP SHELL SCRIPT USER GUIDE
SFTP SHELL SCRIPT USER GUIDE FCA US INFORMATION & COMMUNICATION TECHNOLOGY MANAGEMENT Overview The EBMX SFTP shell scripts provide a parameter driven workflow to place les on the EBMX servers and queue
TNM093 Practical Data Visualization and Virtual Reality Laboratory Platform
October 6, 2015 1 Introduction The laboratory exercises in this course are to be conducted in an environment that might not be familiar to many of you. It is based on open source software. We use an open
CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities. Project 7-1
CPSC 2800 Linux Hands-on Lab #7 on Linux Utilities Project 7-1 In this project you use the df command to determine usage of the file systems on your hard drive. Log into user account for this and the following
1 Intro 1. 2 man - Accessing On-Line Manual Pages 1. 3 pwd - Print the Working Directory 2. 4 cd - Changing Directory 2
BASIC UNIX COMMANDS Contents 1 Intro 1 2 man - Accessing On-Line Manual Pages 1 3 pwd - Print the Working Directory 2 4 cd - Changing Directory 2 5 ls - Listing the Contents of Directories 2 6 mkdir -
UNIX Basics. Ian Darwin TCP Informatics January, 2005. Presented from a Mac using Apple s Keynote presentation software
UNIX Basics Ian Darwin TCP Informatics January, 2005 Presented from a Mac using Apple s Keynote presentation software 1 What is this about? Brief Introduction to UNIX - ideas - basic commands - some examples
CO 246 - Web Server Administration and Security. By: Szymon Machajewski
CO 246 - Web Server Administration and Security By: Szymon Machajewski CO 246 - Web Server Administration and Security By: Szymon Machajewski Online: < http://cnx.org/content/col11452/1.1/ > C O N N E
Kernel. What is an Operating System? Systems Software and Application Software. The core of an OS is called kernel, which. Module 9: Operating Systems
Module 9: Operating Systems Objective What is an operating system (OS)? OS kernel, and basic functions OS Examples: MS-DOS, MS Windows, Mac OS Unix/Linux Features of modern OS Graphical operating system
Unix/Linux Forensics 1
Unix/Linux Forensics 1 Simple Linux Commands date display the date ls list the files in the current directory more display files one screen at a time cat display the contents of a file wc displays lines,
Beyond Windows: Using the Linux Servers and the Grid
Beyond Windows: Using the Linux Servers and the Grid Topics Linux Overview How to Login & Remote Access Passwords Staying Up-To-Date Network Drives Server List The Grid Useful Commands Linux Overview Linux
Higher National Unit Specification. General information for centres. Multi User Operating Systems. Unit code: DH3A 34
Higher National Unit Specification General information for centres Unit code: DH3A 34 Unit purpose: This Unit is designed to provide candidates with a practical introduction to, and understanding of, the
WebSphere Application Server security auditing
Copyright IBM Corporation 2008 All rights reserved IBM WebSphere Application Server V7 LAB EXERCISE WebSphere Application Server security auditing What this exercise is about... 1 Lab requirements... 1
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L
Installation Guide for WebSphere Application Server (WAS) and its Fix Packs on AIX V5.3L Introduction: This guide is written to help any person with little knowledge in AIX V5.3L to prepare the P Server
DOS Command Reference
DOS Command Reference Introduction Some course material on the Teaching Network may still use the command line operating system called DOS (Disk Operating System). This requires the user to type specific
Backing Up TestTrack Native Project Databases
Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later
Grid Engine Basics. Table of Contents. Grid Engine Basics Version 1. (Formerly: Sun Grid Engine)
Grid Engine Basics (Formerly: Sun Grid Engine) Table of Contents Table of Contents Document Text Style Associations Prerequisites Terminology What is the Grid Engine (SGE)? Loading the SGE Module on Turing
SSH and Basic Commands
SSH and Basic Commands In this tutorial we'll introduce you to SSH - a tool that allows you to send remote commands to your Web server - and show you some simple UNIX commands to help you manage your website.
CLC Server Command Line Tools USER MANUAL
CLC Server Command Line Tools USER MANUAL Manual for CLC Server Command Line Tools 2.5 Windows, Mac OS X and Linux September 4, 2015 This software is for research purposes only. QIAGEN Aarhus A/S Silkeborgvej
Hadoop Basics with InfoSphere BigInsights
An IBM Proof of Technology Hadoop Basics with InfoSphere BigInsights Part: 1 Exploring Hadoop Distributed File System An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government
Tracking Network Changes Using Change Audit
CHAPTER 14 Change Audit tracks and reports changes made in the network. Change Audit allows other RME applications to log change information to a central repository. Device Configuration, Inventory, and
WinSCP PuTTY as an alternative to F-Secure July 11, 2006
WinSCP PuTTY as an alternative to F-Secure July 11, 2006 Brief Summary of this Document F-Secure SSH Client 5.4 Build 34 is currently the Berkeley Lab s standard SSH client. It consists of three integrated
The Einstein Depot server
The Einstein Depot server Have you ever needed a way to transfer large files to colleagues? Or allow a colleague to send large files to you? Do you need to transfer files that are too big to be sent as
1 Basic commands. 2 Terminology. CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger
CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger 1 Basic commands This section describes a list of commonly used commands that are available on the EECS UNIX systems. Most commands are executed by
Downloading Files using FTP
Downloading Files using FTP Transferring files to and from Barney or other server is done using the File Transfer Protocol, more commonly referred to as FTP. Using FTP, you can transfer files to and from
Unix Primer - Basic Commands In the Unix Shell
Unix Primer - Basic Commands In the Unix Shell If you have no experience with the Unix command shell, it will be best to work through this primer. The last section summarizes the basic file manipulation
PageR Enterprise Monitored Objects - AS/400-5
PageR Enterprise Monitored Objects - AS/400-5 The AS/400 server is widely used by organizations around the world. It is well known for its stability and around the clock availability. PageR can help users
Partek Flow Installation Guide
Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access
DS License Server V6R2013x
DS License Server V6R2013x DS License Server V6R2013x Installation and Configuration Guide Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology
CSIL MiniCourses. Introduction To Unix (I) John Lekberg Sean Hogan Cannon Matthews Graham Smith. Updated on: 2015-10-14
CSIL MiniCourses Introduction To Unix (I) John Lekberg Sean Hogan Cannon Matthews Graham Smith Updated on: 2015-10-14 What s a Unix? 2 Now what? 2 Your Home Directory and Other Things 2 Making a New Directory
