Difference between revisions of "Tutorial7: Links / Process Management"

From CDOT Wiki
Jump to: navigation, search
 
(80 intermediate revisions by the same user not shown)
Line 1: Line 1:
=REDIRECTION: STANDARD INPUT / STANDARD OUTPUT / STANDARD ERROR=
+
=LINKING FILES / MANAGING PROCESSES=
 
<br>
 
<br>
 
===Main Objectives of this Practice Tutorial===
 
===Main Objectives of this Practice Tutorial===
  
:* x
+
:* Understand the purpose and why links are used in Unix / Linux
  
:* x
+
:* Define the term '''inode''' number as it relates to a file on Unix / Linux
  
:* x
+
:* Define the terms: '''Hard''' Link and '''Symbolic''' Link
  
:* x
+
:* Issue the '''ln''' command to create hard and symbolic links
 +
 
 +
:* Define and understand the purpose of a '''process''' in Unix / Linux
 +
 
 +
:* '''Run''' and '''terminate''' processes in the foreground and background
 +
 
 +
:* '''Display''' and '''manipulate''' background and foreground processes
 +
<br>
  
 
===Tutorial Reference Material===
 
===Tutorial Reference Material===
Line 30: Line 37:
 
|  style="padding-left:15px;" |Links
 
|  style="padding-left:15px;" |Links
 
* Hard Links
 
* Hard Links
* Symbolic Links<br><br>
+
* Symbolic Links<br>
 
Managing Processes
 
Managing Processes
 
* Process Information  
 
* Process Information  
 
* Manipulating Processes
 
* Manipulating Processes
 
+
* Running commands / programs in background with &
  
 
|  style="padding-left:15px;"|Linux Commands
 
|  style="padding-left:15px;"|Linux Commands
Line 40: Line 47:
 
