|
发表于 2020-4-9 09:43:21
只看该作者
地板
开发板型号是rk3308;
sd卡是闪迪的128g的micro SD存储卡,
/ # fdisk -l
Found valid GPT with protective MBR; using GPT
Disk /dev/mmcblk1: 15269888 sectors, 3360M
Logical sector size: 512
Disk identifier (GUID): 992b0000-0000-4473-8000-2b880000574b
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 15269854
Number Start (sector) End (sector) Size Name
1 8192 12287 2048K uboot
2 12288 16383 2048K trust
3 16384 18431 1024K misc
4 18432 43007 12.0M recovery
5 43008 61439 9216K boot
6 61440 585727 256M rootfs
7 585728 716799 64.0M oem
8 716800 15269854 7105M userdata
Disk /dev/mmcblk1boot1: 4 MB, 4194304 bytes, 8192 sectors
128 cylinders, 4 heads, 16 sectors/track
Units: cylinders of 64 * 512 = 32768 bytes
Disk /dev/mmcblk1boot1 doesn't contain a valid partition table
Disk /dev/mmcblk1boot0: 4 MB, 4194304 bytes, 8192 sectors
128 cylinders, 4 heads, 16 sectors/track
Units: cylinders of 64 * 512 = 32768 bytes
Disk /dev/mmcblk1boot0 doesn't contain a valid partition table
Disk /dev/mmcblk0: 119 GB, 127865454592 bytes, 249737216 sectors
15545 cylinders, 255 heads, 63 sectors/track
Units: cylinders of 16065 * 512 = 8225280 bytes
Device Boot StartCHS EndCHS StartLBA EndLBA Sectors Size Id Type
/dev/mmcblk0p1 2,10,9 1023,254,63 32768 249737215 249704448 119G 7 HPFS/NTFS
/ # cat /proc/partitions
major minor #blocks name
179 32 7634944 mmcblk1
179 33 2048 mmcblk1p1
179 34 2048 mmcblk1p2
179 35 1024 mmcblk1p3
179 36 12288 mmcblk1p4
179 37 9216 mmcblk1p5
179 38 262144 mmcblk1p6
179 39 65536 mmcblk1p7
179 40 7276527 mmcblk1p8
179 128 512 mmcblk1rpmb
179 96 4096 mmcblk1boot1
179 64 4096 mmcblk1boot0
179 0 124868608 mmcblk0
179 1 124852224 mmcblk0p1
/ # mount /dev/mmcblk0p1 /sdcard
FUSE exfat 1.2.6
fuse: device not found, try 'modprobe fuse' first
/ #
/ # mount -t vfat /dev/mmcblk0p1 /sdcard/
mount: /mnt/sdcard: wrong fs type, bad option, bad superblock on /dev/mmcblk0p1, missing codepage or helper program, or other error.
/ # mount -t ntfs /dev/mmcblk0p1 /sdcard/
modprobe: can't change directory to '/lib/modules': No such file or directory
NTFS signature is missing.
Failed to mount '/dev/mmcblk0p1': Invalid argument
The device '/dev/mmcblk0p1' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
|
|