genymotion允许su永久访问

Rup*_*ert 3 android emulation genymotion

  1. 在Genymotion配置中,我总是必须选中"始终允许su访问(绕过超级用户应用程序)"框,然后点击"保存"按钮.

  2. 然后会询问"你想重启吗?".我点击"是"

  3. 重新启动.有时它会成功重新启动,有时则不会.哎呀.

我该如何永久化?是否有genymotion使用的文件,所以我可以直接编辑它?提前致谢

mad*_*dan 10

使用VirtualBox来宾属性保留Genymotion参数.要列出Genymotion VM的当前guest虚拟机属性,您应该发出命令VBoxManage guestproperty enumerate [Name of your VM]

"始终允许su访问"的参数是su_bypass要设置此参数,您应该发出 VBoxManage guestproperty set [Name of your VM] su_bypass 1

您可以/应该在VM停止时发出这些命令.

  • "VBoxManage list vms"将显示虚拟机的名称谢谢madCdan :) (2认同)