web-dev-qa-db-ja.com

AVDを実行できません(Ubuntu 18.04)

コマンドSdk/tools/Android avdを使用してAVDを実行することはできませんが、Android studioの考えで起動した場合、AVDは機能します。

これらのコマンドを試しましたが、何も変わりませんでした。

cd Android/Sdk/emulator/lib64/libstdc++
mv libstdc++.so.6 libstdc++.so.6.bak
ln -s /usr/lib64/libstdc++.so.6

エラーメッセージ:

Starting emulator for AVD 'Android_2.3.3API-10_2.7inch'
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
X Error of failed request:  GLXBadContext
  Major opcode of failed request:  155 (GLX)
  Minor opcode of failed request:  6 (X_GLXIsDirect)
  Serial number of failed request:  60
  Current serial number in output stream:  59
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
X Error of failed request:  GLXBadContext
  Major opcode of failed request:  155 (GLX)
  Minor opcode of failed request:  6 (X_GLXIsDirect)
  Serial number of failed request:  60
  Current serial number in output stream:  59
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: i965
libGL error: unable to load driver: i965_dri.so
libGL error: driver pointer missing
emulator: WARNING: Classic qemu does not support SMP. The hw.cpu.ncore option from your config file is ignored.
libGL error: failed to load driver: i965
libGL error: unable to load driver: swrast_dri.so
libGL error: failed to load driver: swrast
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  155 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  42
  Current serial number in output stream:  43
QObject::~QObject: Timers cannot be stopped from another thread
2
R S

同様の問題の解決策を見つけました here

これらは、エミュレーターの問題を解決するために従う必要がある正確な手順です。

  1. ディレクトリを変更:

    $ cd ~/Android/Sdk/emulator/lib64/libstdc++  
    
  2. ライブラリへのシンボリックリンクを作成します。

    $ mv libstdc++.so.6 libstdc++.so.6.bak
    
  3. 同じディレクトリに:

    $ ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6
    

それで修正されるはずです!適用されるとすぐに、仮想デバイスが実行されます。

2
Yury Vasilenko