linux挂载命令
挂载共享文件夹
# mount -t cifs -o nsername=administrator,password= //192.168.100.1/123 /mnt/123
挂载NTFS文件系统
# mount -t ntfs-3g /dev/sda5 /mnt/d_driver
挂载FAT32文件系统
# mount -t vfat /dev/sda6 /mnt/e_driver
挂载光盘文件系统
# mount -o loop -t iso9660 db29.7_07_linux64.iso /mnt/cdrom/
linux挂载U盘
[root@localhost ~]# fdisk -l
[root@localhost ~]# cd /mnt
[root@localhost mnt]# mkdir usb
[root@localhost mnt]# mount -t vfat /dev/sdb4 /mnt/usb
===============================================
卸载:
umount /mnt/d_driver
umount /mnt/e_driver