You are bound by the Computing Policies of The George Washington University.
E-mail passwords and account passwords on Lou are not in Kerberos. On Lou use the command passwd to change your login password. Only NCAC faculty, staff and students have passwords on their accounts on Lou, all other access is with the public-key authentication method in SSH.
Windows XP: right click the network interface, go to status, Details...
MacOS X: Lucky you! You don't need the MAC Address. You will use your computer's name in the DHCP Client ID field. This field is case sensitive.
path=( $path /usr/pbs/bin /opt/bin /usr/local/bin /usr/freeware/bin ${HOME}/bin.${MACHTYPE} )
If you cannot run some program, it is likely because /opt/bin and /usr/local/bin are not in your path.
To change the permission of all files under the directory project
find project -type f -exec chmod ug=r {} \;
To change the permission of all directories under the directory project
find project -type d -exec chmod ug=rx {} \;