#mkfs.ext3 /dev/sda10
/etc/fstab 对应的行内容为
/dev/sda10 /mnt/study ext3 rw,uid=carlos,auto,exec 0 0
#mount -a
出现错误:
mount: wrong fs type, bad option, bad superblock on /dev/sda10,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
#dmesg | tail
EXT3-fs: Unrecognized mount option "uid=1000" or missing value
去掉uid=carlos是可以正常挂载,但普通用户无法写入文件。。用umask=000也出现同样的问题
EXT3-fs: Unrecognized mount option "umask=000" or missing value
我的系统是Debian sid,请高手帮忙!