CentOS 7 安装 Swap 分区
一键 Swap
检查 Swap 分区
shell
free -mSwap 分区为 0 则表示无 Swap 分区
下载一键安装脚本
shell
wget https://files.ioiox.com/projects/swap/swap.sh && chmod +x swap.sh && ./swap.sh手动动安装步骤
创建 Swap
检查 Swap 分区
shell
free -m创建虚拟磁盘
shell
dd if=/dev/zero of=/swapfile bs=1M count=2048格式化磁盘
shell
mkswap -f /swapfile修改权限
shell
chmod 0600 /swapfile挂载Swap
shell
swapon /swapfile检查Swap分区
shell
free -m设置开机启动
配置开机启动
shell
vi /etc/fstab最后添加
shell
/swapfile none swap sw 0 0卸载Swap
shell
swapoff /swapfile