/dev/hda6是ext3格式的,用root运行
mount /dev/hda6 /mnt/e没有问题,就是普通帐号
即不能进入也不能写.加上-o umask=000选项,出错如下:
mount: wrong fs type, bad option, bad superblock on /dev/hda6,
or too many mounted file systems
该如何使得普通帐号也有写的权限?
root@B2:/mnt# mount -rw -t ext3 -o umask=000 /dev/hda6 /mnt/e
mount: wrong fs type, bad option, bad superblock on /dev/hda6,
or too many mounted file systems
root@B2:/mnt#