mkdir public_htmlcd public_htmlchmod -R o+rx public_html.
People can reference your home page using the URL "http://www.cs.unm.edu/~username/", where "username" is your user login.
Make sure your home directory is executable by other (which is the default for new accounts). First, change to
your home directory, and then issue this command:
chmod o+x .
(Don't forget the dot!) Otherwise, the web server will not be able read your home
directory to see whether your public_html directory is readable or
not. This does mean that other users on the system can see your filenames
and top level directory names (and permissions), but does not imply
that they can read your files. Nor does it imply that the contents
of your subdirectories can be listed either.
cd /nfs/notrust/cgi-bin/username, and put your
files there (where username is your username).
Make sure to make your cgi files executable: while in your cgi-bin directory, type this
command: chmod -R o+rx * .http://cgibin.cs.unm.edu/username-bin/.
Home page name. If you have two files, one called index.html and one called index.htm, the web server will only ever show one of those. If you edit the wrong file, it could be very frustrating.
Speaking of names, pick either an ".html" or an ".htm" extension and stick with it. This will help prevent broken links due to linking to "myvacationpics.html" when it's "myvacationpics.htm". Don't think Windows can't handle .html as an ending.
To connect remotely, use moons.cs.unm.edu or trucks.cs.unm.edu and SFTP (but see the following note).
Note: Although you can use Dreamweaver to edit your pages, you will need to use an FTP client that fully supports SFTP with SSH2 authentication, or SCP, to upload them. Although Dreamweaver MX 2004 and Dreamweaver 8 claim to support SFTP, they can not handle encrypting the username and password, and therefore will not work with the CS department's webserver. FTP programs known to work correctly with the CS department webserver include Filezilla (Windows Only, freeware), CoreFTP LE (Windows only, freeware), Transmit (Mac OS X only, shareware). The other option is to use scp. The "scp" command is built into Mac OS X and Linux: for Windows, download the putty package (the command you want is pscp.exe) or WinSCP.
Some FTP clients will occasionally upload a zero-byte file. This is one reason you should always check your page after uploading it. Once in a blue moon, some will manage to delete your local copy too. If this happens, don't panic, login and restore the file you were editing. Chances are, you'll have a backup only an hour old waiting for you.
Be careful: if you ever decide to make your home directory not world readable, a recursive command will change your public_html directory too. Go back and re-issue the same command you did when you first created web directory to keep it accessible. Also, don't forget your home directory *must* be world executable or the web server won't even look at the permissions on your public_html directory. (chmod o+x . will fix this problem if issued from your home directory)