Home > Article > Operation and Maintenance > Linux mounting fat32 and ntfs format USB disk example tutorial
If you want Linux to recognize the USB flash drive, you need to position the mouse inside Linux of the virtual machine, then insert the USB flash drive, then the USB flash drive will be recognized by Linux, and then use fdisk -l to check the status of the USB flash drive.
/dev/sda1 * 1 6 48163+ 83 Linux
/dev/sda2 7 515 4088542+ 83 Linux
/dev/ sda3 516 776 2096482+ 82 Linux swap / Solaris
/dev/sda4 777 2610 14731605 5 Extended
/dev/sda5 777 2610 14731573+ 83 Linux
Disk /dev/sdb: 7985 MB, 79 85954816 bytes
231 heads, 28 sectors/track, 2411 cylinders
Units = cylinders of 6468 * 512 = 3311616 bytes
Device Boot Start Start End Blocks Id System
/dev/sdb1 2 2412 7794688 b W95 FAT32
If it is a fat format U disk, mount it Command: mount -t vfat /dev/sdb1 /mnt/udisk
If it is a U disk in ntfs format, mount command: mount -t ntfs-3g /dev/sdb1 /mnt/udisk
If there is no /mnt /udisk folder, you can create a
mkdir /mnt/udisk
~
But note that if you want to mount the ntfs format, you need to download an ntfs-3g-2011.4.12-5 .el5.i386.rpm package, install it~
Baidu the package name, go to CSDN to download...
The above is the detailed content of Linux mounting fat32 and ntfs format USB disk example tutorial. For more information, please follow other related articles on the PHP Chinese website!