tcsh> cp -a ~/data/* /tmp/mydataThen, create the ISO image:
tcsh> cd /tmp/mydata
tcsh> mkisofs -o /tmp/mydataimage.iso -l -R -L -V "" -P "" -p "" -A "" .
tcsh> cdrecord dev=1,0,0 -v speed=8 -pad -data /tmp/mydataimage.iso
icc -Wl,-R,${INTEL_CC_LIBDIR},-R,${INTEL_MKL_LIBDIR} -I${INTEL_CC_INCLUDEDIR} -I${INTEL_MKL_INCLUDEDIR} myprogram.CThe "-Wl,-R,..." options are to tell the linker where the shared libraries are. (I haven't figured out how to modify a system wide setting to search for libraries.)
Each machine has local (not backed up) disk space for temporary data storage. There is about 10 GB of space per machine, except for Tenaya which has less. The directory on all machines is /storage. Local disk is useful if you would like to reduce I/O overhead for your code: I/O access to your home directory is via the network, which has much less bandwidth and higher latency than local disk.
This storage area is also available to other machines via the network. Simply change directory to /automnt/machine_name/storage to access any machine's storage area.
Click the link above for instructions on setting up your email program. OR, try our web-mail system, instead.
Most printers are available. There seems to be a problem printing to ocsbw, though, and the problem is not resolved, yet. (2002-Feb-01)
All your HTML files should live in ~/public_html/, and they should have world-readable permissions. (Do chmod -R ugo+r ~/public_html to accomplish this. You should not have to do this unless you have changed the default.)
OpenOffice.org is the open-source replacement for StarOffice. It has very good support for Microsoft Office documents. To use OpenOffice.org, you need to run an initial setup in your home directory:
/usr/local/OpenOffice.org/program/setup
and then choose "Standard Workstation Installation" when prompted.
The HP home directories are NFS mounted on Tenaya. To find out which directory on Tenaya your HP home is, type the following while logged into your HP account:
df -k ~
The result should be something like:
/n/physics/mhpbob/std2 (mhpbob.physics.lsa.umich.edu:/usr/vg01/std2) : 2975394 total allocated Kb
711484 free allocated Kb
2263910 used allocated Kb
76 % allocation used
The value in parentheses, mhpbob.physics.lsa.umich.edu:/usr/vg01/std2 in the above example, will determine which directory on Tenaya your HP files are. In the above example, your home directory will be in:
/tmp_mnt/mhpbob/std2/username
This will obviate the need for sftp.
To change your password for all the Linux machines, log into Tenaya and use the "passwd" command. Do not use "yppasswd" on any machine (including Tenaya), or "passwd" on any machine (not including Tenaya).
Note: It is recommended that you change your password on the Linux machines as soon as you get your account. Doing this will store your password in a more secure format. The default format is quite easily crackable.
Each machine (except Tenaya) has two partitions for temporary data storage. This will remove NFS bottlenecks from your running time. The partitions are called /storage and /scratch. Of these two, /storage is backed up while /scratch is not.
You may access your Linux home directory from a Windows machine. Your username will be same as in Linux, but your password will be independent of the Linux password. To connect, type
\\tenaya\your_username
or
\\tenaya.physics.lsa.umich.edu\your_username
into the location bar of Windows Explorer. Please send mail to
help@tenaya.physics.lsa.umich.edu to get this set up.
If your machine is a dual-boot machine, there will be a VFAT (Win95) partition that will be accessible to you. The partition is in the directory /win2kdata. You may share files between Linux and Windows by storing them on that partition, which will be the D: drive under Windows. Another solution is to use the Windows access feature described in the previous item.