Difference between revisions of "Tutorial3: Advanced File Management / Quoting Special Characters"

From CDOT Wiki
Jump to: navigation, search
Line 1: Line 1:
=LEARNING ABOUT YOUR MATRIX SERVER ACCOUNT=
+
=ADVANCED UNIX / LINUX FILE MANAGEMENT=
  
 
===Main Objectives of this Practice Tutorial===
 
===Main Objectives of this Practice Tutorial===
Line 14: Line 14:
  
  
===Purpose of Having a Matrix Account===
+
===Absolute / Relative / Relative-To-Home Pathnames===
  
While attending Seneca College, you will be using many different computer systems to perform various operations.
+
x
Some of these servers include:
 
 
 
{|width="100%" cellspacing="0"
 
 
 
|-
 
| style="padding-left:0px;width:10%" |'''my.senecacollege.ca'''
 
| style="padding-left:15px;width:65%" |Learning Content Management System (Student Grades / Notes / Online Quizzes)
 
 
 
|-
 
| style="padding-left:0px;width:10%" |'''ict.senecacollege.ca'''
 
| style="padding-left:15px;width:65%" |Main ICT Webserver
 
 
 
|-
 
| style="padding-left:0px;width:10%" |'''wiki.cdot.senecacollege.ca'''
 
| style="padding-left:15px;width:65%" |Course WIKIs for Seneca College Students
 
 
 
|-
 
| style="padding-left:0px;width:10%" |'''matrix.senecacollege.ca'''
 
| style="padding-left:15px;width:65%" |Linux Account for Student Practice and Assignment submission
 
 
 
|}
 
 
 
 
 
[[Image:cli-prompt.png|thumb|right|150px|A '''shell''' is simply an interface / interpreter to allow a user to communicate with the Linux computer system. ]]
 
Although you need to study concepts throughout this course, you will also need to learn to '''issue and memorize simple as well as more advanced Linux commands'''. This requires that you practice issuing Linux commands on a frequent basis to become more comfortable when working the Unix and '''Linux command-line environments'''.
 
 
 
Just like with other operating systems like MS Windows, it is important to learn how to '''open a command prompt in order to issue Linux commands to perform common Linux OS tasks'''. In Unix/Linux, a '''shell''' is simply an interface / interpreter to allow a user to communicate with the Linux computer system (server). Linux shells have evolved (improved) over a period of time. You will be using the '''Bash Shell''' which is considered to be user-friendly.
 
 
 
The '''Matrix''' server has been configured to allow users to '''only interact with the Linux OS by issuing commands'''. There are various reasons for this, but the main 2 reasons are to '''force students to learn how to issue Linux commands''' as well as '''limitations to remote access to a graphical Linux serve'''r due to large number of users (students).
 
 
Later in the course, your instructor may discuss other ways of accessing '''graphical versions of Linux''', and how to launch a shell terminal.
 
 
 
===Layout of the Matrix Server===
 
[[Image:matrix-layout.png|thumb|right|350px|The Matrix server consists of several Virtual Computers all connected together to form a '''cluster'''. A cluster is a cost effective  alternative to larger servers. ]]
 
 
 
The Matrix server consists of '''several Virtual Computers connected together''' to form a '''cluster'''. A cluster is a cost effective alternative to buying larger servers.
 
 
 
All registered students in this course have access to an account on the Matrix server.
 
You will be using this account for the following reasons:
 
 
 
:* Issuing '''Linux commands'''
 
:* Becoming productive using the Linux '''command prompt''' ('''shell''')
 
:* Performing '''Linux Practice Tutorials'''
 
:* Performing '''Linux Assignments''' ('''3''')
 
:* Practice Issuing '''Linux Command Review Questions'''
 
 
  
 
In the next section, you will learn how to '''connect''' to and '''login''' to your Matrix server account both at a '''college lab workstation''' and from a remote computer such as your '''home computer''' or your '''laptop computer'''.
 
In the next section, you will learn how to '''connect''' to and '''login''' to your Matrix server account both at a '''college lab workstation''' and from a remote computer such as your '''home computer''' or your '''laptop computer'''.
  
=INVESTIGATION 1: ACCESSING YOUR MATRIX LINUX ACCOUNT=
+
=INVESTIGATION 1: USING ABSOLUTE / RELATIVE / RELATIVE-TO-HOME PATHNAMES=
 
 
 
 
 
 
 
 
 
 
In this section, you will learn how to access your Matrix Linux account by two different methods:
 
 
 
:* From a workstation '''within''' a '''Seneca College lab'''
 
:* From your <u>own</u> computer '''within''' or '''outside''' '''Seneca College'''
 
  
===Part 1: Accessing your Matrix Account from a Seneca College Lab ===
+
X
  
x
 
  
 
:'''Perform the Following Steps:'''
 
