[Xin Liu] > I also met this error. I'm using the debian package > linux-image-2.6.18-1-686 with version 2.6.18-2. > > The output of the command "grep -E -qs "tmpfs\$" /proc/filesystems" is > nothing.
For that command, the exit value is the important value. Try "grep -E -qs "tmpfs\$" /proc/filesystems ; echo $?". Or remove the -q from the argument list to get the non-quiet version: grep -E -s "tmpfs\$" /proc/filesystems It worries me that the tmpfs mounting fail with the new 2.6.18 kernel. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

