创建一个8G的交换文件
在虚拟内存挂载的硬盘里面创建一个8G的swapfile文件
dd if=/dev/zero of=/mnt/System/swapfile bs=1024 count=8192000
这里bs是1024k,count就是8G=8000*1024=8192000
格式化刚刚创建的swap文件
mkswap -f /mnt/System/swapfile
启用活动分区
swapon /mnt/System/swapfile
如果需要卸载活动分区输入以下指令
swapoff /mnt/sda1/swapfile
这时候打开openwrt的概览就可以看到虚拟内存已经挂载了
实现开机自动挂载交换文件
我们在/etc/fstab中增加一下条目就能实现开机自动挂载。
/mnt/System/swapfile swap swap defaults 0 0