ablog

不器用で落着きのない技術者のメモ

2014-10-01から1ヶ月間の記事一覧

VirtualBox 4.3.18 にアップデートしたメモ

VirtualBox を 4.3.16 から 4.3.18 にアップグレードした(ホストOSは Oracle Linux 6.4)。 VirtualBox をアップグレードする # yum update VirtualBox-4.3 VirtualBox Extension Pack をインストールする VirtualBox 4.3.18 Oracle VM VirtualBox Extensio…

Oracle Database が Library cache と Dictionary cache に同じ情報を持つと聞いて

Oracle 8i Internal Services: for Waits, Latches, Locks, and Memory作者: Steve Adams出版社/メーカー: O'Reilly Media発売日: 1999/10/21メディア: ペーパーバック クリック: 19回この商品を含むブログ (10件) を見るP.50 It also contains abstract rep…

「コンビニでわかるノンブロッキングIO」がわかりやすかった

http://codebreak.com/blog/takezoe/page/d0e2b2/ とてもわかりやすい喩えですね。素晴らしい。 関連 ノンブロッキング I/O について調べてみた - ablog

iostat はどのように %util を算出しているか(3)

window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.paren…

LinuxでCPU使用率を上げるコマンド

いいものを見つけたのでコピペ。 yes >> /dev/null & 最後に & お勧め w(二つターミナルが必要でなくなる。)ちなみに メモリ負荷をあげる魔法のコマンド /dev/null < $(yes) & LinuxでCPU負荷を上げる魔法のコマンド - Qiita ">>" は ">" でも良いと思う…

vmstat の sys は soft や irq も含む

Linux で mpstat だとカーネルモードで使用されたCPU使用率は sys、soft(ソフトウェア割込み)、irq(ハードウェア割込み) が別々に表示される。vmstat は sy だけなので、たぶん soft と irq も含まれるんだろうと思っていた。vmstat のソースを見るとやはり…

yum update したら"Another app is currently holding the yum lock; waiting for it to exit..."と怒られる

事象 yum でパッケージを update しようとすると、以下のメッセージが出力される。 # yum update jre Loaded plugins: security Existing lock /var/run/yum.pid: another copy is running as pid 3982. Another app is currently holding the yum lock; wai…