Sven LUTHER <[EMAIL PROTECTED]> writes: > Hello, ... > > i am running uptodate potato (from yesterday) and when i boot using a > linux-2.3.99-pre3 kernel, i got the following message when X is booting : > > Apr 4 12:56:46 lambda kernel: shmget: shm filesystem not mounted > > what is this, should i enable a special option in the kernel configuration or > something such ?
Shared memory (shm) in the 2.4 kernels is handled by a virtual filesystem, so just like /proc, you need to mount it on boot by putting something like this into /etc/fstab: none /var/shm shm defaults 0 0 (Is /var/shm the right spot for this? What happens if one mounts /var/shm and then /var?) Of course, you also need to create the /var/shm mountpoint.

