Stolen from prior quarters. Note that that means this information is not specific to this quarter, and that procedures this quarter may require more, or less, than what is described here.
This course explores low-level topics in machine representation of programs and data. For our reference system, we're using CentOS Linux. Other Linux and Mac OS X systems are very similar, and Windows machines also use the same underlying processors and memory organization. But for assignments in this course, your submissions need to work on, and will be graded on, our reference system.
This is a quick little tutorial on how to get yourself up and running on Linux. As non-majors, you will be granted access to a special departmental server called klaatu.cs.washington.edu. You are welcome to use klaatu or the CSE virtual machine, which are running the same Linux image. If you are using the CSE virtual machine, then read just “Shell on Linux” and then from “Finding your way around the shell” onward.
The shell is the bread and butter of linux. I know -- graphical things are nice -- but the linux shell brings you a lot of power with not very many key presses. As computing becomes more and more prevalent across all industries, you may find yourself using a linux shell at some point, so it's a good skill to have/know.
Windows' default command line interfaces are Command Prompt and PowerShell, which use a different set of commands and tools and behave differently than the shells on Mac and Linux. Instead, you can connect to klaatu using either of the following methods:
The Mac OS X Terminal behaves very similarly to most linux shells. As a result, most of the commands on Terminal will be the same as those from a linux shell. However, to use the linux shell commands for 410, we will connect to klaatu.
You won't need to do any special setup on Linux, as you have a shell installed. It is still recommended that you connect to klaatu to ensure that you have all of the tools needed and are using the same environment as everyone else.
klaatu is a powerful computer sitting in the CSE building that is ready to run your work, except that it has no screen. It runs linux, and can only be accessed over the network. You will be granted an account (your UWNetID) on klaatu for the quarter. klaatu has all of the commands that you will need in the 410 labs, and is built to be fast, so more often than not it's most convenient to run lab programs on klaatu.
putty.exe
from wherever you downloaded it.<your-uwnetid>@klaatu.cs.washington.edu
Open the shell on your computer (see "Getting a Shell" above). Now that you have a terminal up, type:
ssh <your-uwnetid>@klaatu.cs.washington.edu
Press enter. If prompted about a server key, type yes and press Enter. When prompted, enter your Kerberos password and push Enter. Like PuTTY, it won't look like you're typing. This is done on purpose :)
Your default password is likely ugly and difficult to remember, so let's change it. Type passwd
into the command prompt and press Enter, then follow the instructions given.
First off: folders are a fancy word that Microsoft invented to make comptuers seem more human. While folders are great, they're called directories on linux.
The first thing that most new users shifting from Windows will find confusing is navigating the Linux filesystem. The Linux filesystem does things a lot more differently than the Windows filesystem.
/
)For starters, there is only a single hierarchal directory structure.
Everything starts from the root directory, represented by '/
', and then
expands into sub-directories. Where DOS/Windows had various drives
(C:, D:, etc) and
then directories under those partitions, Linux places all the drives
under the root directory by 'mounting' them under specific directories.
The closest parallel to the root directory in Windows would probably be C:.
Another point likely to confuse newbies is the use of the frontslash '/' instead of the backslash '\' as in DOS/Windows. So c:\windows\system would be /c/windows/system. Well, Linux is not going against convention here. Unix has been around a lot longer than Windows and was the standard before Windows was. Rather, it was DOS that took the different path, using '/' for command-line options and '\' as the directory separator.
~
)To keep people (users) from stepping on each other's toes, everyone has one
directory ("folder") that they can write and make changes to. This is
called your "home directory". On any unix system, you can
refer to the home directory with a tilde, so a folder called frogs
inside of your home directory would have a path like:
~/frogs
When you run a command, your shell will replace ~
with the path to
your home directory. If you want to know what that is or how to
manipulate the shell, read the next section on basic unix commands.
.
and ..
)The shell also allows you to directly reference directories relative to your current working
directory. '.
' represents the current working directory. '..
' refers to
the direct parent of the current working directory. Every additional '.
' refers to the directory one
level higher.
This can be pretty handy in working your way around your directory structure. For example, if you are in the
folder lab1
, a sibling directory lab2
would be referred to as:
../lab2
To move around through the directory structure in your terminal window,
you'll need to know a few basic Unix commands. Note that you always start in your home directory
when you open a terminal.To get help on some command, say you want to know how to use
ls
, type "man ls
" and you will get the manual pages for that command.
(Alternatively, you can use "info" in the same way.)
Command | Function | Example | Explanation | Notes |
---|---|---|---|---|
mkdir |
Creates a new directory with the given name in the current working directory. | mkdir lab1 |
This will create a new directory called "lab1 ". |
|
ls |
Lists all directories and files in the current directory. | ls -A |
This will list all sub-directories and files. The -A flag means that hidden directories and files will also be printed to the console. | Check the manual page for ls to find out various flags to show directories and files in different forms. |
cd |
Navigates to the specified directory, given its relative path. | cd lab1 |
This will navigate to the lab1 directory inside the current directory. |
This is a common place where . and .. are used. Also, to use a directory's absolute path, start the directory name with either / or ~ . For example:
|
pwd |
Prints the current working directory path. | pwd |
This will print the current working directory's absolute path to the console. | |
exit |
Exits the console, or logs out of the current SSH session. | exit |
This will terminate the current terminal window. If you are SSH'd into klaatu, this will terminate your session. |
Here is a sample execution of some Unix commands. The [klaatu]$
is just the prompt telling you that
you're logged into klaatu. Lines that don't start with this prompt are output returned by the shell in response to the previous command.
[klaatu]$ mkdir mydir [klaatu]$ ls mail mydir [klaatu]$ cd mydir [klaatu]$ pwd /homes/jhsia/mydir [klaatu]$ exit
These are just the very minimum basics, of course.
The shell is the program where you type in commands. There are different shell programs, which are all similar but have different rules and features. For sake of uniformity, we will use a shell called "bash," and your account should be set-up to use this by default. You can check using the following command:
[klaatu]$ echo $0
In case the output isn't bash
or -bash
(or you're updating your personal Linux machine),
you can change the shell temporarily or permanently.
We strongly recommend the latter, but we'll explain the former
first to help you understand what is going on.
Temporarily: Just type
[klaatu]$ bash
Now you may have a different-looking prompt (such as [bash-3.00]$
),
but otherwise at this point you will not notice any differences.
Note that instead of changing your shell, you've actually opened up
a new shell (we'll discuss processes in this course), so when you type
[bash-3.00]$ exit
you'll actually return to the original shell (the one you typed bash
into).
Permanently: You could type bash
every time you create an terminal,
but that's a pain and you could get confused if you forget.
So instead, you can tell the operating system that the "first shell" for every terminal
should be bash for your account.
From any prompt, type:
[klaatu]$ chsh -s /bin/bash
You are running the "change shell" program and
specifying that your new shell can be found at /bin/bash
. It's almost
that simple:
chsh
will just say
"Shell not changed."
First thing's first: There is a ton of debate about this.
For this course, you can use something as simple as Notepad. However, we strongly recommend something better to help you read and debug your code. Here is a list of text editors, listed by OS, that we recommend:
When you run a command like btest
on klaatu, you may see something
like the following:
Gives 1942614435[0x73c9f1a3]. Should be 204869213[0xc360e5d] ... 9 total errors for function abs Test abs score: 0.00/4.00 Test addOK(-2147483648[0x80000000],-2147483648[0x80000000]) failed. Gives -2147483648[0x80000000]. Should be 0[0x0] Test addOK(-2147483648[0x80000000],2147483647[0x7fffffff]) failed. Gives -2147483648[0x80000000]. Should be 1[0x1] Test addOK(-2147483648[0x80000000],-3[0xfffffffd]) failed. Gives -2147483648[0x80000000]. Should be 0[0x0] Test addOK(-2147483648[0x80000000],811666840[0x30610d98]) failed. Gives -2147483648[0x80000000]. Should be 1[0x1] Test addOK(-2147483648[0x80000000],-2147483647[0x80000001]) failed. Gives -2147483648[0x80000000]. Should be 0[0x0] ... 321 total errors for function addOK Test addOK score: 0.00/3.00 Overall correctness score: 14.00/36.00 1541 errors encountered.
What happened to the first part of it? Answer: it scrolled up past the top of your terminal. You'll have to tell klaatu you want to save all of that output somewhere, like this:
[klaatu]$ ./btest >feedback_filename
If you run btest
(or any command) like this, linux will save its
output in the file called "feedback_filename" for you to
view later in your favorite text editor.
Alternatively, if you just want to see the output once, try it this way:
[klaatu]$ ./btest | less
You can then use the up/down arrow keys to move around your output
in a quick and dirty fashion. Use the 'q' key to quit. Be aware: Once
you quit, the output is gone for good! But, luckily for you, you
can just re-run btest to get it back. You can also use less to view
the output from your saved file, like less feedback_filename
.
Not everything is perfect, sadly :(. One of those is our build
system. Though it is unlikely, the rule of thumb when running the make
command is:
If something really doesn't look like it's running right, do a
make clean
, then a make
and try it
again.
To save time, make and gcc will save some of the computation required to build your software. However, at times, this can become corrupt and interfere with changes you're making.