Skip to content

CentOS 7 安装 Swap 分区

一键 Swap

检查 Swap 分区

shell
free -m

Swap 分区为 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