Introduction to Linux

Description

TUTORIAL #1: Introduction to Linux

Objectives

● Learn the fundamentals of Linux

● Gain a better understanding of the terminal

● Simple programming using the shell (bash)

Important Notes

● Work in groups of three​ students

● All reports must be submitted as a PDF on blackboard, if source code is included

submit everything as an archive (e.g. zip, tar.gz)

● Save the file as <tutorial_name>_<first student’s id>.pdf (e.g.

tutorial1_100123456.pdf)

● If you cannot submit the document on Blackboard then please contact the TA

(Jonathan Gillett) with your submission on slack at http://sofe3950u.slack.com

or send him an email via jonathan.gillett@uoit.net​.

Conceptual Questions

1. Write a brief summary of Linux and why you believe it has become so popular in

the years since it’s inception. Provide some examples where the Linux operating

system has been used.

2. What does it mean for software to be considered “Free” or Open Source, why is

this significant?

3. What are the benefits of Open Source software, what are the drawbacks?

4. Name an open source license.

5. Name the three standard streams, their numeric value, and the purpose.

Application Questions

If you do not have Linux configured on your system you can use the following online

terminal, you are able to write scripts by using the option “File → Create File” to open an

editor that you can use to create the script.

1. Write the terminal commands to do the following

– create a directory named tutorials

– create an empty file called tutorial1

– copy the file as a new file called tutorial_1

– delete the old file, tutorial1

2. Write the terminal commands to change to the home directory and create a

symbolic link named tutorial_1 to the file ~/work/tutorials/tutorial_1

3. Write the terminal commands to search recursively ​for the word “stdin” in all of

the files within the tutorials directory (~/work/tutorials/)

4. Write the terminal command to search for all files starting with “tutorial” (hint you

will need to look up bash wildcards) and redirect all of the errors (error stream) to

a file name “errors.log”.

5. Terminal commands can be written as scripts for later reuse, use the following

example as a starting point ​to create your own script that does the following.

– Accepts the first argument (this is $ARG1 in the template) and checks if it

is equal to “loop” and if so prints (hint use echo) the word “loop”

– Loops 5 times and each time it concatenates ​the current index (1 to 5) to

the file count.log

– Saves the list of processes (hint use ps) to a file named processes.log

You will need to consult online sources, the following are very helpful.

#!/bin/bash

ARG1=”$1”

for i in {1..5}

do

echo $ARG1

done

To run this example script, open a new file in an editor (e.g. gedit, sublime text, vim,

etc.) and paste the example in and save the file as question_5.sh​, then in your terminal

navigate to the directory/location where you saved the file and execute the following

commands to make the file executable (so you can run it) and to run the file with an

argument, which it will then print out 5 times.

cd <directory where file is saved>

chmod +x question_5.sh

./question_5.sh hello

Calculate the price of your order

Simple Order Process

Fill in the Order Form

Share all the assignment information. Including the instructions, provided reading materials, grading rubric, number of pages, the required formatting, deadline, and your academic level. Provide any information and announcements shared by the professor. Choose your preferred writer if you have one.

Get Your Order Assigned

Once we receive your order form, we will select the best writer from our pool of experts to fit your assignment.

Share More Data if Needed

You will receive a confirmation email when a writer has been assigned your task. The writer may contact you if they need any additional information or clarifications regarding your task

Let Our Essay Writer Do Their Job

Once you entrust us with your academic task, our skilled writers embark on creating your paper entirely from the ground up. Through rigorous research and unwavering commitment to your guidelines, our experts meticulously craft every aspect of your paper. Our process ensures that your essay is not only original but also aligned with your specific requirements, making certain that the final piece surpasses your expectations.

Quality Checks and Proofreading

Upon the completion of your paper, it undergoes a meticulous review by our dedicated Quality and Proofreading department. This crucial step ensures not only the originality of the content but also its alignment with the highest academic standards. Our seasoned experts conduct thorough checks, meticulously examining every facet of your paper, including grammar, structure, coherence, and proper citation. This comprehensive review process guarantees that the final product you receive not only meets our stringent quality benchmarks but also reflects your dedication to academic excellence.

Review and Download the Final Draft

If you find that any part of the paper does not meet the initial instructions, send it back to us with your feedback, and we will make the necessary adjustments.