memo.xight.org

日々のメモ

tmpfs - 仮想メモリベースのファイルシステム

最大容量を64Mbytesにしてマウント

# mount -t tmpfs -o size=64m tmpfs /dev/shm


/tmp をRAM上に置く

# mount -t tmpfs -o size=64m /dev/shm /tmp


Reference

@IT - 容量が動的に変化するRAMディスクを使うには
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/277usetmpfs.html