Assignment 2, due Sept. 9
Part of
the homework for 22C:112, Fall 2013
|
On all assignments, your name must be legible as it appears on your University ID card! Assignments are due at the start of class on the day indicated (usually Friday). Exceptions will be by advance arrangement unless there is what lawyers call "an act of God" (something outside your control). Homework must be turned in on paper, either in class or in the teaching assistant's mailbox. Never push late work under someone's door!
a) Virtualization began with virtual memory. In what decade did virtual memory emerge? What was the first system to offer virtual memory? (0.5 points)
b) The second step in virtualization was the virtual machine operating system. In what decade was the first virtual machine operating system released (0.5 points)
#!/bin/tcsh echo X $argv $argv $argv
a) What is the output if you type this shell command? (0.5 points)
./script echo hello world
b) What is the output if you type this shell command? (0.5 points)
./script ./script ./script ./script
c) What terminates the recursion? (0.5 points)
To connect to the departmental Linux cluster without setting up a VPN from off campus, you must use port 40 (or 30022, as formerly recommended). From on-campus or if using a VPN from off campus, port 22 works.
For access from a Linux or Mac system, open a local terminal window and type:
ssh -p 40 linux.cs.uiowa.edu
The current recommended tool for ssh access from Windows machines is PuTTY. This is open-source software available as a free download from the official PuTTY web site:
http://www.chiark.greenend.org.uk/~sgtatham/putty/
The PuTTY session panel lets you specify ssh as the session type and lets you override the default port number.
This version of the instructions was edited using port 40.