- 检查swap 大小
swapon -s
- 关闭所有swap
swapoff -a
- 设置 swap 文件2G
dd if=/dev/zero of=/swapfile1 bs=1024 count=2000000
mkswap /swapfile1
chown root:root /swapfile1
chmod 0600 /swapfile1
swapon /swapfile1
- 系统重启后生效,打开/etc/fstab在最后面加上一行:
nano /etc/fstab
/swapfile1 swap swap defaults 0 0
- SWAP设置一键脚本
wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh