mac Unable to load VirtualBox engine

版权所有,禁止匿名转载;禁止商业使用。

Genymotion error at start 'Unable to load virtualbox'


Run below command in terminal, It denotes where is your virtualbox install on MAC/Linux.


 $ which vboxmanage
    /usr/local/bin/VBoxManage

Genymotion search the virtualBox in /usr/bin/VBoxManage while it is located to /usr/local/bin/VBoxManage , you need to create the symlink to that location , Run in terminal to fix it.


sudo ln -s /usr/local/bin/VBoxManage /usr/bin/VBoxManage


0 0