2015/09/16

swapを無効にする方法 Ubuntu 14.04 lts 32bit

<スワップを無効にする方法>

端末を開く

sudo gedit /etc/rc.local

exit 0の前にsudo swapoff -aを書く

例.

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

sudo swapoff -a

exit 0


保存する


再起動する


システムモニターで確認する

スワップ 利用できません と表示されていたら、swapは無効に設定されている。
解除するときは、geditで/etc/rc.localを開き追加したコマンドsudo swapoff -aを削除すればいい










スワップを利用するとシステムが遅くなる。
メモリに余裕があれば、スワップを無効にする。
すると、Ubuntuを高速化できる。