系统: [Young@isgeek ~]$ uname -a Linux isgeek.org 2.6.32.26-175.fc12.i686.PAE #1 SMP Wed Dec 1 21:45:50 UTC 2010 i686 i686 i386 GNU/Linux
U 盘: kingston 4G (主控为安国方案)
分区方式: 主分区:sdb1 ext4 2G 扩展分区:sdb2 2G 逻辑分区1: sdb5 ext2 1G 逻辑分区2: sdb6 ntfs 1G
挂载: [root@isgeek Young]# mkdir -p /mnt/{001,002,003} [root@isgeek Young]# mount -t ext4 /dev/sdb1 /mnt/001 此时,普通用户在/mnt/001分区上具有读写权限。 [root@isgeek Young]# mount -t ntfs /dev/sdb6 /mnt/003 此时,普通用户在/mnt/003分区上没有读写权限。 [root@isgeek Young]# mount -t ext4 /dev/sdb5 /mnt/002 此时,普通用户在/mnt/003分区上没有读写权限。
为什么普通用户对后两个分区没有读写权限,而对第一个分区却可以读写呢? 谢谢!