This is a prerequisite condition to test whether sufficient total swap space is available on the system. (more details)
Expected Value
: 2.665GB (2794500.0KB)
Actual Value
: 2GB (2097148.0KB)
查看swap:
解决方法:
- 以root用户进入/tmp目录,执行如下命令增加swap大小,增加的大小为bs*count的值:
[root@localhost tmp]# dd if=/dev/zero of=swapfree bs=32k count=65515
- 将创建的文件用作swap分区
[root@localhost tmp]# mkswap swapfree
正在设置交换空间版本 1,大小 = 2096476 KiB
无标签,UUID=3451e0d9-7b9a-4723-b601-3d870751ea39
- 开启交换空间
[root@localhost tmp]# swapon swapfree
查看swap:
- 设置交换分区开机启动
此时再去check,错误就消失了。