gpt4 book ai didi

android - 使用 BusyBox 挂载 ext2 sd 卡

转载 作者:搜寻专家 更新时间:2023-11-01 09:05:42 25 4
gpt4 key购买 nike

我正在尝试装载一张我放入平板电脑的 SD 卡。 sd卡是ext2格式的。我尝试在平板电脑上的终端应用程序中通过以下命令使用 BusyBox:

busybox mkfs.ext2

但似乎我需要在命令中添加一些参数。我需要向其中添加什么命令?或者有没有更简单的方法来挂载 sd 卡?

我不想格式化sd卡,因为上面有数据;但无论以 ext2 格式读取它都可以。

最佳答案

您需要挂载 ext2 文件系统而不是创建文件系统。

根据您的平板电脑,/dev 中的设备可能与我的示例不同。但通常你想运行类似的命令:

busybox mount -t ext2 /dev/block/vold/179:2 /data/sd-ext

其中 /dev/block/vold/179:2 是您尝试挂载的设备。

/data/sd-ext 是您要挂载 SD 卡的路径。

这是挂载命令的帮助页面

1|shell@android:/ $ busybox mount -t
option requires an argument -- t
BusyBox v1.20.0.git (2012-03-21 01:44:00 GMT) multi-call binary.

Usage: mount [OPTIONS] [-o OPTS] DEVICE NODE

Mount a filesystem. Filesystem autodetection requires /proc.

-a Mount all filesystems in fstab
-f Dry run
-i Don't run mount helper
-r Read-only mount
-w Read-write mount (default)
-t FSTYPE[,...] Filesystem type(s)
-O OPT Mount only filesystems with option OPT (-a only)
-o OPT:
loop Ignored (loop devices are autodetected)
[a]sync Writes are [a]synchronous
[no]atime Disable/enable updates to inode access times
[no]diratime Disable/enable atime updates to directories
[no]relatime Disable/enable atime updates relative to modification time
[no]dev (Dis)allow use of special device files
[no]exec (Dis)allow use of executable files
[no]suid (Dis)allow set-user-id-root programs
[r]shared Convert [recursively] to a shared subtree
[r]slave Convert [recursively] to a slave subtree
[r]private Convert [recursively] to a private subtree
[un]bindable Make mount point [un]able to be bind mounted
[r]bind Bind a file or directory [recursively] to another location
move Relocate an existing mount point
remount Remount a mounted filesystem, changing flags
ro/rw Same as -r/-w

There are filesystem-specific -o flags.

关于android - 使用 BusyBox 挂载 ext2 sd 卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12013140/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com