View Single Post
Posts: 207 | Thanked: 31 times | Joined on Apr 2008
#8
I have entries for shm and pts in fstab.
There are directories /dev/shm and /dev/pts
But mountall fail to mount
I move mountall to mountall.bin and create script creating /dev/pts and /dev/shm and then execute real mountall.bin
#!/bin/sh
mkdir /dev/pts /dev/shm
/sbin/mountall.bin
I don't know why this is happened...