熱度 1|
1、U盤的掛載
1.插入U盤。
2.用fdisk -l查看磁盤信息
[root@EmbedSky /mnt]# fdisk -l
=======================================================================
Disk /dev/sda: 7933 MB, 7933526016 bytes
136 heads, 3 sectors/track, 37978 cylinders
Units = cylinders of 408 * 512 = 208896 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1697 37979 7401600 c Win95 FAT32 (LBA)
=======================================================================
3.在mnt目錄下建一個usb目錄(這個可隨意)
[root@localhost mnt]# mkdir usb
4.掛載U盤
[root@localhost mnt]# mount /dev/sdb1 /mnt/usb/
5.進入/mnt/usb 即可看到U盤的內容了。
6.卸載U盤
[root@localhost usb]# umount -l /dev/sdb
/*********************************************************************************
*********************************************************************************/
2、光盤的掛載與U盤相似:
1.插入光盤。
2.掛載光盤
[root@localhost mnt]# mount /dev/cdrom /mnt/cdrom/
3.卸載光盤
[root@localhost usb]# umount -l /dev/cdrom
4.彈出光盤
[root@localhost usb]# eject