6

1- I have a problem in running genymotion in KDE Plasma desktop in ubuntu 14.04 but it works in default ubuntu desktop corectly!

It gives me an error like this:

    linux@younes:~$ ~/genymotion/genymotion
    Logging activities to file: /home/linux/.Genymobile/genymotion.log
    Aborted (core dumped)
    linux@younes:~$

please help me

Jacob Vlijm
  • 83,767
RayanFar
  • 185
  • 1
  • 10

3 Answers3

11

This one helped me try it,

Installing the libs:

apt-get install libxi-dev libxmu-dev

Moving the Qt libs inside the Genymotion installation directory Code:

mkdir QtLibs && mv *Qt*.so* QtLibs

Try to read what log says.

Pert8S
  • 676
1

I had the same problem and just solved it. I already had LibQt* files inside the genymotion folder. Then I deleted all the libQt* files from the folder. Now it works like a charm. The genymotion development team has also said to delete these files.

Eliah Kagan
  • 117,780
Rhokai
  • 111
  • 3
0

In my case I performed the following steps:

  1. Installing the libs:

    sudo apt-get install libxi-dev libxmu-dev libqt4-webkit libqt4-svg
    
  2. Now, go to Genymotion installation directory, then move the Qt libs:

    mkdir QtLibs && mv *Qt*.so* QtLibs
    
karel
  • 114,770