linux添加虚拟内存交换内存当Linux内存不够的情况下,可以适当增加swap内存来分担
新建交换分区文件夹
dd if=/dev/zero of=/tmp/swapfile bs=1024 count=1024k
格式化该分区为交换
2023-05-15