OSチューニング

大規模DBサーバへのLinux適用(Kernel2.4と2.6の性能)

ずいぶん前の記事なので読んだ人も多いでしょうが、「大規模DBサーバへのLinux適用」という計測レポートがあります。
引用記事はこちら。
レポート自体はこちらです。
具体的な計測結果があるので、今更ながらKernel2. [...]

記事へ

noatimeでチューニング

UNIX系のシステムでは、ファイルの持つタイムスタンプ情報に「修正時間」(mtime)、「作成時間」(ctime)、「アクセス時間」(atime)
情報があります。
touchコマンドでは-mオプションでmtimeを、-aオプションでatimeを更新できます。
ls -l で mtime、ls -lc で ctime、ls -lu で atime を表示することができます。
PLAIN TEXT
CODE:

# ls -l *.txt

-rw-r--r-- 1 root root 0  5月 13 16:50 access.txt

-rw-r--r-- 1 root root 0  5月 13 16:50 modify.txt

# touch -a access.txt

# touch -m modify.txt

# ls -lu *.txt

-rw-r--r-- 1 root root 0  5月 13 16:58 access.txt

-rw-r--r-- 1 root root 0  5月 13 16:50 [...]

記事へ