0.VirtualBox

在 Linux 下安装 Genymotion,必须首先安装 VirtualBox

sudo apt install virtualbox -y

1.注册账号

前往官网注册账号。

2.下载

登录账号后,点击下载个人版

Ubuntu18.04 安装 genymotion 安卓模拟器 的方法记录

3.安装

由于默认下载在Downloads目录, 所以需要cd到该目录

cd ~/Downloads/

添加执行权限

 chmod u+x ./genymotion-3.0.2-linux_x64.bin

执行安装程序 并且指定安装目录

 sudo ./genymotion-3.0.2-linux_x64.bin -d ~/opt

按 y 继续

4.成功

最后提示

Installation done successfully.

You can now use these tools from [/home/aaron/opt/genymotion]:

  • genymotion
  • genymotion-shell
  • gmtool

进入用户主目录下的opt/genymotion/genymotion,双击目录下的genymotion文件就可以顺利的打开了。

或者终端执行 ~/opt/genymotion/genymotion 也可以正常打开。但是命令太长了。所以设置下别名。

设置命令别名

alias genymotion="~/opt/genymotion/genymotion"

让命令别名永久生效:

gedit ~/.bashrc

在文件末尾添加alias genymotion="~/opt/genymotion/genymotion" 使用source命令即可立即生效。

之后在终端执行genymotion就可以打开了。


参考:
Ubuntu18.04 下安装 genymotion