一、查詢與自動掛載
[root@localhost ~] # mount
#查詢系統中已經掛載的設備
[root@localhost ~] # mount -a
#依據配置文件/etc/fstab的內容,自動掛載
二、掛載命令格式
[root@localhost ~] # mount [-t 文件系統] [-o 特殊選項] 設備文件名 掛載點
選項
-t 文件系統:加入文件系統類型來指定掛載的類型,能夠是ext三、ext四、iso9660等文件系統
-o 特殊選項:能夠指定掛載的額外選項
三、掛載光盤
[root@localhost ~] # mkdir /mnt/cdrom
-#創建掛載點
[root@localhost ~] # mount -t iso9660 /dev/cdrom /mnt/cdrom
-#掛載光盤
[root@localhost ~] # mount /dev/sr0 /mnt/cdrom
#建議使用這條,由於 /dev/cdrom -> /dev/sr0 (軟鏈接)
四、卸載命令
[root@localhost ~] # umount 設備文件名或掛載點
[root@localhost ~] # umount /mnt/cdrom
五、掛載U盤
[root@localhost ~] # fdisk -l
#查看U盤設備文件名
[root@localhost ~] # umount -t vfat /dev/sdb1 /mnt/usb
# 注意:Linux默認是不支持NTFS文件系統的