This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
survival_guide [2020/05/26 15:15] ccrosby [Software Modules on Lengau] |
survival_guide [2022/02/01 18:38] (current) alopis |
||
|---|---|---|---|
| Line 8: | Line 8: | ||
| - The computers that make up the HPC cluster do not run faster than a good desktop computer, nor do they usually have particularly impressive amounts of memory. | - The computers that make up the HPC cluster do not run faster than a good desktop computer, nor do they usually have particularly impressive amounts of memory. | ||
| - The system is designed to be used in batch mode. The user prepares a job, submits it to the queue, and the system executes it when the requested amount of resources become available. | - The system is designed to be used in batch mode. The user prepares a job, submits it to the queue, and the system executes it when the requested amount of resources become available. | ||
| - | - You can request an interactive session, which will give you access to a compute node in the cluster. | + | - You can request an interactive session, which will give you access to a compute node in the cluster. |
| - Access to the system is by means of secure-shell (ssh). | - Access to the system is by means of secure-shell (ssh). | ||
| - Data can be copied to or from the system by means of secure copy (scp) or rsync. | - Data can be copied to or from the system by means of secure copy (scp) or rsync. | ||
| Line 25: | Line 25: | ||
| * **mkdir** - create a new directory | * **mkdir** - create a new directory | ||
| * **cd** - change to a new directory | * **cd** - change to a new directory | ||
| + | * **cp** - copy a file (remember to specify the file **and** the location to copy it to) | ||
| + | * **mv** - move a file (either rename it or cut/paste it into a directory). | ||
| * **rmdir** - remove a directory | * **rmdir** - remove a directory | ||
| * **rm** - remove a file | * **rm** - remove a file | ||
| Line 37: | Line 39: | ||
| Here are examples of the most common module operations that you will need to use on the cluster: | Here are examples of the most common module operations that you will need to use on the cluster: | ||
| * **module avail** - To list all available packages | * **module avail** - To list all available packages | ||
| - | * **module avail 2>1 | grep // | + | * **module avail 2>&1 | grep // |
| * **module avail chpc** - List just the chpc modules group - this contains most of the useful modules | * **module avail chpc** - List just the chpc modules group - this contains most of the useful modules | ||
| * **module avail chpc/ | * **module avail chpc/ | ||