简体   繁体   English

卸载sdcard命令android终端模拟器

[英]Unmount sdcard command android terminal emulator

command on android terminal emulator to unmount the sdcard on my htc wildfire s device? android终端模拟器上的命令以在我的htc wildfire s设备上卸载sdcard?

I have no option in the storage option under settings. 设置下的存储选项中没有选项。

Have you tried: 你有没有尝试过:

adb shell
umount /sdcard

With the first command you open a shell with the device, and with the second you unmount the sdcard. 使用第一个命令打开设备的外壳,然后使用第二个命令卸载sdcard。

before type this: 在输入以下内容之前:

adb root

than

adb shell

for android < 6.x type fuser -km /data , maybe need few times, for killing all process related with /data and then you can unmount your 'data' 对于android <6.x type fuser -km /data ,可能需要几次,以杀死与/ data相关的所有进程,然后您可以卸载'data'

 umount /sdcard

It required super user Access 需要超级用户访问权限

umount /sdcard umount / SD卡

For message: device or resource is busy! 对于消息:设备或资源正忙! Restart the device and close the file manager if open, it worked for me 重新启动设备并关闭文件管理器(如果打开),对我有用

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM