This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
picsl_transition_guide [2014/11/10 05:56] mgstauff created |
picsl_transition_guide [2015/04/28 20:17] (current) mgstauff |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ** [[: | ||
+ | |||
====== PICSL-cluster Transition Guide ====== | ====== PICSL-cluster Transition Guide ====== | ||
- | welcome | + | Welcome |
Here is some info regarding your transition to the CfN cluster: | Here is some info regarding your transition to the CfN cluster: | ||
+ | ===== Using the CfN Cluster ===== | ||
+ | See the [[start|other pages]] of this wiki for details on using the CfN cluster. This page is only to learn about differences between the PICSL and CfN clusters. | ||
===== Usernames and Passwords ===== | ===== Usernames and Passwords ===== | ||
Your username should be the same as on the PICSL cluster. | Your username should be the same as on the PICSL cluster. | ||
Line 17: | Line 21: | ||
**Your CfN /home dir is NOT a data directory.** It has a 25GB quota. Please put your data in / | **Your CfN /home dir is NOT a data directory.** It has a 25GB quota. Please put your data in / | ||
- | You may want to couple | + | You may want to copy settings/ |
ls -a ~ | ls -a ~ | ||
+ | | ||
+ | **BUT, DO NOT** simply copy your .bashrc or .bash_profile file from your old home dir to your new one. You must look in the file and copy selected parts manually. | ||
===== Data Drives ===== | ===== Data Drives ===== | ||
Line 32: | Line 38: | ||
You'll have to update your scripts. Sorry for the trouble. | You'll have to update your scripts. Sorry for the trouble. | ||
+ | |||
+ | ===== Applications ===== | ||
+ | The common/ | ||
+ | |||
+ | The CfN cluster stores common/ | ||
+ | |||
+ | ===== Quotas ===== | ||
+ | Quotas on the CfN cluster (/home, /data/jet, /data/jag) are handled on a // | ||
+ | |||
+ | This differs from the PICSL cluster data quotas, which are // | ||
+ | |||
+ | ===== Front-end Program/ | ||
+ | Programs/ | ||
+ | ===== Slots, Cores & Memory ===== | ||
+ | The CfN cluster handles slots, cores and memory differently. On PICSL, if you requested more slots, you got both more memory and more cpu cores. On CfN, the requests for these resources are separate. Please see [[using_ogs_sge# | ||
+ | ===== Symlinks ===== | ||
+ | You may have symlinks in your PICSL data/home directories. These will need to be changed. | ||
+ | |||
+ | To find all symlinks in a directory and its sub-directories and print out the file it links to, use this command: | ||
+ | |||
+ | find directory-to-search -type l -print0 -exec echo -n " " \; -exec readlink -m {} \; |