PSYC 7102: Statistical-Genetics: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
| Line 6: | Line 6: | ||
[https://www.coursera.org/course/gencommand Coursera] | [https://www.coursera.org/course/gencommand Coursera] | ||
= Code Samples ( | = Code Samples (Please add!) = | ||
Here are some useful server management tools | Here are some useful server management tools | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
Revision as of 00:43, 14 November 2015
Homework
Command Line and Other Coding Resources
Code Samples (Please add!)
Here are some useful server management tools
df -h ### Show space availability in all directories
df -h /directory ### Show disk space in /directory
top ### Show resource utilization and job status, etc.
htop ### Souped up "top"PBS batch queuing (used on vieques and research computing)
### PBS batch system utilities
qstat ### On PBS batch system shows status of submitted jobs
watch qstat ### Refreshes "qstat" every second.
### submit interactive pbs job in the short queue for 23 hours on 1 node with 20 CPUs
qsub -I -q short -l walltime=23:00:00 -l nodes=1:ppn=20