0

I'm trying to close / kill Genymotion emulator within terminal , the thing is that kill player is not enough , the vm is still running , I need something that also can kill the vBox's vm instance.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Igal
  • 4,603
  • 14
  • 41
  • 66

2 Answers2

0

Genymotion has a command line tool (gmtool) to control the whole software. Here is the doc: https://docs.genymotion.com/Content/04_Tools/GMTool/GMTool.htm

You can simply run this command to stop a device:

gmtool admin stop myDevice

Caution: This is a paid feature

eyal-lezmy
  • 7,090
  • 3
  • 41
  • 35
0

Use player utility (located at genymotion/bin directory) with options --vm-name and --poweroff Sample:

player -n MyEmylator -x

Also maybe helpfull my simple script genymotion_tools.sh

Yura Shinkarev
  • 5,134
  • 7
  • 34
  • 57