SD卡挂载

使用fdisk -l查看SD卡的驱动设备文件,如

/mnt # fdisk -l

Disk /dev/mmcblk0: 7948 MB, 7948206080 bytes
4 heads, 16 sectors/track, 242560 cylinders
Units = cylinders of 64 * 512 = 32768 bytes

        Device Boot      Start         End      Blocks  Id System
/dev/mmcblk0p1              33      242560     7760896  83 Linux

这里的/dev/mmcblk0p1就是我们要找的信息,使用命令

mkdir /mnt/SD_card1 && mount -t ext4 /dev/mmcblk0p1 /mnt/SD_card1 && mount && ls -l /mnt/SD_card1

即可实现EXT4格式的SD卡挂载。

你可能感兴趣的:(SD卡挂载)