The name pads1 was given to the older Sun Sparc Classic which this machine replaced over the summer. It stood for "Physics-Astronomy Disk Server 1", since its original primary function was to provide disk space for P-A users of the MSU Computer Lab's Convex system (which has been deactivated recently) without having to pay the Computer Lab's monthly disk space charges.
It also has the alias www.pa.msu.edu, and acts as the primary World Wide Web server for the department. You may telnet, ftp, or send E-mail to it using either the pads1 name or the www name.
The pads1pass function will only work for those 300+ accounts which have just been set up. Pre-existing accounts will continue to have their former passwords. If you have forgotten your original password, or never found out what it was (many of the original users only accessed pads1 via the Convex system, so this is not totally unusual), send an E-mail request to admreq@pads1.pa.msu.edu and we'll work something out.
Additionally, the pads1pass command will not work more than once for a given DIRAC user, so record the information it provides for you carefully. Some people have had trouble recording it carefully -- if you run the pads1pass command, copy down the password, and it doesn't seem to work on your pads1 account, read this before contacting us. We will also deactivate pads1pass after 15 May 1997, and freeze any accounts on pads1 which have not been logged into yet by that time, so please log into your pads1 account before then.
$ telnet pads1.pa.msu.edu
login: username
^^^^^^^^
Type your pads1 username here.
Password:
^^^^^^^^
Type your pads1 initial password here (be careful of the
difference between upper- and lower-case letters); passwords
you type will not be echoed to the screen.
Choose a new password.
Enter login password:
^^^^^^^^
Type your pads1 initial password again here.
(Yes, we know that it has just told you to choose a new
password, but it wants to see the old one again first,
and Sun only knows why they don't use some phrase such as
"Enter current login password:" to resolve the ambiguity.)
New password:
^^^^^^^^
Type your own new pads1 password here.
Re-enter new password:
^^^^^^^^
Type your own new pads1 password again here.
And then you're on pads1!
The MSU P-A Computing Committees concluded that providing general access to a well-equipped Unix workstation in addition to the central OpenVMS cluster would be a welcome enhancement of our service to the Department. Users already familiar with Unix would have a place to do their work in "comfortable surroundings"; users who wish to learn how to use Unix systems would have a place to practice their skills; and there would be a place to install software packages which are not readily available for OpenVMS systems.
We currently have no immediate plans to drop OpenVMS support, so if you have no interest in using pads1, you will just continue to use dirac. We do want you to log into pads1 at least once, however, to change your password, as demonstrated above.
For those of you who are interested in learning to use a Unix system, there are lots of books available at local bookstores which will be of assistance to a Unix user just starting out. Some which we can recommend are:
Browse the computing book section of your favorite bookstore for other titles whose authors may have a style or approach which fits your own particular needs or desires.
http://www.pa.msu.edu/~username/file.html
and
http://www.pa.msu.edu/people/username/file.html
If the filename is left off, index.html is assumed. Creating subdirectory structures beneath the www subdirectory is OK.
New users who have had DIRAC accounts since April 1995, or who have since been added to the "webput" authorization list on DIRAC and have actually used DIRAC's "webput" function may find that they already have files in their www subdirectories. These are the files which formerly resided physically in the people area of the web server. They were moved automatically upon the creation of the new accounts. The web server's people area now contains only pointers to individuals' www subdirectories, and users now have full responsibility for maintaining the files which they want to make available.
If file access permissions are set for a file or directory incorrectly, the file may not be accessible. Similarly, access restrictions may be set for files in a subdirectory using a file called .htaccess in the subdirectory.
Suggested permissions are (r=read, w=write, x=execute):
owner group other
----- ----- -----
user's home directory rwx --x --x
user's www subdirectory rwx r-x r-x
subdirectories below www rwx r-x r-x
*.html files rwx r-x r-x
graphics files (e.g., *.gif) rw- r-- r--
If you want to serve no files to the web at all, you can just put nothing in your www subdirectory (or move out any files that are already there), or set "owner-only" read & execute permission for the files (use the command chmod 700 filename).
In most cases, the default.html file (to which the default index.html file is a pointer) contained no more information than is available to the outside world via the command "finger name@msu.edu" or via a CSO search for "name" on the MSU Computer Lab's gopher/web server's staff directory search page.
To generate a new version of index.html based on the current default one, the preferred method is to issue the following commands:
% cd ~/www
This changes your "current" directory to the "www" subdirectory.
% ls -alFq
-rwxr-xr-x 1 username users 626 May 27 1995 default.html*
lrwxrwxrwx 1 username users 12 Sep 27 04:45 index.html -> default.html*
This confirms that the real file is default.html, and "index.html" is just a pointer to it.
% rm index.html
This gets rid of the named link, so "index.html" won't be a pointer now.
% cp default.html index.html
This makes a new copy separate from, but so far the same as, the old one.
Then, edit the new index.html to the way you like it. The file default.html remains there just in case you need to fall back on the original copy.