Maxim Wexler wrote: > Ok, thanks everybody, getting ready to dive in and fix this thing. Two > more questions please: > > I modified the bottom of /etc/fstab to look like this according to a > post in the eee forum: > ... > #shm /dev/shm tmpfs nodev,sosuid,noexec 0 0 > tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0 > > Does this have anything to do with the inode issue? > > What's the best fs for a 4G SSD? I picked ext3 because of another eee > forum post. > > Maxim > >
Since I have a old install, maybe the new fstabs don't have this info. This is what is in mine: # NOTE: The next line is critical for boot! none /proc proc defaults 0 0 # glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for # POSIX shared memory (shm_open, shm_unlink). # (tmpfs is a dynamically expandable/shrinkable ramdisk, and will # use almost no memory if not populated with files) # Adding the following line to /etc/fstab should take care of this: none /dev/shm tmpfs defaults 0 0 >From that I gather that the system won't boot without /proc and that glibc requires /dev/shm for some reason or other. I'm not sure why you want to remove something that appears to be required. Maybe you have something different that doesn't need this? Hope that helps. Dale :-) :-)