[[email protected] ~]# fdisk -l
Disk /dev/sda: 21.5GB, 21474836480 bytes
#系統硬碟
…省略部分輸出…
Disk/dev/sdb: 8022 MB, 8022654976 bytes
#這就是識別的U盤,大小為8GB
94 heads, 14 sectors/track, 11906 cylinders
Units = cylinders of 1316 * 512 = 673792 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 1 11907 7834608 b W95 FAT32
#系統給U盤分配的裝置檔名
[[email protected] ~]# mkdir /mnt/usb
然後就是掛載了,掛載命令如下:
[[email protected] ~]# mount -t vfat /dev/sdb1 /mnt/usb/
掛載U盤。因為是Windows分割區,所以是vfat檔案系統格式
[[email protected] ~]# cd /mnt/usb/
#去掛載點存取U盤資料
[[email protected] usb]# ls
#輸出為亂碼
#之所以出現亂碼,是因為編碼格式不同
[[email protected] ~]# mount -t vfat -o iocharset=utf8 /dev/sdb1 /mnt/usb/
#掛載U盤,指定中文編碼格式為UTF-8
[[email protected] ~]# cd /mnt/usb/
[[email protected] usb]# ls
1111111年度總結及計劃表.xls ZsyqlHL7osKSPBoGshZBr6.mp4 協定書
12月21日.doc 恭喜發財(定).mp4 新年VCR(定).mp4
#可以正確地檢視中文了
[[email protected] ~]# echo $LANG
zh_CN.UTF-8
#檢視一下Linux預設的編碼格式