This tutorial provides a basic introduction to the software tools we suggest you use in this course. Read this material through first and then try out the instructions on the computer. Refer back to this material when necessary throughout the course. If you need help, ask a consultant or any of your instructors to show you how. Play some with the computer outside the requirements of the course. It's fun and will make you more comfortable with the software required by the course.
UCS provides many handouts to help you learn about the computing environment at IU, and they offer classes to help you get started with computers. Below is a list of pamphlets you might want to look at.
In this tutorial we explain what we believe to be the simplest and generally most satisfactory ways of accomplishing things, but there are usually other ways to do the same thing. For example, on UCS PCs telnet can be accessed from Windows as well as the menu access we describe below. In Windows the telnet font is smaller, but it is possible to switch to other Windows applications, such as Mosaic, without leaving your telnet session.
You are encouraged to explore the wondrous complexities of our software environment, and in the process you will doubtless discover other approaches that you prefer at least some of the time. As in all things, this exploration should be pursued in moderation--don't neglect other aspects of life!
Using the up or down arrow keys in the main menu, highlight the Communications option, and then hit the Return or Enter key, hereafter indicated by <CR>. You will see another menu. With the arrow keys, move to the first telnet option and select it with <CR>.
Now you will see a box in which you are asked for the name of the computer you wish to log into. Type copper<CR>. The telnet screen appears next with the login prompt.
Skip the following Macintosh information for further instructions.
Now you will see a collection of odd-looking icons, with one named copper; double-click it. The Telnet program will start up in a new window with the login prompt.
If you receive an Incorrect Password error, try typing your username and password again, slowly and carefully. If repeated attempts fail, see a consultant.
Once you've successfully entered your username and password, the computer prints out a welcoming message and gives you the UNIX shell prompt copper ~>. (The ~ indicates you are in your home directory. The prompt will be modified accordingly if you move to another directory.) At this prompt you may enter any UNIX command.
On the PC you will be returned to the Communications menu, on the Macintosh you will be left in the Telnet program and then need to select Quit from the File menu to exit the telnet program.
UNIX commands may only be entered at the shell prompt. If a typing mistake is made, it can be erased with the Delete key. Each time you press the Delete key, the cursor moves one space to the left, erasing the character in that space.
copper ~> ls binYour home directory comes with an empty bin directory, that you will have no need for in this course. For now just keep it simple by staying in your home directory. After you've finished the tutorial below, try this command again. By then you will have created more files in your home directory.
There are a few more files in your account. These are "dot" files which contain information to configure your account. To see these files, you type
copper ~> ls -aYou will see a number of files such as .login and .profile. Do not delete any of these "dot" files.
cp .login test1.txtYou can name the copy anything you want, as long a name as you want. (Any letter or number may be used in a UNIX name, as well as some special characters such as dot. UNIX, unlike some other operating systems such as DOS, is case sensitive: upper and lower case versions of the same letter are considered to be different. You should try to keep the extension after the dot the same, since that tells you what kind of file it is. Scheme files generally end in .ss and text files often end in txt. You can see if the copy was made by entering the command ls. cp does not remove the original file.
To try this on your own, copy the file test1, which you just created, into a file test2.txt. When you type ls, you should see three file names: bin, test1.txt, and test2.txt.
mv test2.txt test3.txtNow there should be no file test2.txt, and a new file test3.txt that is exactly what test2.txt was.
rm test3.txtThis deletes the file test3.txt from your directory. Be very careful when using this command; you may not be able to get the file back if you delete it accidentally.
more test1.txtor
cat test1.txtThe first shows you the contents of the file, one screenful at a time. Press the space bar to go from screen to screen. Hit return to move down one line at a time. Type q to quit (get back to the shell prompt) before the end of the file. cat scrolls through the whole file without stopping.
To print a file to a given printer, say cs_ps10, use the lpr command with the argument -Pcs_ps10. For example, to print text1.txt to the laser printer in LH004, type:
lpr -Pcs_ps10 save.txtSometimes many people print files at the same time. You can look at the list of files waiting to be printed using the command:
lpq -Pprinter-nameIf you are picking up your printout immediately and the printer is not busy, you use the -h flag, which tells the printer not to print a header page with your name on it:
lpr -Pprinter-name -h filenameIf you change your mind about printing a file, and it has not started to print, you can use the command lprm to remove it from the queue of files. Use man lprm to find out more about it.
Using Scheme
To start Scheme from the shell, just use the command scheme
(If you have much
to do in Scheme, we suggest you run it in emacs instead. We'll get to that
presently.) Scheme greats you with a message identifying itself and then
the Chez Scheme prompt >. At the Scheme prompt you can
enter any Scheme expression. For example
copper ~> scheme Chez Scheme Version 4.1b Copyright (c) 1991 Cadence Research Systems > (+ 3 4) 7 >When you press <CR>, Chez Scheme's read-eval-print loop evaluates the expression and prints the answer 7. Then you again get the prompt >. Enter 'cat, making sure you type the apostrophe before the word cat. Chez Scheme returns cat and then prompts with >. Chez Scheme is case insensitive. Regardless of whether quoted variables are entered in upper- or lower-case letters, Chez Scheme returns them in lower-case letters. Now enter 15 and we see that 15 is returned. Numbers need not be quoted when they are entered; they are self-evaluating. The symbol cat is not self-evaluating: we had to quote cat in order to have it interpreted literally as the symbol cat. Now enter cat without the quote. You get a message which tells you that the variable cat is not bound (don't worry about the "debugger" information for now, every error causes that to appear). cat, unquoted, is a variable that has not yet been given a value.
Now observe the results of entering each of the following expressions in response to the Scheme prompt. Can you explain the results in each case?
5 '5 cat 'cat (cat dog mouse) '(cat dog mouse) (+ 1 2 3 4 5) '(+ 1 2 3 4 5) '(car '(one two three)) (car '(one two three)) (cdr '(one two three)) (cons 'one '(two three))We exit from Scheme and return to the shell prompt by responding to the Scheme prompt with
> (exit)or by typing C-d. (This is our notation for control-d; hold down the control, or ctrl, key while pressing the d key.)
emacs test.ssGiven emacs a filename argument, such as test.ss causes emacs to load the given file for editing if it exists, or start a new buffer for creating the file if it does not exist.
You will now see a blank window with the cursor at the upper left corner and a banner at the bottom displaying Emacs and some other information such as (Scheme), indicating that the editor is in its Scheme mode.
Now type
(car '(one two three))again and observe that when you close each pair of parentheses, the cursor bounces to show you the matching opening parentheses. The expression is not being entered in Scheme itself, so you will not see the result of its evaluation, but it can be sent to Scheme at any time, as we shall see. Press DEL (the delete key) and notice what happens: it erases the character to the left of the cursor.
We shall next learn to use the editing commands of Emacs. In Scheme mode emacs bounces the cursor for parenthesis matching and some other tricks that are great for Scheme programming, but not when you are typing prose (say in English). For that you want to be in text mode. We switch from the Scheme mode to text mode by pressing ESC (the escape key), releasing it, then pressing x. Note that M-x appears at the left end of the banner at the bottom of the screen. Now type text-mode<CR>. In the future, typing such as sequence will be indicated by M-x text-mode. (M-x is read "meta-x". On some keyboards M-x may also be entered by holding down a meta or alt key while pressing x.)
Notice that now the word (Text) appears in the banner at the bottom of the screen. When you call up Emacs with a filename ending with the extension .txt, Emacs goes directly into Text mode, whereas when the filename has the extension .ss, it automatically goes into Scheme mode.
When entering emacs command names after the M-x (read "meta x") prompt, you can hit the space bar to cause Emacs to show you all the current completions of the command you are entering. This can save you from typing the whole command.
To move forward over one word, use the command M-f. (Recall this is read "meta-f" and may be entered by pressing ESC and then f.) Next try M-b and watch the cursor move backward one word. You can abort a command or sequence of keystrokes with C-g. For example if you have typed ESC, but then decide that you want to move forward a character, enter C-g to abort the ESC keystroke, and then enter C-f. Try it.
Now enter C-e. The cursor moves to the right end of the current line. Entering C-a moves it back to the beginning of the current line. Two additional commands that you will find useful are C-v which moves ahead to the next screen and M-v, which moves back to the previous screen.
Below is a summary of the Emacs commands used in this tutorial. You will have a chance to use them in the assignment which follows the summary.
Scheme programming in Emacs
When editing Scheme programs, you always want to be in Scheme mode. We
have seen that this happens automatically if you visit a file with the
extension .ss, or you can switch to Scheme mode at any time
using the command M-x scheme-mode. There is no Scheme prompt
in Scheme mode, since we are simply editing text that will later be sent to
Scheme. Let's start by typing
(define cat 'cheshire)When you typed the right parenthesis, it bounced back and matched the left parenthesis. In this way, you will always be able to tell which pairs of parentheses have been properly closed. At this point, let's save the Emacs buffer to the file pets.ss by entering C-x C-w. You can tell that it has been saved by noting that the two asterisks are no longer at the left end of the banner line.
To start up a Scheme process in one of the two buffers, enter M-x run-scheme. We should now have our file pets.ss in one half of the screen, and Scheme in the other. This is probably the way in which you will prefer to do your work. Try switching between the Scheme buffer and the file buffer using C-x o.
We load the file pets.ss into Scheme by typing the expression (load "pets.ss") at the Scheme prompt. This causes Scheme to read and evaluate the expressions in the file just as if they had been typed in at the prompt. We call this loading the file. Now enter cat in response to the Scheme prompt. (Do not quote the symbol cat this time.) Instead of a message indicating an unbound variable, cheshire is returned. We have bound the variable cat to the value cheshire and when Scheme evaluated the atom cat, it returned its value.
Now to get back to the file pets.ss, type C-o again. Use C-n or the down-arrow to skip a line below what has been typed, go to the beginning of the following line and then type
(define dog 'beagle)Save the buffer again using C-x C-w and return to Scheme using C-o. In order for Scheme to know the new definition, we must load the file again. You may load the file pets.ss again by either typing the statement again, or by using the arrow keys to move up to the previous line where you loaded the file. Move the cursor to the end of the line (did you remember C-e?) and then press <CR>. Emacs should have copied the load expression to the last prompt, causing Scheme to evaluate the load expression again, just as if you had typed it again. Respond to the Scheme prompt with dog. We get the answer beagle. Now go back to the pets.ss buffer using C-x o.
(define coupleand watch carefully how the second line was indented and how the parentheses match as each pair is closed. When typing expressions into Scheme directly (within Emacs), the expressions will also be indented. The Tab key may be used to re-indents the current line if the indentation is not right.(cons cat (cons dog '())))
Now save the file, return to the Scheme buffer, and load the file pets.ss. When you get the Scheme prompt, enter couple. You should get the answer (cheshire beagle). Now while in Scheme, enter
> (cons 'a couple)and you get the answer (a cheshire beagle) (What happens if you now type couple again?). Now kill the Scheme process by entering (exit). To get rid of the empty buffer on the screen, change to the other buffer with C-x o and type C-x 1 which will make the current buffer the only one on the screen.
We now return to Scheme to make a point. Type M-x run-scheme again. When you get the Scheme prompt, >, enter cat. You get an error message since the previous Scheme process was terminated and the variable cat is not bound to a value in the current process. Next enter
> (load "pets.ss")If we now enter cat, we get the answer cheshire.
> (define mylist
(cons 'one
(cons 'three
(cons 'five '()))))
If you type mylist in response to the next prompt, you
should see the list (one three five). Now press the
up-arrow key enough times to get back to the definition of
mylist. Using C-p, move the cursor up to the
end of (cons 'one. Press C-o. This opens up
a blank line below the line (cons 'one. You move to the
beginning of that blank line by pressing C-n and
pressing Tab will move the cursor under the ' in
'one. (You may also use C-j to open a new line
and move to the correct indentation automatically). Now type
(cons 'two. We move to the next line using
C-n and re-indent the line using Tab.
Pressing the space bar to add spaces moves the line to the right, but
Tab or DEL will bring it back. Now move to the
next line and edit the 'five to be 'four and
indent the last line to be correct (go to that line and hit
<TAB>). You also have to add one right parenthesis at the end of
the last line to close all of the parentheses. Your screen should now
look like this:
> (define mylist
(cons 'one
(cons 'two
(cons 'three
(cons 'four '())))))
With the cursor at the end of the last line,
press <CR> to evaluate this expression. Now type
mylist and you should see the answer (one two three
four). This exercise was designed to show you how to edit in
Scheme itself instead of going into an Emacs buffer. The commands for
moving around in both are essentially the same, when Scheme is run
within Emacs. When Scheme is run outside of Emacs from the shell
prompt, it does not have any fancy editing commands.
n Now move the cursor to the end of the expression, and press C-w. The lines between where the mark was set and where you pressed C-w should disappear, but they are not gone forever. They are in something called the Kill Buffer. If you now type C-y (yank from kill buffer) the lines will be restored.
Now go to the other buffer, pets.ss, and position the cursor at the bottom of the file. Press C-y again, and another copy of the expression will appear. You may copy expressions either way using this method, from one buffer to another, from Scheme and to Scheme, and within one file. This is analogous to the cut and paste operations many word processors provide.
We are now finished, and you may exit Emacs by typing C-x
C-c.
Reading Mail
To read mail in Emacs, use the command M-x rmail. A new
buffer pops up displaying your first email message, and you are in
rmail mode. In this mode many keys, including the normal letter
keys, invoke commands special to rmail mode. Space and
DEL scroll the current message down and up, respectively.
n and p move to the next and previous messages,
respectively. d deletes the current message. q saves
undeleted messages and exits rmail mode. C-o prompts for a
file name and the current message is saved in the named file.
r replies to the current message, popping up a new buffer to compose the message. This is similar to C-x m, but the To: field is filled in for you and when the cursor is positioned in the body you may use C-c C-y to yank the message you are replying to into the current buffer with some indentation.
In any emacs mode (so far we have introduced Scheme mode, text mode, and rmail mode), the command C-h C-h m may be used to display in a separate buffer a summary of all the mode-specific commands.
Either way, Mosaic starts by displaying the IU Bloomington home page. Under the heading On the IUB campus the item List of all IUB departments, units, and divisions is underlined. This means it is a WWW link to another page of information. Just click on a link to follow it. Try this one. A new page appears with a list of items, one of which is Computer Science. Click on it to brings up the Computer Science Department's home page. Follow the Courses link and then the C211 link to bring up the home page of this course, which was passed out in hard-copy form on the first day of class as the course description.
If you know the Universal Resource Locator (URL) of a page, you can jump to it directly at any time you are running Mosaic by pulling down the File menu and selecting Open. This pops up a window in which to enter the URL. The URL of the C211 home page was given in the course description. Next time you can use it to avoid the long navigation outlined in the last paragraph.
Generally clicking a link calls up another mosaic page, though some links have other behavior such as displaying a simple text page or a directory structure, or perhaps starting a postscript file viewer or a newsgroup viewer. If you have followed a link to a page and want to return to the original page, click on the left arrow or Back button at the top or bottom of the Mosaic window.
You might like to access the WWW from home with a modem connection,
rather than the high-speed network connection provided all UCS
microcomputers. This is possible using the UNIX command lynx
while logged into a UNIX machine using a standard terminal emulator. Lynx
does not support color and graphics as Mosaic does, but it provides basic
Web browsing capability.
Reading Newsgroups
The UNIX world has newsgroups, similar to VMS Notes and PC
bulletin boards, for group communication. There are many newsgroups that
you may be interested in if you have the time, but for the purposes of this
class you will only need one, ac.c.211. It serves
as a forum for you to ask questions of each other and of the instructors,
make comments about the class, and receive information from the
instructors.
You can access our class newsgroup from WWW by calling up the C211 home page using Mosaic and first selecting Communications and then selecting ac.c.211. This may be the most convenient way four you to read our newsgroup. You may also use the newsgroup reader trn by using the UNIX command
trn -q ac.c.211If you want to browse through other newsgroups, just enter trn. Some other local groups you may be interested in are cs.general, cs.students, and iu.general. There is a protocol to posting articles to non-class newsgroups. You should subscribe to news.announce.newusers and read it before posting anything outside of our class newsgroup.
Trn asks you several questions. If you are in doubt, or do not remember what to do, type h for "help" and trn will show you a list of commands and a short description. Trn will pick a default action if you hit the space bar, which is often what you want.
When you enter a newsgroup you are often shown a list of threads which are postings that share a common topic. Most of the time you will just want to hit the space bar to be shown the articles that you have not yet read.
While you are reading an article, hit s and then enter a file name to which the article will be saved. It is saved in a directory named News; to save it in another directory, you should give the path to that directory. For example, to save it in your home directory, type s ~/welcome.txt. Try this, then exit trn by typing q several times.
Often you may wish to go back to an article that you previously read. By default, trn only shows you articles you haven't seen yet. To reread a message, enter the newsgroup (even if there are zero unread articles), and then use P and N to move backward and forward among the unread article (P for "previous" and N for "next"). Lower-case p and n will also move you backward and forward among articles that you haven't read yet. You can also type the number of the article you want to see; the number is shown at the top and bottom of each article. You can get an index of all articles that were posted in a newsgroup by typing U when you get the prompt [npq]. You get another prompt [+tsan] to which you respond with a +. This produces the index of all articles. You can get more details about using trn by reading the man pages for trn.
If you want to post a reply to an article, you may type f while reading an article in the right newsgroup (f stands for "followup"). You will be prompted for a subject for your article, and then asked for a "Distribution". That will tell trn how far you want your message to be sent. You should always type iu there when posting to our newsgroup. That will make sure that your message doesn't go to a newsgroup with the same name somewhere in Australia. Answer the rest of the questions. When asked what editor to use, you may type emacs. When you are done editing your message, save it and exit from the editor. If you are sure that you want to post; type send. If you are outside of trn you can post a message by sending an email message to the name of the newsgroup.
Using Elm To Read Mail
Completing the trio of system software you will be using in this
course is a mailer program. There are several mailers, e.g.,
mail, mush, mh, pine. Some such as rmail,
mh-e and vm can be run under Emacs.
Elm is a mailer that is simple and easy to use. The
following section gives a brief introduction to
elm. [Note: as with all other software running
under Unix check the man pages by typing a "man elm" at the
Unix shell prompt to get more information about elm.]
After starting elm you will be presented with a list of messages in your incoming mailbox and a menu of options at the bottom of the screen. Following is a sample:
At the bottom of the screen is a menu listing the most frequently used commands in elm. To invoke any of these commands just type the single character. When you are mailing a message you can compose the note using an editor. We have setup your configurations such that you can use emacs to compose your messages. To send a note type m. You will then be prompted with:
Command: Mail Send the message to: rajaThen type the user name(s) of the person(s) to whom you want to send the note. (Text typed in bold denotes user input.)
Command: Mail To: Raja Sooriamurthi Subject of message: Question on p2 hw4The Emacs editor will then be automatically invoked. After composing the message leave emacs as usual(C-x C-c). You will then have the options:
Command: Mail To: Raja Sooriamurthi
Please choose one of the following options by parenthesized letter: s
e)dit message, edit h)eaders, s)end it, or f)orget it.
If you now want to cancel the message you may do so by typing f
or else s will send the message.
To quit from elm and to return to the Unix prompt type q.
There are several other options that you can use in elm. >From the main menu type o to get a list some of the other options. We'll also be giving a demonstration of these during the first lab sessions.
Don't forget to log out of the computer when you are all finished.
At this point you should have the basics that you will need for doing the work in this class. However, there is much more that you can do with UNIX and Emacs that these tutorials don't cover. Read the various handouts from UCS listed at the beginning of this tutorial to learn more, and don't be afraid to ask questions of your instructors.