1:创建4G大小的文件
dd if=/dev/zero of=/data/swapfile.txt bs=1M count=4096
2:格式化为swap分区
mkswap /data/swapfile.txt
3:启用swap分区
swapon /data/swapfile.txt
4:可写入/etc/fstab配置文件永久生效
/data/swapfile.txt swap swap defaults 0 0
5:确认swap分区在不在使用
swapon -s
6:禁用掉swap分区文件
swapoff /data/swapfile.txt
7:删除/etc/fstab中的配置和swap配置文件
rm -f /data/swapfile.txt