Note: all notes are specific to Ranger unless otherwise noted
ssh JAVA applet client:
http://www.ngs.ac.uk/gsissh/index.html
stand-alone client, including FTP
http://grid-support.ac.uk/files/gsissh/GSI-SSHTerm-0.91e.zip
\GSI-SSHTerm-X\bin\sshterm.bat
scp is limited by Teragrid to not be useful for large file transfers
http://www.teragrid.org/userinfo/data/basics.php
user@ranger$ tar zcf name.tgz *.dat
user@local$ scp <username>@ranger.tacc.utexas.edu:/scratch/<ID>/<username>/directory/*.tgz .
https://wiki.ucar.edu/display/~mattheww/GridFTP+to+the+TeraGrid+from+non-TeraGrid+Hosts
If you already know what you're doing,
otherwise, use the longer version
Network Weather service
#!/bin/bash
# Use Bash Shell
#$ -V # Inherit the submission environment
#$ -cwd # Start job in submission directory
#$ -N testL200vect # Job Name
#$ -A <allocation number> # which account to charge to
#$ -j y # combine stderr & stdout into stdout
#$ -o record_$JOB_NAME.$JOB_ID # Name of the output file (eg. myMPI.oJobID)
#$ -pe 16way 16 # Requests 16 cores/node, 1 cores total
#$ -M <email address>
#$ -m be
#$ -q development #Queue name
#$ -l h_rt=0:30:00 # Run time (hh:mm:ss) - 1.5 hours
date
module list
# Run the MPI executable named "a.out"
ibrun ./a.out
Currently Loaded Modules:
1) TACC-paths 7) srb-client/3.4.1 13) tginfo/1.0.1 19) gzip/1.3.12 25) mkl/10.0
2) Linux 8) tg-policy/0.2 14) TERAGRID-BASIC 20) tar/1.22 26) gotoblas/1.23
3) cluster-paths 9) tgproxy/0.9.1 15) globus/4.0.8 21) cluster
4) binutils-amd/070220 10) tgresid/2.0.3 16) GLOBUS-4.0 22) TACC
5) TERAGRID-paths 11) tgusage/3.0 17) TERAGRID-DEV 23) pgi/8.0-6
6) gx-map/0.5.3.3 12) uberftp/2.4 18) CTSSV4 24) mvapich/1.0.1
pgf90 -g -L$TACC_MKL_LIB -lmkl_em64t -lmkl -lguide -lpthread filename.f90
mpif90 -g -L$TACC_MKL_LIB -lmkl_em64t -lmkl -lguide -lpthread filename.mpi.f90