Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

bqueues                     - Summary status of entire batch system organized by queues.
bqueues -l long - Detailed summary status of the 'long' queue.
lshosts         - Very long listing of all batch machines along with their resources.
bmod                            - Change the queue for a submitted job.
bhist                          - Get history information for completed jobs.
lsinfo                       - List all 'resources' defined in batch system.
busers                       - Summary of my batch activity.

qstat

 

Host specs

CPU

Code Block
cat /proc/cpuinfo

Memory

Code Block
free
cat /proc/meminfo

HDD

Code Block
df -h
sudo fdisk -l
hdparm -i /dev/device (for example sda1, hda3...)

 

Re-direct output in file

All POSIX operating systems have 3 streams: stdin, stdout, and stderr.

...