How do I install Genymotion on Ubuntu 20.04?
Asked
Active
Viewed 6,875 times
1 Answers
5
According to PKGBUILD from ArchLinux AUR - you have to
install VirtualBox
sudo apt-get install virtualbox
then download the GenyMotion and install it with
cd ~/Downloads
wget https://dl.genymotion.com/releases/genymotion-3.1.0/genymotion-3.1.0-linux_x64.bin
yes | sudo bash ./genymotion-3.1.0-linux_x64.bin -d /usr/local/
then optionally create symlinks for binaries with:
sudo ln -s /usr/local/genymotion/genymotion /usr/local/bin/genymotion
sudo ln -s /usr/local/genymotion/genymotion-shell /usr/local/bin/genymotion-shell
sudo ln -s /usr/local/genymotion/player /usr/local/bin/genymotion-player
sudo ln -s /usr/local/genymotion/gmtool /usr/local/bin/gmtool
It seems that you need to obtain license to get it working.
Possible free alternative may be Anbox (installed from Snap with snap install anbox).
N0rbert
- 103,263