虚拟内存设置教程
在安装MYSQL的过程中可能会出现如下错误:
cc: internal compiler error: Killed (program cc1)
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://bugzilla.redhat.com/bugzilla> for instructions.
make[2]: *** [storage/mroonga/vendor/groonga/lib/CMakeFiles/libgroonga.dir/expr.c.o] Error 4
make[1]: *** [storage/mroonga/vendor/groonga/lib/CMakeFiles/libgroonga.dir/all] Error 2
make: *** [all] Error 2
原因:这是由于系统内存不足所导致的,可以通过设置虚拟内存来解决。
设置虚拟内存:
dd if=/dev/zero of=/swapfile bs=1k count=2048000
mkswap /swapfile
swapon /swapfile
/sbin/swapon /swapfile
删除虚拟内存:
/sbin/swapoff /swapfile
rm -rf /swapfile
查看虚拟内存:
swapon -s
free -m
防止重启虚拟内存清空:
vi /etc/fstab
在文件末尾(最后一行)加上
/home/swap swap swap default 0 0
资料参考:
Linux查看虚拟内存和cpu占用率:http://blog.51cto.com/5007260/1701238
mkswap命令:http://man.linuxde.net/mkswap
虚拟内存设置:https://blog.csdn.net/lengyue1084/article/details/51405640