(COMS10012 / COMSM0085)
Lecturers:
Unit Director:
ssh
,vagrant
,apt
)git
)sudo
,grep
,sh
) and build tools (make
,javac
,pip
)gdb
,strace
,ltrace
)mariadb
, SQL)wget
, BeautifulSoup)gpg
, OpenSSL, LetsEncrypt)One 2-hour paper-based multiple-choice exam.
Plus: completion of the mandatory attendance hurdle for labs.
Combined result of 2 in-class tests. Each will be:
If you pass on the combined result of Part 1 & Part 2, you pass (even if you failed one test).
If you fail on the combined result, you fail (even if you passed one test).
Short mock exams will be made available.
We will be covering:
(or, “A Sysadmin’s Illustrated Primer”)
ssh
to access the lab machines remotely.(or, “grep gud”)
grep
and sed
)Goal: log in to the lab machines remotely (so we can do exercises from our beds)
Secure Shell – tool for secure remote shell sessions.
Requires the machine we want to log in to (the host) to already be running sshd
– the ‘daemon’ that handles
SSH connections.
ssh user@host
Problem: The lab machines aren’t directly accessible over the internet.
ssh user@seis.bris.ac.uk
SEIS: Not a lab machine, but accessible from the internet.
ssh user@rd-mvb-linuxlab.bristol.ac.uk
A load-balancer randomly assigns us to a lab machine!
user@host:~$
Some of the things you will do in this unit require admin rights.
But we don’t want to give you admin rights to the lab machines.
Solution: Virtual machines managed by a container system (vagrant
).
You can freely reconfigure, install software, destroy the OS, etc.
Write a Vagrantfile
which specifies the configuration.
vagrant up
to launch the VM.
vagrant ssh
to log in to the VM.
vagrant halt
to shut down the VM.
On the lab machines: VM storage isn’t persistent.
Global Regular Expression Print.
Regular expressions are a series of characters that define a pattern that we want to select or find within a piece of text. The regular expression rules form a primitive grammar (a Type 3 on the Chomsky hierarchy) that can be used for specific purposes.
grep pattern file
The patterns can be sequences you want to find.
grep ench /usr/share/dict/cracklib-small
But also include control characters with special meaning
grep ^ench /usr/share/dict/cracklib-small
grep ench$ /usr/share/dict/cracklib-small
grep ^..ench..$ /usr/share/dict/cracklib-small
Searching for patterns in text is an extraordinarily common task for programmers, and regular expressions are much more powerful than the above indicates.
Some other tools: head
, tail
, less
wc -l
.
But how can we combine these tools?
Pipes connect Unix tools together.
grep ench /usr/share/dict/cracklib-small | head
grep ench /usr/share/dict/cracklib-small | head -10
grep ench /usr/share/dict/cracklib-small | head -10 | wc -l
grep ench /usr/share/dict/cracklib-small | head -10 | tail -1
grep ench$ /usr/share/dict/cracklib-small | sed 's/ench/itch/' | less
With pipes, Unix tools (that ‘do one thing well’) can be stitched together into powerful single-use systems to accomplish difficult tasks.
Implements a form of software modularity & reusabilty, accessible at your primary interface with the OS.
We’ll see you on Friday.