Reputation: 39
I have successfully installed Genymotion and Virtualbox ,but not able to create virtual devices. virtual device is complete download but file is corrupted, not only one but all
Upvotes: 2
Views: 12510
Reputation: 113
These steps work for me:
Upvotes: 0
Reputation: 447
I'm using genymotion on windows and had the same problem. I've just changed Virtual Prices Path from C drive to D drive (just another drive) and the problem solved.
Upvotes: 0
Reputation: 84
You may execute genymotion using sudo
or change file permissions of genymotion and it's files with:
chown -R username:username /path/to/genymotion
Also change file permissions of the deployed images and cached ova files which are probably in ~/.Genymobile/Genymotion
Upvotes: 0
Reputation: 9517
Here's how I did mine. Every single virtual device I downloaded in Genymotion, I was told it is corrupted. What is wrong with Genymotion?
Well, TL;DR, locate the downloaded file, open and run with Virtualbox first time, and come back to Genymotion to run it.
~/.Genymobile/Genymotion/ova
.ova
file to open in VirtualBox (or right click and Open with VirtualBox)reboot -p shutdown
to close the terminal~/Developments/Genymotion/genymotion/genymotion
)Upvotes: 0
Reputation: 2115
This happens because you've ran genymotion for the first time as root.
fix it this way :
sudo rm -rf ~/.Genymobile
and now try again to install a virtual device.
Upvotes: 0
Reputation: 831
If you work in some company and your company has cyberroam configured on it, i.e., if there is restricted access for downloading, then you just need to enable downloading on your system. As I was also having this issue, I had downloaded Genymotion(no restriction occur using 'https') but at the time of downloading for the virtual device its showing message for corrupt files, so just enabled download rights from network admin, then it started to download. I had done full installation process 2 times and both the times the first full download(both times) also showed the same 'corrupt files' message but the second download(both times) succeeded.
Check, in case, if it helps!
Upvotes: 0
Reputation: 21
I am running genymotion on Mac OS X 10.9.2 and must run Genymotion via sudo.
I created a bash script that I run:
#!/bin/bash
sudo /Applications/Genymotion.app/Contents/MacOS/genymotion
I've named the script run-genymotion.sh
.
Make sure to chmod +x ./run-genymotion.sh
so it is executable.
Then ./run-genymotion.sh
to execute the script via terminal.
Upvotes: 1
Reputation: 530
If your are using Ubuntu, I just found the soluction! Run Genymotion as a SUDO. To do that, open your terminal, go to the Genymotion folder and type:
sudo ./genymotion
Now go and download your Virtual Machine!
Hope it works for you too
Upvotes: 6