由 sunyb 在 03-11-2004 22:38 发表:
这个mount命令如何写?
/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
该如何使得普通帐号也有写的权限?
由 hally 在 03-11-2004 23:29 发表:
mount -rw -t ext3 -o umask=000 /dev/hda6 /mnt/e
由 hally 在 03-11-2004 23:29 发表:
mount -rw -t ext3 -o umask=000 /dev/hda6 /mnt/e
由 sunyb 在 03-12-2004 00:02 发表:
root@B2:/mnt# mount -rw -t ext3 -o