创建Linux swap时间:2023-03-08 19:42:13 创建SWAP文件(下面指定的是8G容量,系统物理内存8G): dd if=/dev/zero of=/data/swapfile bs=1M count=8192 格式化该文件 mkswap swapfile 加载为swap swapon swapfile 查看swap情况: free -m 结果: Swap: 8191 0 8191 在/etc/fstab中加入启动配置: /data/swapfile swap swap defaults 0 0