Hi Walter ! > Yesterday, it started blowing up on me. After painfull debugging, I > discovered that /dev/shm now only 10 megabytes.
Did you change your kernel and or other system start information? tmpfs has a mount option to specify the maximum size. As /dev/shm is usually for small shared memory regions (POSIX) it gets limited to smaller size than 50% of available RAM. Try 'mount -oremount,size=100M /dev/shm' ... but this is all not Busybox related. -- Harald _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
