【发布时间】:2014-02-23 14:28:36
【问题描述】:
我已经获得了手机的root权限。在adb shell中,我输入如下命令:
#create a file about 10M
dd if=/dev/zero of=/mnt/sdcard/AAA.pdf bs=1024 count=10000
#format this file
mkfs.ext2 -F /mnt/sdcard/AAA.pdf
#create a folder which is used to be mounted
mkdir /mnt/sdcard/aaa
#mount
mount -t ext2 -o loop /mnt/sdcard/AAA.pdf /mnt/sdcard/aaa
chmod 777 /mnt/sdcard/aaa
#umount
umount /mnt/sdcard/aaa
它运行正常。 但是如果我想再次安装,它失败了。在我输入mount -t ext2 -o loop /mnt/sdcard/AAA.pdf /mnt/sdcard/aaa 后,它会显示ioctl LOOP_SET_FD failed: Device or resource busy。我不知道这怎么会发生。有人可以帮忙吗?
【问题讨论】: