Linux下设置swap的自动化脚本
1、如何使用?
将swap_setting.sh上传Linux系统,./swap_setting.sh命令直接执行
2、有什么注意点?
通过 chmod +x swap_setting.sh 命令对脚本赋予执行权限。
3、如何设置开机自动开启swap虚拟内存?
在如下文件/etc/rc.local中增加开启swap的命令:
vi /etc/rc.local
添加内容:
swapon /data/swapfile
4、脚本的内容是什么?
swap_setting.sh文件:
dd if=/dev/zero of=/data/swapfile bs=1M count=1399
chmod 0600 /data/swapfile
mkswap /data/swapfile
swapon /data/swapfile