linux 下 格式化 sd卡为ext4

linux下格式化 sd卡为ext4

1.mount  

找到插入的sd卡 /dev/sdb1 on /media/usb0 ...

2.umount /dev/sdb1

3.mke2fs -t ext4 /dev/sdb1

4.mount /dev/sdb1

成功

-------------------------------------------------------------------------

修改sdcard权限,可执行adb push xxx sdcard

$ adb shell

shell@hwH30:/ $ su

root@hwH30:/ # mount -o remount rw /storage/sdcard1

mount: Invalid argument

255|root@hwH30:/ # mount -o remount rw /

root@hwH30:/ # chmod 777 sdcard

root@hwH30:/ # 




你可能感兴趣的:(linux/unix)