1 / 24

Linux Tutorial Lesson Two

Linux Tutorial Lesson Two. *Getting Help in Linux *Data movement and manipulation *Relative and Absolute path *Processes Note: see chapter 1,2,3 from Linux and Unix Programming tools for more information. MAN Pages

ehren
Télécharger la présentation

Linux Tutorial Lesson Two

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Linux Tutorial Lesson Two *Getting Help in Linux *Data movement and manipulation *Relative and Absolute path *Processes Note: see chapter 1,2,3 from Linux and Unix Programming tools for more information

  2. MAN Pages • man - format and display the on-line manual pages manpath - determine user's search path for man pages • SYNOPSIS  • man [-acdfFhkKtwW] [--path] [-m system] [-p string] [-C config_file] [-M pathlist] [-P pager] [-S section_list] [section] name ... • DESCRIPTION  • man formats and displays the on-line manual pages. If you specify section, man only looks in that section of the manual. name is normally the name of the manual page, which is typically the name of a command, function, or file. However, if name contains a slash (/) then man interprets it as a file specification, so that you can do man ./foo.5 or even man /cd/foo/bar.1.gz. See below for a description of where man looks for the manual page files.

  3. Man man • Man –k command • Info command Example, man ls gives you: • NAME • ls, dir, vdir - list contents of directories • SYNOPSIS • ls [-abcdefgiklmnopqrstuxABCFGLNQRSUX178] [-w cols] [-T cols] [-I pattern] [--all] [--escape] [--directory] • DESCRIPTION • This manual page documents the GNU version of ls, with color extensions. dir and vdir are versions of ls with different default output formats. These programs list each given file or directory name.

  4. -a — all. Lists all the files in the directory, including the hidden files (.filename). The .. and . at the top of your list refer to the parent directory and the current directory, respectively. • -l — long. Lists details about contents, including permissions (modes), owner, group, size, creation date, whether the file is a link to somewhere else on the system and where its link points. • -F — file type. Adds a symbol to the end of each listing. These symbols include / to indicate a directory; @ to indicate a symbolic link to another file; and * to indicate an executable file. • -r — reverse. Lists the contents of the directory from back to front. • -R — recursive. This option lists the contents of all directories below the current directory recursively. • -S — size. Sorts files by their sizes.

  5. Notes: Commands in linux have OPTIONS and ARGUEMNTS Coomands may have more than one options, Example ls –al or ls –l -a Press the [space-bar] if you want to see another page, type [q] if you want to quit reading • to search through science.txt for the word 'science', type • Search in MAN pages: type a forward slash [/] followed by the word to search /science As you can see, it finds and highlights the keyword. Type [n] to search for the next occurrence of the word

  6. Understanding pathnames • The path either Relative or Absoulte • Absolute paths begin always in “/” • Absolute paths tells Linux to start at the top of the directory tree (/) and change to certain directroy. A path is absolute if the first character is a /. Otherwise, it is a relative path. • Using absolute paths allows you to change to a directory from the / directory, which requires you to know and type the complete path. Using relative paths allows you to change to a directory relative to the directory you are currently in, which can be convenient if you are changing to a subdirectory within your current directory.

  7. The following directory tree illustrates how cd operates with different paths. • / • /directory1 • /directory1/directory2 • /directory1/directory2/directory3 • If you are currently in directory3 and you want to switch to directory1, you need to move up in the directory tree. • Executing the command • cd directory1 • while you are in directory3, will present you with an error message explaining that there is no such directory. This is because there is no directory1 below directory3. • To move up to directory1, type: • cd /directory1

  8. The command cd .. tells your system to go up to the directory immediately above the one in which you are currently working. To go up two directories, use the cd ../.. command. • ~ (your home directory) • Home directories can also be referred to by the tilde ~ character. It can be used to specify paths starting at your home directory. So typing • % ls ~/unixstuff • will list the contents of your unixstuff directory, no matter where you currently are in the file system. • What do you think • % ls ~ • would list? • What do you think • % ls ~/.. • would list?

  9. Making Directory and Files • mkdir Dirname • touch filename Copying Files • cp (copy) • cp file1 file2 is the command which makes a copy of file1 in the current working directory and calls it file2 • What we are going to do now, is to take a file stored in an open access area of the file system, and use the cp command to copy it to your unixstuff directory. • First, cd to your unixstuff directory. • % cd ~/unixstuff • Then at the UNIX prompt, type, • % cp /vol/examples/tutorial/science.txt . • (Note: Don't forget the dot (.) at the end. Remember, in UNIX, the dot means the current directory.) • The above command means copy the file science.txt to the current directory, keeping the name the same.

  10. Moving files • mv (move) • mv file1 file2 moves (or renames) file1 to file2 • To move a file from one place to another, use the mv command. This has the effect of moving rather than copying the file, so you end up with only one file rather than two. • It can also be used to rename a file, by moving the file to the same directory, but giving it a different name. • We are now going to move the file science.bak to your backup directory. • First, change directories to your unixstuff directory (can you remember how?). Then, inside the unixstuff directory, type • % mv science.bak backups/. • Type ls and ls backups to see if it has worked

  11. Moving files • mv (move) • mv file1 file2 moves (or renames) file1 to file2 • To move a file from one place to another, use the mv command. This has the effect of moving rather than copying the file, so you end up with only one file rather than two. • It can also be used to rename a file, by moving the file to the same directory, but giving it a different name. • We are now going to move the file science.bak to your backup directory. • First, change directories to your unixstuff directory (can you remember how?). Then, inside the unixstuff directory, type • % mv science.bak backups/. • Type ls and ls backups to see if it has worked. Exercise: Rename a file using mv?

  12. Removing files and directories • rm (remove), rmdir (remove directory) • To delete (remove) a file, use the rm command. As an example, we are going to create a copy of the science.txt file then delete it. • Inside your unixstuff directory, type • % cp science.txt tempfile.txt% ls (to check if it has created the file)% rm tempfile.txt % ls (to check if it has deleted the file) • You can use the rmdir command to remove a directory (make sure it is empty first). Try to remove the backups directory. You will not be able to since UNIX will not let you remove a non-empty directory.

  13. Displaying the contents of a file on the screen • clear (clear screen) • Before you start the next section, you may like to clear the terminal window of the previous commands so the output of the following commands can be clearly understood. • At the prompt, type • % clear • This will clear all text and leave you with the % prompt at the top of the window. • cat (concatenate) • The command cat can be used to display the contents of a file on the screen. Type: • % cat /etc/passwd • As you can see, the file is longer than than the size of the window, so it scrolls past making it unreadable.

  14. More • The command more writes the contents of a file onto the screen a page at a time. Type • % more /etc/passwd • Press the [space-bar] if you want to see another page, type [q] if you want to quit reading. As you can see, less is used in preference to cat for long files.

  15. head • The head command writes the first ten lines of a file to the screen. • First clear the screen then type • % head /etc/passwd • Then type • % head -5 /etc/passwd • What difference did the -5 do to the head command?

  16. tail • The tail command writes the last ten lines of a file to the screen. • Clear the screen and type • % tail /etc/passwd

  17. grep is one of many standard UNIX utilities. It searches files for specified words or patterns. First clear the screen, then type • % grep root /etc/passwd • As you can see, grep has printed out each line containg the word science. • Or has it???? • Try typing

  18. Processes and Jobs A process is an executing program identified by a unique PID (process identifier). To see information about your processes, with their associated PID and status, type % ps A process may be in the foreground, in the background, or be suspended. In general the shell does not return the UNIX prompt until the current process has finished executing.

  19. Some processes take a long time to run and hold up the terminal. Backgrounding a long process has the effect that the UNIX prompt is returned immediately, and other tasks can be carried out while the original process continues executing Man ps for more options ps –aux

  20. Running background processes To background a process, type an & at the end of the command line. For example, the command sleep waits a given number of seconds before continuing. Type % sleep 10 This will wait 10 seconds before returning the command prompt %. Until the command prompt is returned, you can do nothing except wait. To run sleep in the background, type % sleep 10 & [1] 6259

  21. The first line in the above example is typed in by the user; the next line, indicating job number and PID, is returned by the machine. The user is be notified of a job number (numbered from 1) enclosed in square brackets, together with a PID and is notified when a background process is finished. Backgrounding is useful for jobs which will take a long time to complete. Backgrounding a current foreground process At the prompt, type % sleep 100 You can suspend the process running in the foreground by holding down the [control] key and typing [z] (written as ^Z) Then to put it in the background, type % bg

  22. Listing suspended and background processes When a process is running, backgrounded or suspended, it will be entered onto a list along with a job number. To examine this list, type % jobs An example of a job list could be [1] Suspended sleep 100[2] Running netscape[3] Running nedit

  23. To restart (foreground) a suspended processes, type % fg %jobnumber For example, to restart sleep 100, type % fg %1 Typing fg with no job number foregrounds the last suspended process.

More Related