:'''Perform the Following Steps:'''
  
  
# Start your workstation in your lab and login to your Seneca Windows account.
+
# X
# Make certain that the MyApps browser is open (if not, double-click on the MyApps icon on the desktop to launch)
 
# In the MyApps window, click on the search area and type the word: ssh
 
# Several SSH applications will appear. All of these applications allow you to connect to your Matrix account. We will use the application called SSH Client for this practice tutorial.
 
  
===Part 2: Access your Matrix Account From your own computer within or outside Seneca College ===
 
  
x
 
  
:'''Perform the following steps:'''
+
=INVESTIGATION 2: USING FILENAME EXPANSION=
#  Select from the installation menu: '''Install CentOS 7'''.
 
# Next, you will be prompted for a language. In the first screen, select language '''English''' with subselection '''English-Canada''' and then click the '''Continue''' button on the bottom right-hand screen.
 
 
 
=INVESTIGATION 2: USING THE LINUX SHELL & ISSUING LINUX COMMANDS=
 
 
 
{|width="100%" cellspacing="0"
 
  
 
|  style="padding-left:15px;width:10%" |<b>Linux Commands Used (click for online help):</b><br>
 
Logging Out of Linux Account
 
*[https://ss64.com/bash/logout.html logout , exit]<br>
 
*[https://community.hpe.com/t5/General/lt-ctrl-gt-d-and-exit-difference/td-p/2916973#.Xgu3OxdKjoA &lt;ctrl&gt;&lt;d&gt;]<br>
 
| style="padding-left:15px;width:20%" |Change Password<br>
 
*[http://man7.org/linux/man-pages/man1/passwd.1.html passwd]<br>
 
 
|}
 
  
 
x
 
x
Line 115: Line 39:
 
:'''Perform the following steps:'''
 
:'''Perform the following steps:'''
  
# Open Terminal.
+
# X
# Login as root: <b><code><span style="color:#3366CC;font-size:1.3em;">su -</span></code></b>
 
# Type: <b><code><span style="color:#3366CC;font-size:1.3em;">yum update</span></code></b>
 
# Follow the prompts.
 
# If there is a kernel update, reboot your system. (There usually is on a first update after OS installation.)
 
  
= INVESTIGATION 3: COMPLETING YOUR ONLINE ASSIGNMENTS =
+
= INVESTIGATION 3: QUOTING SPECIAL CHARACTERS =
  
  
Line 129: Line 49:
 
:'''Perform the Following Steps:'''
 
:'''Perform the Following Steps:'''
  
# Study the Linux commands and their purpose to note computer software information for your installed c7hostVM. You should take time to issue each of these commands to view the output, and record this chart in your lab1 logbook.<br><br>
+
# X
# Login to your c7hostVM, open a Bash Shell terminal, and login as root by issuing the command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">su -</span></code></b><br><br>
 
# Make certain to '''<u>record output</u>''' from these commands (except for the '''ps -ef''' output) in your lab1 logbook.
 
 
 
x
 
  
 
= LINUX PRACTICE QUESTIONS =
 
= LINUX PRACTICE QUESTIONS =
Line 149: Line 65:
 
'''Review Questions:'''
 
'''Review Questions:'''
  
# What is a “Linux Cluster”? What is an advantage of using a Linux cluster?
+
# X
# List three unique server names at Seneca college and briefly explain the purpose of that server.
+
# X
# List the steps to connect and login to your Matrix Linux server account from a workstation on one of your labs at Seneca College.
+
# X
# List the steps to connect and login to your Matrix Seneca College account on your home computer.
+
# X
# List 3 unique ways to log out of your Matrix account (not including closing the SSH window or application).
+
# X
# List the steps to change your Matrix password.
+
# X
# What is the difference between a Linux command and an argument?
+
# X
# What character(s) can separation between commands and arguments?
+
# X
  
  

Revision as of 16:47, 12 January 2020

ADVANCED UNIX / LINUX FILE MANAGEMENT

Main Objectives of this Practice Tutorial

  • x
  • x
  • x
  • x
  • x


Absolute / Relative / Relative-To-Home Pathnames

x

In the next section, you will learn how to connect to and login to your Matrix server account both at a college lab workstation and from a remote computer such as your home computer or your laptop computer.

INVESTIGATION 1: USING ABSOLUTE / RELATIVE / RELATIVE-TO-HOME PATHNAMES

X


Perform the Following Steps:


  1. X


INVESTIGATION 2: USING FILENAME EXPANSION

x

Perform the following steps:
  1. X

INVESTIGATION 3: QUOTING SPECIAL CHARACTERS

x


Perform the Following Steps:
  1. X

LINUX PRACTICE QUESTIONS

The purpose of this section is to obtain extra practice to help with your assignment #1, quizzes, your midterm, and your final ezam.

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_week1_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. X
  2. X
  3. X
  4. X
  5. X
  6. X
  7. X
  8. X