User Tools

Site Tools


archive:computer_resources:campusrocks

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
archive:computer_resources:campusrocks [2010/04/16 07:48]
galt
archive:computer_resources:campusrocks [2010/04/19 19:37]
jstjohn
Line 34: Line 34:
   * 3.4TB available   * 3.4TB available
   * OS: GNU/Linux 2.6.18-128.1.14.el5xen   * OS: GNU/Linux 2.6.18-128.1.14.el5xen
-  ​+ 
 +===== Setting Environmental Variables ===== 
 +If you would like to set your startup shell to bash, make a file called .profile in your home directory and add this to the beginning of the file. 
 + 
 +  if [ "​$SHELL"​ = "/​bin/​sh"​ ] 
 +  then 
 +        SHELL=/​bin/​bash 
 +        export SHELL 
 +        bash 
 +  fi 
 + 
 +I also copied the contents of the file .bashrc (already in my home directory) into my .profile file, and then deleted my .bashrc file. This may not be necessary, but if your settings aren't working this is something to try. 
 + 
 +If you would like to add our classes bin directory (or any other directory for that matter) then add this to your .profile: 
 + 
 +  PATH=/​campusdata/​BME235/​bin:​$PATH 
 +  export PATH 
 + 
 +To use the gcc-4.5 family of compilers stored in our bin directory then you can specify the LD_LIBRARY_PATH environmental variable: 
 +  LD_LIBRARY_PATH=/​campusdata/​BME235/​lib:/​campusdata/​BME235/​lib64:​$LD_LIBRARY_PATH 
 +  export LD_LIBRARY_PATH 
 + 
 +To make your default folder creation settings group readable and writable then add this line to your .profile: 
 +  umask 007 
 + 
 + 
 ===== Sungrid Job scheduler ===== ===== Sungrid Job scheduler =====
  
Line 55: Line 81:
  
 #$ -N some_name_here\\ #$ -N some_name_here\\
-apparently, you must have a single word after -N\\+Apparently, you must have a single word after -N\\
 This gives a nicer name to your script when you run qstat.\\ This gives a nicer name to your script when you run qstat.\\
  
archive/computer_resources/campusrocks.txt · Last modified: 2015/09/02 16:42 by ceisenhart