Linux System Administration: Linux Professional Institute (LPI) Certification Level 1 Exam 101
Linux System Administration: Linux Professional Institute (LPI) Certification Level 1 Exam 101
Summary Contents
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
2 Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
Detailed Contents
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 Unix and Linux . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2 Unix System Architecture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 Unix Philosophy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.4 What is Linux? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.5 Using a Linux System . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.6 Linux Command Line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.7 Logging Out . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.8 Command Syntax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.9 Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.10 Creating Files with cat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
1.11 Displaying Files’ Contents with cat . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.12 Deleting Files with rm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.13 Unix Command Feedback . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.14 Copying and Renaming Files with cp and mv . . . . . . . . . . . . . . . . . . . . 8
1.15 Filename Completion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.16 Command History . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
1.17 Exercise 1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.18 Exercise 2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.19 Exercise 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
1.20 Exercise 4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2 Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
2.1 Files and Directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.2 Examples of Absolute Paths . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.3 Current Directory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
2.4 Making and Deleting Directories . . . . . . . . . . . . . . . . . . . . . . . . . . 14
2.5 Relative Paths . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
2.6 Special Dot Directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
2.7 Hidden Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
2.8 Paths to Home Directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
2.9 Looking for Files in the System . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
2.10 Running Programs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
2.11 Specifying Multiple Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
2.12 Finding Documentation for Programs . . . . . . . . . . . . . . . . . . . . . . . . 18
5.19 Exercise 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5.20 Exercise 4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
Module 1
Introduction
◆ Unix philosophy
◆ Unix commands
◆ Unix standards and conventions
■ There is some variation between Unix operating systems
applications
programs
X shell
kernel
hardware
3. Unix Philosophy
■ Multi-user
■ Small components
4. What is Linux?
■ Linux kernel
■ Linux distributions
◆ Kernel plus utilities plus other tools, packaged up for end users
◆ Generally with installation program
◆ Distributors include: Red Hat, Debian, SuSE, Mandrake
7. Logging Out
■ To exit from the shell, use the exit command
■ Pressing Ctrl+D at the shell prompt will also quit the shell
8. Command Syntax
■ Most commands take parameters
◆ Usually lower-case
$ echo whisper
whisper
$ ECHO SHOUT
bash: ECHO: command not found
9. Files
■ Data can be stored in a file
■ Note the greater-than sign (>) – this is necessary to create the file
■ The rm is typical
◆ Use the Up and Down cursor keys to scroll through the list of
previous commands
◆ Press Enter to execute the displayed command
■ Commands can also be edited before being run
17. Exercise 1
1 Log in.
2 Log out.
18. Exercise 2
1 Use the ls command to see if you have any files.
5 Display the file again, but use the cursor keys to execute the same
command again without having to retype it.
19. Exercise 3
1 Create a second file. Call it secret-of-the-universe, and put in
whatever content you deem appropriate.
20. Exercise 4
After each of the following steps, use ls and cat to verify what has
happened.
Module 2
Getting Started
3. Current Directory
■ Your shell has a current directory – the directory in which you are
working
■ Use the pwd command to see what your current directory is:
$ pwd
/home/fred
■ Use rm with the -r option to delete directories and all the files they
contain:
$ rm -r OldAccounts
5. Relative Paths
■ Paths don’t have to start from the root directory
$ cd /
$ cd usr
$ cd share/doc
7. Hidden Files
■ The special . and .. directories don’t show up when you do ls
■ You can still read hidden files – they just don’t get listed by ls by
default
■ You can get the paths to other users’ home directories using ˜, for
example:
$ cat ˜alice/notes.txt
■ For example, to find files whose name contains the word ‘mkdir’:
$ locate mkdir
/usr/man/man1/mkdir.1.gz
/usr/man/man2/mkdir.2.gz
/bin/mkdir
...
■ locate is useful for finding files when you don’t know exactly what
they will be called, or where they are stored
■ Programs are run from the shell, simply by typing their name
■ Many programs take options, which are added after their name and
prefixed with -, for example:
$ ls
Accounts notes.txt report.txt
$ ls -l
drwxrwxr-x 2 fred users 4096 Jan 21 10:57 Accounts
-rw-rw-r-- 1 fred users 345 Jan 21 10:57 notes.txt
-rw-r--r-- 1 fred users 3255 Jan 21 10:57 report.txt
◆ Other things, like file formats and library functions also have
man pages
■ The shell expands the wildcard, and passes the full list of files to
the program
■ Just using * on its own will expand to all the files in the current
directory:
$ rm *
■ Another example, to join all the text files together and count the
words, lines and characters in the result:
$ cat *.txt | wc
17. Exercise 1
1 Use the pwd command to find out what directory you are in.
4 Change into the directory called home and again list the files
present. There should be one directory for each user, including the
user you are logged in as (you can use whoami to check that).
5 Change into your home directory to confirm that you have gotten
back to where you started.
18. Exercise 2
1 Create a text file in your home directory called shakespear,
containing the following text:
Shall I compare thee to a summer’s day?
Thou art more lovely and more temperate
2 Rename it to sonnet-18.txt.
6 Find a text editor program and use it to display and edit the sonnet.
19. Exercise 3
1 From your home directory, list the files in the directory /usr/share.
2 Change to that directory, and use pwd to check that you are in the
right place. List the files in the current directory again, and then list
the files in the directory called docs.
3 Next list the files in the parent directory, and the directory above
that.
4 Try the following command, and make sure you understand the
result: echo ˜.
5 Use cat to display the contents of a text file which resides in your
home directory (create one if you haven’t already), using the ˜/
syntax to refer to it. It shouldn’t matter what your current directory is
when you run the command.
20. Exercise 4
1 Use the hostname command, with no options, to print the hostname
of the machine you are using.
3 Use the locate command to find files whose name contains the
text ‘hostname’. Which of the filenames printed contain the actual
hostname program itself?
21. Exercise 5
1 The * wildcard on its own is expanded by the shell to a list of all the
files in the current directory. Use the echo command to see the
result (but make sure you are in a directory with a few files or
directories first)
5 Finally, use the rm command to delete the poetry directory and the
poems in it.
Module 3
1. Shells
■ A shell provides an interface between the user and the operating
system kernel
User
Shell
Kernel
4. Command-Line Arguments
■ The words after the command name are passed to a command as
a list of arguments
■ There is a special option ‘--’ which indicates the end of the options
■ Print out the value of a shell variable with the echo command:
echo $files
■ Use the echo command with a $ sign before a varable name to see
its value, e.g.
$ echo $PS1
[\u@\h \W]\$
$ ˆTSˆSTˆ
echo $HOSTNAME
tiger
■ There are other, less often used keys, which are documented in the
bash man page (section ‘Readline’)
■ For example, use the locate command to find all files called
manual.html and print information about them with ls:
ls -l $(locate manual.html)
ls -l ‘locate manual.html‘
■ The criteria always begin with a single hyphen, even though they
have long names
■ The command rm ’{}’ is run for each file, with ’{}’ replaced by
the filename
21. Exercise 1
1 Use the df command to display the amount of used and available
space on your hard drive.
2 Check the man page for df, and use it to find an option to the
command which will display the free space in a more
human-friendly form. Try both the single-letter and long-style
options.
3 Run the shell, bash, and see what happens. Remember that you
were already running it to start with. Try leaving the shell you have
started with the exit or logout commands.
22. Exercise 2
1 Try ls with the -a and -A options. What is the difference between
them?
2 Write a for loop which goes through all the files in a directory and
prints out their names with echo. If you write the whole thing on one
line, then it will be easy to repeat it using the command line history.
3 Change the loop so that it goes through the names of the people in
the room (which needn’t be the names of files) and print greetings
to them.
23. Exercise 3
1 Use the find command to list all the files and directories under
your home directory. Try the -type d and -type f criteria to show
just files and just directories.
2 Use locate to find files whose name contains the string ‘bashbug’.
Try the same search with find, looking over all files on the system.
You’ll need to use the * wildcard at the end of the pattern to match
files with extensions.
Module 4
2. Lines of Text
■ Text files are naturally divided into lines
■ More commonly used with just one file to quickly send its contents
to the screen:
$ cat /etc/resolv.conf
domain gbdirect.co.uk
nameserver 127.0.0.1
nameserver 192.168.100.12
■ If used with multiple files, outputs counts for each file, and a
combined total
■ Options:
■ Select a range of
◆ Characters, with -c
◆ Fields, with -f
■ Field separator specified with -d (defaults to tab)
■ Tab size (maximum number of spaces for each tab) can be set
with -t number
◆ Default tab size is 8
■ To only change tabs at the beginning of lines, use -i
◆ Defaults to 75
■ Example: change the line length of notes.txt to a maximum of 70
characters, and display it on the screen:
$ fmt -w 70 notes.txt | less
■ Options:
■ Output files are named using the specified output name with aa, ab,
ac, etc., added to the end of the prefix
■ Example: Split essay.txt into 30 line files, and save the output to
files short aa, short ab, etc:
$ split -l 30 essay.txt short
■ Use the -b option, and with the k and m sufixes to give the chunk
size in kilobytes or megabytes
■ Prints the last line of the input first, the penultimate line second,
and so on
■ Example: show a list of logins and logouts, but with the most recent
events at the end:
$ last | tac
■ Options:
21. tr Examples
■ Replace all uppercase characters in input-file with lowercase
characters (two alternatives):
$ cat input-file | tr A-Z a-z
$ tr A-Z a-z < input-file
26. Exercise 1
1 Type in the example on the cut slide to display a list of users
logged in. (Try just who on its own first to see what is happening.)
27. Exercise 2
1 Try making an empty file and using tail -f to monitor it. Then add
lines to it from a different terminal, using a command like this:
$ echo "testing" >>filename
2 Once you have written some lines into your file, use tr to display it
with all occurances of the letters A–F changed to the numbers 0–5.
3 Try looking at the binary for the ls command (/bin/ls) with less.
You can use the -f option to force it to display the file, even though
it isn’t text.
4 Try viewing the same binary with od. Try it in its default mode, as
well as with the options shown on the slide for outputting in
hexadecimal.
28. Exercise 3
1 Use the split command to split the binary of the ls command into
1Kb chunks. You might want to create a directory especially for the
split files, so that it can all be easily deleted later.
2 Put your split ls command back together again, and run it to make
sure it still works. You will have to make sure you are running the
new copy of it, for example ./my ls, and make sure that the
program is marked as ‘executable’ to run it, with the following
command:
$ chmod a+rx my ls
Module 5
1. Filesystem Objects
■ A file is a place to store data: a possibly-empty sequence of bytes
home/ bin/
jeff/ cp rm
3. File Extensions
■ It’s common to put an extension, beginning with a dot, on the end
of a filename
■ For example:
$ cd /usr/src
$ pwd
/usr/src
◆ But also saves the current directory, so that you can go back
later
■ popd takes you back to the directory where you last did pushd
6. Filename Completion
■ Modern shells help you type the names of files and directories by
completing partial names
7. Wildcard Patterns
■ Give commands multiple files by specifying patterns
■ Common options:
9. Examples of cp
■ Copy /etc/smb.conf to the current directory:
$ cp /etc/smb.conf .
■ Copy all the GIF and JPEG images in the current directory into
images:
$ cp *.gif *.jpeg images/
■ You must have write permission for the directory the file is in to
remove it
■ Options:
■ Options:
■ Options:
17. Exercise 1
1 Just after you’ve logged in or opened a terminal window, what
directory is your current directory? (The pwd command might be
useful here.)
2 Change directory to /etc and then /tmp. Each time use pwd to check
that you got to the right place, and ls to see what files are there.
3 From /tmp, use cd .. and see where you end up. Then try it again
from your working directory.
4 Find out what files are in /bin, without changing your current
directory. You should recognise the names of some of the programs
stored there.
5 List the files in /usr/bin and /usr/local/bin (if it exists). Use the Tab
key to save typing.
18. Exercise 2
1 Use cd to go to your home directory, and create a new directory
there called dog.
2 Create another directory within that one called cat, and another
within that called mouse.
3 Remove all three directories. You can either remove them one at a
time, or all at once.
4 If you can delete directories with rm -r, what is the point of using
rmdir for empty directories?
5 Try creating the dog/cat/mouse directory structure with a single
command.
19. Exercise 3
1 Copy the file /etc/passwd to your home directory, and then use cat
to see what’s in it.
20. Exercise 4
1 The touch command can be used to create new empty files. Try
that now, picking a name for the new file:
$ touch baked-beans
3 Wait for a minute, and then try the previous two steps again, and
see what changes. What happens when we don’t specify a time to
touch?
4 Try setting the timestamp on the file to a value in the future.
Module 6
1. Standard Files
■ Processes are connected to three standard files
STANDARD INPUT
PROCESS
STANDARD STANDARD
OUTPUT ERROR
2. Standard Input
■ Programs can read data from their standard input file
■ Abbreviated to stdin
3. Standard Output
■ Programs can write data to their standard output file
■ Abbreviated to stdout
4. Standard Error
■ Programs can write data to their standard error output
■ Standard error is similar to standard output, but used for error and
warning messages
■ Abbreviated to stderr
5. Pipes
■ A pipe channels the output of one program to the input of another
7. Appending to Files
■ Use >> to append to a file:
$ date >> log.txt
◆ The default is 1
■ xargs is very often used with input piped from find
11. tee
■ The tee program makes a ‘T-junction’ in a pipeline
everyone.txt
12. Exercise 1
1 Try the example on the ‘Pipes’ slide, using rev to reverse some text.
2 Try replacing the echo command with some other commands which
produce output (e.g., whoami).
3 What happens when you replace rev with cat? You might like to try
running cat with no arguments and entering some text.
13. Exercise 2
1 Run the command ls --color in a directory with a few files and
directories. Some Linux distributions have ls set up to always use
the --color option in normal circumstances, but in this case we will
give it explicitly.
2 Try running the same command, but pipe the output into another
program (e.g., cat or less). You should spot two differences in the
output. ls detects whether its output is going straight to a terminal
(to be viewed by a human directly) or into a pipe (to be read by
another program).