-a
按照 /etc/fstab 的内容将所有相关的磁盘都挂上来。
-t
Linux 支持的文件格式就写在这里。
例子:
1. 将刚建立的 /dev/hdb5 载入到 /mnt/hd5
# mkdir /mnt/hdb5
# mount -t ext3 /dev/hdb5 /mnt/hdb5
2. 载入光盘
# mount -t iso9660 /dev/cdrom mnt/cdrom
# mount /dev/cdrom
3. 载入U盘
# mount -t vfat /dev/sda1 /mnt/usb
4. 载入sd卡
# mount /dev/mmcblk0p1 /mnt/sdcard
5. 卸载设备
# umount /dev/hdb5
# umount /mnt/hdb5
# umount /mnt/sdcard