RobertCNelson / stable-kernel

MIT License
74 stars 39 forks source link

Failure during build_kernel.sh #35

Closed swohler closed 11 years ago

swohler commented 11 years ago

During build_kernel.sh, it fails when it reaches this line:

CC [M] fs/nls/nls_cp949.o fs/nls/nls_cp949.c:13947:1: fatal error: error writing to /tmp/ccjCJZCs.s: No space left on device compilation terminated. make[2]: * [fs/nls/nls_cp949.o] Error 1 make[1]: * [fs/nls] Error 2 make: *\ [fs] Error 2

This is being done on Ubuntu in a VirtualBox VM. The drive on which this is running has 15GB free space.

RobertCNelson commented 11 years ago

"error writing to /tmp/ccjCJZCs.s: No space left on device"

You may have 15GB free, but your host is mis-configured for dealing with real work. I'm guessing your install is probably setup for a 'flashy fast' desktop and is using '/tmp' mounted in ram which is great if all you do is surf the web with firefox. So your running out of ram/tmp...

I don't run, ubuntu, so search google. In Debian Wheezy/Jessie it's;

cat /etc/default/tmpfs

# mount /tmp as a tmpfs.  Defaults to no; set to yes to enable (/tmp
# will be part of the root filesystem if disabled).  /tmp may also be
# configured to be a separate mount in /etc/fstab.
#RAMTMP=no

Regards,