2010-03-01から1ヶ月間の記事一覧

IOPS計測

iometerのdocumentより For maximum throughput (Megabytes per second), try changing the Transfer Request Size to 64K, the Percent Read/Write Distribution to 100% Read, and the Percent Random/Sequential Distribution to 100% Sequential. For th…

VT100エスケープシーケンス 色

echo -e "\033[31mRED\033[0m" RED_COLOR="\033[31m" RST_COLOR="\033[0m" RESULT_STR="$RED_COLOR""FAILED""$RST_COLOR" echo -e "[$RESULT_STR]" http://hp.vector.co.jp/authors/VA016670/escape_code.html

NFSの強制umount

NFSサーバが不調で、リブート等していると クライアント側が # ls /mnt/nfs Stale NFS file handle などとエラーを吐くようになってしまった。 再mountを試みようとしてまずumountしたが # umount /mnt/nfs umount: device is busy となってしまってダメ。um…