PSYC 7102: Statistical-Genetics

From Vrieze Wiki
Revision as of 20:32, 13 November 2015 by Scott (talk | contribs) (Created page with "Here are some useful server management tools <syntaxhighlight, lang="bash"> df -h ### Show space availability in all directories df -h /directory ### Show di...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Here are some useful server management tools

<syntaxhighlight, lang="bash">
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 system utilities
qstat              ### On PBS batch system shows status of submitted jobs
watch qstat        ### Refreshes "qstat" every second.
</syntaxhighlight>