* [http://man7.org/linux/man-pages/man1/ps.1.html ps]
 
* [http://man7.org/linux/man-pages/man1/ps.1.html ps]
 
* [http://man7.org/linux/man-pages/man1/top.1.html top]
 
* [http://man7.org/linux/man-pages/man1/top.1.html top]
* fg
+
* [http://man7.org/linux/man-pages/man1/fg.1p.html fg]
* bg
+
* [http://man7.org/linux/man-pages/man1/bg.1p.html bg]
* jobs
+
* [http://man7.org/linux/man-pages/man1/jobs.1p.html jobs]
* kill
+
* [http://man7.org/linux/man-pages/man1/kill.1.html kill]
  
|colspan="1" style="padding-left:15px;" width="30%"|Instructional Videos:<ul><li>x<br><br></li></ul>
+
|colspan="1" style="padding-left:15px;" width="30%"|Brauer Instructional Videos:<ul><li>[https://www.youtube.com/watch?v=tZ94-qH9unM&list=PLU1b1f-2Oe90TuYfifnWulINjMv_Wr16N&index=9 Inodes and Links]</li><li>[https://www.youtube.com/watch?v=q93POTgH-aQ&list=PLU1b1f-2Oe90TuYfifnWulINjMv_Wr16N&index=7 Processes and Jobs]</li></ul>
 
|}
 
|}
  
 
= KEY CONCEPTS =
 
= KEY CONCEPTS =
  
===Redirection===
+
===Linking Files===
 +
 
 +
''Links are powerful and add flexibility to Linux filesystems because everything is a file.<br><br>There are two types of Linux filesystem links: hard and soft. The difference between the two types of links is significant, but both types are used to solve similar problems. They both provide multiple directory entries (or references) to a single file, but they do it quite differently.'' <br><br>Reference: https://opensource.com/article/17/6/linking-linux-filesystem
 +
 
 +
 
 +
'''inode (index) Number of a File:'''
 +
 
 +
<table align="right"><tr valign="top"><td>[[Image:inode-number-1.png|thumb|right|300px|Each inode stores the attributes and disk block locations of the object's data.<br>(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])]]</td><td>[[Image:inode-number-2.png|thumb|right|400px|The '''inode number''' is like a '''finger-print''', and usually is '''unique''' for each file on the Unix / Linux file system.]]</td></tr></table>
 +
''The inode (index node) is a data structure in a Unix-style file system that describes a file-system object such as a file or a directory. Each inode stores the attributes and disk block locations of the object's data. File-system object attributes may include metadata (times of last change, access, modification), as well as owner and permission data.''
 +
 
 +
Reference: https://en.wikipedia.org/wiki/Inode
  
x
 
  
 +
The '''inode number''' is like a '''finger-print''', and usually is '''unique''' for each file on the Unix / Linux file system.<br>Referring to the diagram on the far right, issuing the '''ls''' command with the '''-i''' option<br>displays the inode number for each file. You can see that <u>each</u> file<br>(whether it is a directory or regular file) has its own unique inode number.
  
===Piping (Using Pipes)===
 
  
x
 
  
 +
'''Hard Links:'''
 +
 +
<table align="right"><tr valign="top"><td>[[Image:hard-link-1.png|thumb|right|300px|(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])<br>Image manipulated by author]]]</td><td>[[Image:inode-number-3.png|thumb|right|400px|(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])]]</td></tr></table>
 +
Hard link is a reference to the physical data on a file  system
 +
More than one hard link can be associated with the  same physical data
 +
Hard links can only refer to data that exists on the
 +
same file system
 +
Hard links cannot be created to a directory
 +
When a file has more than one link, you can remove  any one link and still be able to access the file  through the remaining links
 +
 +
 +
Assume you used "vi" to create a new file, you create  the first hard link (vi myfile)
 +
To Create the 2nd, 3rd , etc. hard links, use the  command:
 +
ln myfile link-name
 +
 +
 +
Create a new file called “myfile”
 +
Run the command “ls -il” to display the i-  node number and link counter
 +
 +
 +
 +
 +
'''Symbolic Links:'''
 +
 +
<table align="right"><tr valign="top"><td>[[Image:symbolic-link-1.png|thumb|right|300px|(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])]]</td><td>[[Image:inode-number-4.png|thumb|right|400px|(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])]]</td></tr></table>
 +
A Symbolic Link is an indirect pointer to a file – a  pointer to the hard link to the file
 +
You can create a symbolic link to a directory
 +
A symbolic link can point to a file on a different  file system
 +
A symbolic link can point to a nonexistent file  (referred to as a "broken link")
 +
 +
 +
Also known as soft links or symlinks
  
===Multiple Commands Using Semicolon ; / Grouping Commands ( )===
 
 
x
 
  
=INVESTIGATION 1: BASICS OF REDIRECTION=
 
  
<br>
 
In this section, you will learn how to ...
 
  
 +
===Managing Processes===
  
  
 +
All programs that are executing on a UNIX  system are referred to as processes
 +
Each process has an owner
 +
Each process has a unique ID (PID)  Processes in UNIX can run in:
 +
Foreground
 +
Background
  
'''Perform the Following Steps:'''
+
[[Image:process-diagram-1.png|thumb|right|300px|(Image licensed under [https://creativecommons.org/licenses/by-sa/3.0/ cc])]]]
 +
UNIX processes are hierarchical
 +
This structure has a root, parents, and children
 +
Creation of a new process is called forking or  spawning
 +
Parent can fork a child and children can fork  their own children
 +
Processes keep their PID for their entire life
 +
Usually a parent sleeps when a child is executing
 +
– The exception is when the child process  is executing in the background
  
# x<br><br>
 
  
In the next investigation, you will ...<br><br>
+
ps (process status) command displays  snapshot information about processes
 +
By default, the ps command displays  information only about the current terminal  (ps -U username shows all)
 +
The top command provides a continuous  update including resource usage
  
=INVESTIGATION 2: REDIRECTION USING PIPES =
+
=INVESTIGATION 1: LINKING FILES=
  
 +
<br>
 
In this section, you will learn how to ...
 
In this section, you will learn how to ...
 +
  
  
Line 88: Line 145:
 
# x<br><br>
 
# x<br><br>
  
In the next investigation, you will ...
+
In the next investigation, you will ...<br><br>
  
=INVESTIGATION 3: MULTIPLE COMMANDS / COMMAND GROUPING =
+
=INVESTIGATION 2: MANAGING PROCESSES =
  
 
In this section, you will learn how to ...
 
In this section, you will learn how to ...
Line 98: Line 155:
 
'''Perform the Following Steps:'''
 
'''Perform the Following Steps:'''
  
# x<br>
+
# x<br><br>
 +
 
 +
In the next investigation, you will ...
 +
 
  
 
= LINUX PRACTICE QUESTIONS =
 
= LINUX PRACTICE QUESTIONS =
Line 107: Line 167:
 
simulate a quiz:
 
simulate a quiz:
  
https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week5_practice.docx
+
https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week8_practice.docx
  
 
Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).
 
Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).
Line 114: Line 174:
 
'''Review Questions:'''
 
'''Review Questions:'''
  
# x
+
# Write a single Linux command to create a hard link called '''~/backup/myfile.txt.lnk''' to the existing file called '''~/myfile.txt'''<br>Write a single Linux command to display detailed information for those files above displaying their i-node numbers.<br>In this case, will the inode numbers for those files above be the same or different?<br><br>
# x
+
# Write a single Linux command to create a symbolic link called '''~/shortcuts/murray.saul.lnk''' to the existing directory called '''~murray.saul'''<br>Write a single Linux command to display detailed information for those files above displaying their i-node numbers.<br>In this case, will the inode numbers for those files above be the same or different?<br><br>What data is contained in the file called '''~/shortcuts/murray.saul.lnk'''?<br>What would be the size of the file called '''~/shortcuts/murray.saul.lnk'''?<br><br>
# x
+
# Write a single Linux command to run the program called '''~/clean.sh''' in the background.<br>What command would you issue to place the previously issued program in the foreground?<br>What command would you issue to confirm that this program is running in the background?<br>What key-combination would you issue to send that program again into the background?<br><br>
# x
+
# Write a single Linux command to display running processes in “real-time”.
# x
+
# Write a single Linux command to terminal a process that has the following PID: '''22384'''
# x
+
# Use the following diagram to answer the accompanying questions.<br>Each of the following questions will use the diagram below and are treated as independent situations.<br><br><span style="font-family:courier;font-weight:bold;">[1]  Stopped                vim a<br>[2]-  Stopped                vim b<br>[3]+  Stopped                vim c</span><br><br>Write a single Linux command to bring the second-recently process placed in the background into the foreground.<br>Write a single Linux command to terminate the '''job #3'''.<br><br>
# x
+
# Create a '''table''' listing each Linux command, useful options  and command purpose for the following Linux commands: '''ln''' , '''ps''' , '''top''' , '''fg''' , '''bg''' , '''jobs''' , '''kill'''
# x
 
# Create a '''table''' listing each Linux command, useful options that were mentioned in the online assignment #1 and command purpose for the following Linux commands: '''x''' , '''x''' , '''x''' , '''x''' , '''x''' , '''x''' , '''x''' , '''x''' , '''x''' , '''x'''
 
  
[[Tutorial8: Regular Expressions]]
+
[[Tutorial8: Links / Process Management]]
  
 
[[Category:ULI101]]
 
[[Category:ULI101]]

Latest revision as of 14:07, 31 January 2020

LINKING FILES / MANAGING PROCESSES


Main Objectives of this Practice Tutorial

  • Understand the purpose and why links are used in Unix / Linux
  • Define the term inode number as it relates to a file on Unix / Linux
  • Define the terms: Hard Link and Symbolic Link
  • Issue the ln command to create hard and symbolic links
  • Define and understand the purpose of a process in Unix / Linux
  • Run and terminate processes in the foreground and background
  • Display and manipulate background and foreground processes


Tutorial Reference Material

Course Notes
Concepts / Commands
YouTube Videos
Course Notes:


Links
  • Hard Links
  • Symbolic Links

Managing Processes

  • Process Information
  • Manipulating Processes
  • Running commands / programs in background with &
Linux Commands Brauer Instructional Videos:

KEY CONCEPTS

Linking Files

Links are powerful and add flexibility to Linux filesystems because everything is a file.

There are two types of Linux filesystem links: hard and soft. The difference between the two types of links is significant, but both types are used to solve similar problems. They both provide multiple directory entries (or references) to a single file, but they do it quite differently.


Reference: https://opensource.com/article/17/6/linking-linux-filesystem


inode (index) Number of a File:

Each inode stores the attributes and disk block locations of the object's data.
(Image licensed under cc)
The inode number is like a finger-print, and usually is unique for each file on the Unix / Linux file system.

The inode (index node) is a data structure in a Unix-style file system that describes a file-system object such as a file or a directory. Each inode stores the attributes and disk block locations of the object's data. File-system object attributes may include metadata (times of last change, access, modification), as well as owner and permission data.

Reference: https://en.wikipedia.org/wiki/Inode


The inode number is like a finger-print, and usually is unique for each file on the Unix / Linux file system.
Referring to the diagram on the far right, issuing the ls command with the -i option
displays the inode number for each file. You can see that each file
(whether it is a directory or regular file) has its own unique inode number.


Hard Links:

(Image licensed under cc)
Image manipulated by author]
(Image licensed under cc)

Hard link is a reference to the physical data on a file system More than one hard link can be associated with the same physical data Hard links can only refer to data that exists on the same file system Hard links cannot be created to a directory When a file has more than one link, you can remove any one link and still be able to access the file through the remaining links


Assume you used "vi" to create a new file, you create the first hard link (vi myfile) To Create the 2nd, 3rd , etc. hard links, use the command: ln myfile link-name


Create a new file called “myfile” Run the command “ls -il” to display the i- node number and link counter



Symbolic Links:

(Image licensed under cc)
(Image licensed under cc)

A Symbolic Link is an indirect pointer to a file – a pointer to the hard link to the file You can create a symbolic link to a directory A symbolic link can point to a file on a different file system A symbolic link can point to a nonexistent file (referred to as a "broken link")


Also known as soft links or symlinks



Managing Processes

All programs that are executing on a UNIX system are referred to as processes Each process has an owner Each process has a unique ID (PID) Processes in UNIX can run in: Foreground Background

(Image licensed under cc)]

UNIX processes are hierarchical This structure has a root, parents, and children Creation of a new process is called forking or spawning Parent can fork a child and children can fork their own children Processes keep their PID for their entire life Usually a parent sleeps when a child is executing – The exception is when the child process is executing in the background


ps (process status) command displays snapshot information about processes By default, the ps command displays information only about the current terminal (ps -U username shows all) The top command provides a continuous update including resource usage

INVESTIGATION 1: LINKING FILES


In this section, you will learn how to ...



Perform the Following Steps:

  1. x

In the next investigation, you will ...

INVESTIGATION 2: MANAGING PROCESSES

In this section, you will learn how to ...


Perform the Following Steps:

  1. x

In the next investigation, you will ...


LINUX PRACTICE QUESTIONS

The purpose of this section is to obtain extra practice to help with quizzes, your midterm, and your final exam.

Here is a link to the MS Word Document of ALL of the questions displayed below but with extra room to answer on the document to simulate a quiz:

https://ict.senecacollege.ca/~murray.saul/uli101/uli101_week8_practice.docx

Your instructor may take-up these questions during class. It is up to the student to attend classes in order to obtain the answers to the following questions. Your instructor will NOT provide these answers in any other form (eg. e-mail, etc).


Review Questions:

  1. Write a single Linux command to create a hard link called ~/backup/myfile.txt.lnk to the existing file called ~/myfile.txt
    Write a single Linux command to display detailed information for those files above displaying their i-node numbers.
    In this case, will the inode numbers for those files above be the same or different?

  2. Write a single Linux command to create a symbolic link called ~/shortcuts/murray.saul.lnk to the existing directory called ~murray.saul
    Write a single Linux command to display detailed information for those files above displaying their i-node numbers.
    In this case, will the inode numbers for those files above be the same or different?

    What data is contained in the file called ~/shortcuts/murray.saul.lnk?
    What would be the size of the file called ~/shortcuts/murray.saul.lnk?

  3. Write a single Linux command to run the program called ~/clean.sh in the background.
    What command would you issue to place the previously issued program in the foreground?
    What command would you issue to confirm that this program is running in the background?
    What key-combination would you issue to send that program again into the background?

  4. Write a single Linux command to display running processes in “real-time”.
  5. Write a single Linux command to terminal a process that has the following PID: 22384
  6. Use the following diagram to answer the accompanying questions.
    Each of the following questions will use the diagram below and are treated as independent situations.

    [1] Stopped vim a
    [2]- Stopped vim b
    [3]+ Stopped vim c


    Write a single Linux command to bring the second-recently process placed in the background into the foreground.
    Write a single Linux command to terminate the job #3.

  7. Create a table listing each Linux command, useful options and command purpose for the following Linux commands: ln , ps , top , fg , bg , jobs , kill

Tutorial8: Links / Process Management