Ubuntu – I just can’t uninstall genymotion from Ubuntu 16.04

genymotionvirtualbox

I installed Genymotion in my Ubuntu 16.04

But now I want to uninstall it.

I tried executing

./genymotion-2.7.2-linux_x64.bin --uninstall

But that returned

bash: ./genymotion-2.7.2-linux_x64.bin: Permission denied

How can I uninstall genymotion from my Ubuntu 16.04?

Best Answer

Sounds like you're only missing sudo Try:

sudo ./genymotion-2.7.2-linux_x64.bin --uninstall

Or if that didn't work, try with sh like this:

sudo sh ./genymotion-2.7.2-linux_x64.bin --uninstall
Related Question