CS314 Lab2
CS314 Lab2
Lab – 2
Semester 391
Lab2 – Working with Linux Command Line
Introduction
In this lab, you will use the Linux command line to manage files and folders and perform some
basic administrative tasks.
Recommended Equipment
A computer with a Linux OS, either installed physically or in a virtual machine
.
Lab2 – Working with Linux Command Line
c. Type man cp at the prompt to display the information about the cp command.
What command would you use to find out more information about the pwd command? What is the
function of the pwd command?
____________________________________________________________________________________
____________________________________________________________________________________
e. Type ls at the command prompt to list the files and folders that are in the current folder.
f. In the current directory, use the mkdir command to create three new folders: ITEfolder1, ITEfolder2,
and ITEfolder3. Type mkdir ITEfolder1 and press Enter. Create ITEfolder2 and ITEfolder3.
f. Type cd ITEfolder3 at the command prompt and press Enter. Which folder are you in now?
____________________________________________________________________________________
Another way to determine your location in the directory tree is to looking at the prompt. In this
example, the prompt, ITEUser@iteuser-VirtualBox:~/ITEfolder3$, provides the name of the current
user, the computer name, the current working directory, and the privilege level.
~/ITEfolder3: is the current working directory. The symbol ~ represents the current user’s home
directory. In this example, it is /home/ITEUser.
$: indicates regular user privilege. If # is displayed at the prompt, this indicates elevated privilege (root).
g. Within the ITEfolder3 folder, create a folder named ITEfolder4. Type mkdir ITEfolder4. Use the
ls command to verify the folder creation.
h. Type cd .. to change the current directory. Each .. is a shortcut to move up one level in the directory tree.
After issuing the cd .. command, what is your directory now?
i. Note: typing cd with no argument always returns you to your home directory. This is very useful if you
are lost in the file system.
____________________________________________________________________________________
What would be the current directory if you issue this command at ITEUser@iteuser-VirtualBox:~$?
____________________________________________________________________________________
Step 4: Create text files.
a. Navigate to the /home/ITEUser/ITEfolder1 (~\ITEfolder1) directory. Type cd ITEfolder1 at the prompt.
b. Type echo This is doc1.txt > doc1.txt at the command prompt. The echo command is used to display
a message at the command prompt. The > is used to redirect the message from the screen to a file.
For example, in the first line, the message This is doc1.txt is redirected into a new file named doc1.txt.
Use the echo command and > redirect to create these files: doc2.txt, file1.txt, and file2.txt.
c. Use the ls command to verify the files are in the ITEfolder1 folder. To determine the file permission
and other information, type the ls –l command at the prompt.
The following figure breaks down the information provided by the ls –l command. The user ITEUser is
owner of file. The user can read and write to the file. The user ITEUser belongs to the group name
ITEUser. Anyone in the group ITEUser has the same permission. The group can read and write to the
file. If the user is not the owner or in the group ITEUser, the user can only read the file as indicated by
the permission for other.
d. Type the man ls command at the prompt. What option would you use to list all the files in the
directory, including the hidden files starting with .?
____________________________________________________________________________________
e. Use the cat command to view the content of the text files. To view the content of doc2.txt, type cat
doc2.txt.
Step 5: Copy, delete, and move files.
a. At the command prompt, type mv doc2.txt ~/ITEfolder2 to move the file doc2.txt to
the /home/ITEUser/ITEfolder2 directory.
b. Type ls at the prompt to verify that doc2.txt is no longer in the current directory.
c. Type cd ../ITEfolder2 to change the directory to ITEfolder2. Type ls at the prompt to verify doc2.txt
has been moved.
d. Type cp doc2.txt doc2_copy.txt to create a copy of doc2.txt. Type ls at the prompt to verify a copy of
the file has been created. Use the cat command to look at the content of doc2_copy.txt. The content in
the copy should be the same as the original file.
f. A copy of doc2.txt can be created and renamed with the cp command. Type cp doc2.txt
../ITEfoler1/doc2_new.txt at the prompt.
g. Type ls ../ITEfolder1 to view the content in ITEfolder1 without leaving the current directory.
b. Use the rm ITEfolder4 to delete the empty directory, and the message rm: cannot remove
‘ITEfodler4/’: Is a directory.
c. Use the man pages to determine what options are necessary so the rm command can delete
directory. Type man rm at the prompt.
What option is needed to delete a directory?
____________________________________________________________________________________
d. Use the rm –d ITEfolder4 command to delete the empty directory and use the ls command to verify
the removal of the directory.
e. Navigate to /home/ITEUser.
f. Now remove the folder ITEfolder3 using the rm –d ITEfolder3 command to delete the non-empty
directory. The message indicates that the directory is not empty and cannot be deleted.
g. Use man pages to find out more information about the rm command.
What option is necessary to delete a non-empty folder using the rm command?
____________________________________________________________________________________
h. To remove a non-empty directory, type the rm –r ITEfolder3 command to delete the non-empty folder.
Use the ls command to verify that directory was deleted.