Machine list (very outdated)
Machine Boot Primary-owner Secondary-owners
------------ ------------ -------------- ------------------
in DB lab:
kingfisher fc3+win free
tsingtao fc3+win Kensuke
corona RH-9, Win Samuel Wang
baltika RH-9, Win free (used to be Andre)
in Machine room:
mythos RH-7.1 Tim
newcastle RH-7.1 Yasushi (postgres)
warsteiner RH-9 DB-WEBSERVER Jimeng+Evan
efes Win only Jimeng
ironcity RH-9 Christos
aegeas RH-7.1, Win Tim
thesseas RH-7.1, Win Tim
cassandra RETIRED
To-Do List for Visitors
- obtain lab key from Denny Marous (dcm@cs.cmu.edu)
- obtain Kerberos account (Help Desk, Wean 3613) -- needs
Christos/oracle string)
- obtain Windows account (Help Desk, Wean 3613) -- needs
Christos/oracle string)
- create Kerberos instances (.mail, .remote, .ftp, .root)
using Jeeves
- assign a machine and create accounts (Mary, mcglohon@cmu.edu)
- if having Andrew account -- setup the laptop for wireless network access
http://www.cmu.edu/computing/wireless/
- optional: obtain account on the Linux UX machines from Help@CS
To-Do List for New Machines
- Network Registration: Go to Net Registration at http://www.cs.cmu.edu/~help/admin/netregister.html and fill out network registration so your machine can be assigned an IP address and hostname. This is necessary to obtain a network connection. Optional fields are marked as such.
- Software Installation: Fill out PC Software Install form athttp://www.cs.cmu.edu/~help/forms/pcsoftinst.html. This assigns a tech in SCS Computing Facilites to pick up your computer/laptop from the receiving area and install the OS and apps. If requested, it will add the machine to the domain and prepare it for backups. Do not pick up your machine from receiving if you intend to have SCS install things for you. They will deliver it to you, or notify you when work is completed (in the case of a laptop).
- Message from Helpdesk: In order to ensure that we can provide complete service for your machine,
your cooperation is vital in informing SCS Computing Facilities of any
subsequent changes in location or status of your machine including:
retiring, damage claiming, and decommissioning. This will enable SCS
Computing Facilities to properly record and track your particular asset with
timely notifications to Property Management and to the SCS Computing
Facilities Costing group.
-
If you need help in filling out these forms or if you have any questions
regarding the receipt of your new asset, please contact the SCS Computing
Facilities Help Desk at x8-4231 or send mail to help@cs.cmu.edu.
Creating New Accounts
Linux:
Find AFS user id: pts examine <user>
Add user: useradd -u <uid> -g <group=users> -d /afs/cs.cmu.edu/user/<user> <user>
(May need to add /usr/sbin/ to path in ~/.bashrc or type /usr/sbin/useradd to add users)
If user is local: passwd -l <user>
Root users in /.klogin.local
CVS:
mkdir <cvs_root>
groupadd <cvs_group>
Edit /etc/group to add <cvs_group> group members
chmod u+rwx,g+rwxs <cvs_root>
chown jure.<cvs_group> <cvs_root>
cvs -d <cvs_root_path> init
cvs -d <cvs_root_path> import <files>
chown -R <user> <cvs_root_path>
SVN
svnadmin create </path/to/repos>
groupadd <svn_group>
Edit /etc/group to add <svn_group> group members
chmod u+rwx,g+rwxs <svn_root>
chown -R <user>.<svn_group> <svn_root>
Then, from local machine...
svn co svn+ssh://<username@machine.address/svn_root_path>
svn add <files>
svn --help (for all commands)
More Info