戻る

HP-UX リファレンス (マンページ)
http://docs.hp.com/ja/hpuxosmanpages.html


20050207-1プロセスの優先度
20101203_ハードウェアスペックを確認するコマンド
20101203_CPU使用率_


20050207-1 プロセスの優先度

nice というコマンドで、プロセスの優先度を設定できるらしい

http://docs.hp.com/ja/B2355-90851/nice.1.html


20101203 ハードウェアスペックを確認するコマンド

 ハードウェアスペックを確認するコマンド

物理メモリのサイズ

Itanium
# /usr/contrib/bin/machinfo | grep -i Memory

PA-RISC
# grep "Physical:" /var/adm/syslog/syslog.log

スワップ領域のサイズ
# /usr/sbin/swapinfo -a

CPU のアーキテクチャ
# /bin/getconf KERNEL_BITS

その他いろいろ
# /usr/contrib/bin/machinfo


20101203 CPU使用率

[root@CentOS1 ~]# vmstat 1 3
procs -----------memory---------- ---swap-- -----io---- --system-- -----cpu------
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy id wa st
 0  0      0  47432  58180 316672    0    0   209    30 1031  166  2 16 79  2  0
 0  0      0  47432  58180 316672    0    0     0     0  535   28  0  0 100  0  0
 0  0      0  47432  58180 316672    0    0     0     0  487   23  0  0 100  0  0

CPU これらは CPU の総時間に対するパーセンテージである。 us: カーネルコード以外の実行に使用した時間 (ユーザー時間、nice 時間を含む)。 sy: カーネルコードの実行に使用した時間 (システム時間)。 id: アイドル時間。Linux 2.5.41 以前では、IO 待ち時間を含んでいる。 wa: IO 待ち時間。Linux 2.5.41 以前では、0 と表示される。 st: 仮想マシンから盗まれた時間。Linux 2.6.11より前では未知。

http://d.hatena.ne.jp/yohei-a/20090825/1251174470

http://h50146.www5.hp.com/products/software/oe/hpux/developer/tips/cref/linux_v2.html

http://www.cobol.gr.jp/knowledge/material/051213_report/04.pdf

 


戻る