2016-11-24 12 views
1

エミュレータアンドロイドスタジオを使用したubuntuのAVDマネージャからは起動できません。しかし、ターミナルエミュレータで次のコードを入力すると実行されます。エミュレータアンドロイドスタジオのAVDマネージャから起動できません

エミュレータフォームAVDを実行するには、この問題を解決するのに役立ちますか。

LD_PRELOAD='/usr/lib/x86_64-linux-gnu/libstdc++.so.6' ~/Android/Sdk/tools/emulator -netdelay none -netspeed full -avd Nexus_4_API_23 

AVD ManagerでIをクリックするとダイアログがメッセージ ダイアログボックスのメッセージは以下に示します。

Cannot launch AVD in emulator. 
Output: 
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: 49 
Current serial number in output stream: 48 
libGL error: unable to load driver: r600_dri.so 
libGL error: driver pointer missing 
libGL error: failed to load driver: r600 
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: 49 
Current serial number in output stream: 48 
libGL error: unable to load driver: r600_dri.so 
libGL error: driver pointer missing 
libGL error: failed to load driver: r600 
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 opc 

ファイル名を指定して実行]タブのエラーメッセージは次のとおりです。

/home/mahmud/Android/Sdk/tools/emulator -netdelay none -netspeed full -avd Nexus_4_API_23 
libGL error: unable to load driver: r600_dri.so 
libGL error: driver pointer missing 
libGL error: failed to load driver: r600 
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: 49 
Current serial number in output stream: 48 
libGL error: unable to load driver: r600_dri.so 
libGL error: driver pointer missing 
libGL error: failed to load driver: r600 
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: 49 
Current serial number in output stream: 48 
libGL error: unable to load driver: r600_dri.so 
libGL error: driver pointer missing 
libGL error: failed to load driver: r600 
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: 33 
Current serial number in output stream: 34 
QObject::~QObject: Timers cannot be stopped from another thread 
+0

実際のデバイスまたはgenymotionエミュレータを使用していないのはなぜですか? –

+0

実際のデバイスでこのエラーが発生しますか? –

答えて

2

問題がありますlibstdC++に関連していますso.6 Android sdkに行きましょう。次のコマンドで解決できます:

cd ~/...../sdk/tools/lib64/libstdc++ 
mv libstdc++.so.6 libstdc++.so.6_OLD 
ln -sf /usr/lib/x86_64-linux-gnu/libstdc++.so.6 libstdc++.so.6 
+0

あなたの答えのためのBasiありがとうございました。私の問題は、これらのコマンドを使用して解決されます。どうもありがとうございます –

関連する問題