mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
[root@localhost ~]# fdisk -l

Disk /dev/sda: 320.0 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x015f015e

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1        3952    31744408+   7  HPFS/NTFS
/dev/sda2            3953       36988   265354271+   f  W95 Ext'd (LBA)
/dev/sda3   *       36988       37249     2097152   83  Linux
/dev/sda4           37249       37510     2097152   83  Linux
/dev/sda5            3953        9689    46080992+   7  HPFS/NTFS
/dev/sda6            9689       17593    63488000    7  HPFS/NTFS
/dev/sda7           17593       25880    66560000    7  HPFS/NTFS
/dev/sda8           25880       31363    44041184+   7  HPFS/NTFS
/dev/sda9           31363       34638    26308607+  83  Linux
/dev/sda10          34638       36988    18874367+  83  Linux

mount -t ntfs -o umask=0000,utf8=1 /dev/sda1 /android/windows/c
mount -t ntfs -o umask=0000,utf8=1 /dev/sda5 /android/windows/d
mount -t ntfs -o umask=0000,utf8=1 /dev/sda6 /android/windows/e
mount -t ntfs -o umask=0000,utf8=1 /dev/sda7 /android/windows/f
mount -t ntfs -o umask=0000,utf8=1 /dev/sda8 /android/windows/g

/dev/sda1 : 是要挂载的windows分区在linux的对应的设备文件名, 可用sudo fdisk -l 查看.
/mnt/c : 将要挂载的目录.
vfat : 分区文件系统类型.
rw : 可读写.
suid : 不知什么意思.
dev : ...
exec : 可执行.
auto : 自动挂载.
user : 普通用户可挂载.
async : 异步存储.
umask-0000 : 是让所有用户可读写.
utf8 : 是用来显示中文文件名的.
0 0 : 不知道.