> CentOS > CentOS入门 >

CentOS下修改swap的大小(不关机也生效)

free -m查看swap是否大于内存大小,否则要扩大swap
swapoff -a
cd /
mkdir swap
cd swap
dd if=/dev/zero of=swapfile bs=1M count=4096
mkswap swapfile
#激活swap文件
swapon swapfile
free -m

直接拷贝可使用的命令如下

------------------

swapoff -a
cd /
mkdir swap
cd swap
dd if=/dev/zero of=swapfile bs=1M count=4096
mkswap swapfile
swapon swapfile
----------------------

修改/etc/fstab文件,增加如下一行
代码: /swap/swapfile swap swap defaults 0 0

(责任编辑:IT)