swap 内存不足
Posted 那个人好像一条狗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swap 内存不足相关的知识,希望对你有一定的参考价值。
参考:https://stackoverflow.com/questions/5682854/why-is-the-linker-terminating-on-me-when-i-build-clang
https://unix.stackexchange.com/questions/294600/i-cant-enable-swap-space-on-centos-7
虚拟机编译cLang 编译器报错如下:
collect2: error: ld terminated with signal 9 [Killed]
原因: ld非常耗内存,它需要把所有object文件加载到内存,进行处理。
解决办法: 增加swap空间, 步骤如下:
这里主要说明fallocate分配swap空间,导致swapon报错,invalid argument,原因如下:
用第二种方法分配swap空间,链接通过。
设置开机启用swap文件:
在/etc/fstab文件中添加一行:
/mnt/10GB.swap swap swap defaults 0 0
以上是关于swap 内存不足的主要内容,如果未能解决你的问题,请参考以下文章