linux扩swap

linux扩充swap

linux扩充swap 1GB

查看当前swap:

1
free -m

增加swap:

1
2
3
dd if=/dev/zero of=/swapfile bs=1M count=1024
mkswap /swapfile
swapon /swapfile

自动挂载:

1
2
cat /etc/fstab
/swapfile swap swap defaults 0 0

查看扩充后:

1
free -m