请教Android手机关于mount命令挂接外置sd卡的问题
发布网友
发布时间:2022-04-22 03:35
我来回答
共1个回答
热心网友
时间:2023-06-23 06:30
电脑端执行mount -t vfat /mnt/extSdCard 后,使用 cat /proc/mounts 命令查看sd卡状态:
/dev/block/mmcblk1p1 /storage/extSdCard vfat rw,relatime,fmask=0000,dmask=0000,a
llow_utime=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remoun
t-ro 0 0
手机端执行mount -t vfat /mnt/extSdCard 后,使用 cat /proc/mounts 命令查看sd卡状态:
/dev/block/mmcblk1p1 /storage/extSdCard vfat rw,relatime,fmask=0077,dmask=0077,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remoun
t-ro 0
不同处是前者 fmask=0000,dmask=0000,allow_utime=0022
后者是fmask=0077,dmask=0077
所以把命令手动改为mount -t vfat -o fmask=0000,dmask=0000,allow_utime=0022 /dev/block/mmcblk1p1 /mnt/extSdCard
就能正常挂载sd卡了!