idanr1986 / cuckoo-droid

CuckooDroid - Automated Android Malware Analysis with Cuckoo Sandbox.
580 stars 135 forks source link

Can I deploy cuckoo-droid on a ubuntu server without GUI interface ? #68

Open Vccxx opened 6 years ago

Vccxx commented 6 years ago

I notice that the document said I need to click "use host GPU" entry to get it work. But can I deploy it on a server with out an GPU? Actually I have tried it and cuckoo just kept waiting at here:

default

and after I use Ctrl + C to force stop it , it shows infomation like this:

default

it seems that the device has started ? but I really wait for a long time(about 1 hour). Is there anything I get wrong ? I would appreciate it if a solution is given.

Vccxx commented 6 years ago

oh ,sorry ,without a GUI,not GPU

wickywaka commented 6 years ago

There is a headless mode with android emulator, I don't remember which parameter you have to provide but it won't open the emulator GUI.

muhzii commented 6 years ago

emulator @<label> -no-window ? there is another one you can use if you run with -qemu: emulator @<label> -qemu -vnc none this should get emulator running with no graphical interface is ur mentioned issue happening only when you uncheck "use host gpu" ?

gpalazolo commented 5 years ago

@Vccxx the short answer is: yes, you can!

You just need to add these three lines at the cmd variable on start_emulator at "./modules/machinery/avd.py":

"-no-skin", "-no-audio", "-no-window",

avd

Hope this can help!

Regards, Palazolo