Read through each exercise competely before doing it.
The purpose of these exercises is to show me you can use Blackboard, the CS Forums, and your wyrd.hood.edu account.
If you do not have your network account yet, have forgotten your password, or need help setting up your email, you must contact End User Computing (EUC). Members of the Information Technology department (including EUC) should be available to help you at the Information Desk in the Whitaker Campus Center during the first week of class. You can also visit the EUC office in AD (Alumnae Hall) 401 Monday through Friday, 8:30 a.m. - 5 p.m., or call EUC at (301) 696 - 3622. You will need a valid student ID to obtain password information.
There is additional information about Hood email on the IT web pages.
You can access your Hood email account through the Web at https://hermes.hood.edu.
There are links to these at the bottom of most class pages.
IT 280 Email Exercise".
Computer systems must carry out many tasks, such as receiving input from a keyboard or from one or more remote terminals or networked workstations, sending output back to them, running programs for multiple users or multiple programs for one user, printing documents, storing and retrieving information on a mass storage device. All of these activities need to be coordinated to make effective use of the conputer's resources, such as memory and CPU time. The software that handles this coordination is called an Operating System. Without an operating system, a computer is nearly useless. The early ENIAC, for example, required that programs be set up by rewiring the interconnections between its components.
Software, computer programs, can be divided into two very broad categories: System Software, the software that makes it possible to use the system; and Application Software, the programs that carry out specific tasks for users. Application programs may be different from system to system and user to user. The distinction between applications and system program is not rigid. A computer without an operating system is essentially an expensive paperweight.
The operating system consists of
You have been given a user account on wyrd.hood.edu for this course. If you already had an account, it has been continued for this term. Wyrd is a PC running the Linux operating system and the Apache web server.
The Command Interpreter or Shell for an operating system lets the user command the system to perform various tasks such as log on and off the system, manage files and run utilities and application programs.
There is a summary of basic UNIX commands at http://wyrd.hood.edu/tutor/unix/unix.htm. We will talk about more of them later.
You can connect to wyrd by using
Secure clients are installed in the lab. If you are connecting from off-campus, you must use a secure connection.
Warning - UNIX COMMANDS ARE CASE SENSITIVE. This means that, for example, the command "ls" cannot be typed as
"Ls" or "lS" or "LS" , and the file name "UNIX.html" is different from unix.html and Unix.html.
To start a remote session from the lab machines, launch the Secure Shell Terminal Client application from the StartMenu.

After a brief delay, you should be prompted for your password. Warning: remember that passwords are case sensitive.
Once your password is accepted, you will see a welcome message and a command prompt. The prompt shows your identification followed by a $.
Logging on indicates acceptance of the acceptable use
policies posted at http://wyrd.hood.edu/. If you do not accept these
policies, log off immediately.
[echang@wyrd echang]$
To log out when you are finished a session, enter the command exit or logout at the $.
Be sure to log out of both your Linux session on wyrd and your Pergola session on the lab PC before you leave the lab. Otherwise the next person who sits at your station has full access to your files.
/ indicates the root, or highest level, directory - the starting point for the system.
ls (ell ess). You will see the files in your home directory. You should see at least Desktop and public_html, which are directories that can contain other files.
[student@wyrd student]$ ls
Desktop public_html
ls -l (ell ess space dash ell). The -l is called an option or switch. Most options are identified by a single alphabetic letter. This
"long" option provides additonal information about the files. 
ls -al. The option "all" lists all files. Notice that you can use multiple options after the dash by typing the letters
next to each other.. and .. are special references to the current directory and the parent directory respectively.pwd (print working directory.) Right now it is
probably /home/your_username.cdcd public_html. This is where you will put your web page files.
. and .. directories.cd ..pwd and change to it if necessary.
ls Desktop.ls ../Desktop, specifying the path from the public_html directory to the Desktop directory.ls /home/your_usernamels ..~ character. The command is ls ~. You can use the ~ whenever you need to represent your home directory, for example as in cd ~mkdir command. The new directory will be created in your current working directory unless you specify a different path.
pwd and change to it if necessary.
mkdir IT280 . (Capital 'I' and 'T', no spaces.)Unix is a multi-user operating system. You share wyrd with the other students in your class, and students from many other classes. The system uses file permissions to control who can and cannot access your files in different ways.

/home/echang (ls /home/echang ). What happens? (The line in the home directory listing is
drwx--x--x 11 echang echang 2048 Feb 7 16:29 echang
The public_html directory in your home directory is where you must store files to publish them on the Web. The Web server on wyrd can retrieve files that are in that directory, including those in subdirectories within it. If a file is not within that directory - for example one in that Desktop directory - it will be available to the Web server.
First, look at your web site. Open the browser and enter the URL
wyrd.hood.edu/~your_username
If your account is a new one, you will see a directory listing headed "Index of..." similar to the picture below.
However, your listing should show the IT280 directory you made earlier. (If you have used an account for IT 180, you will see the pages you published for that class. You will not see the IT280 directory listed because it is hidden by your index.html page, but it is there.)

The web server's listing also shows the ~ symbol, but in this case it means your Web home - your public_html directory.
You will put your web work for this course in the IT280 directory.
Change your working directory (cd) to the IT280 directory.
Show the IT280 drectory in the browser by clicking its name. If you can't see the name, browse to
wyrd.hood.edu/~your_username/IT280
You can create files on wyrd by using a text editor. The simplest one is named Pico. To use it, enter the command pico name_you_want_for_the_file.
For this exercise,
pico sillypage. You will see a blank editing screen. 
The browser has no way of knowing that you made changes over on wyrd. It simply fetches a document and displays that document until you tell it to get another one.
Your deliverables for this assignment are 1) the email message. 2) the CS Forums registration and message, and 3) the published text document "sillypage" in the correct directory.
You can change your wyrd password. You do not need to do it during class time. Read through the following instructions first.
passwd and follow the prompts.Hood College Department of Computer Science: Course materials © 1997-2006 by Elizabeth Chang.