web-dev-qa-db-ja.com

FirefoxまたはchromeでPipelightが機能しない

website の指示に従ってpipelightをインストールしましたが、まだ正しく動作しません。

カーネルバージョン3.8.0-27-generic

chromeを起動すると、ログはとして表示されます。誰かが私のセットアップの何が悪いのか教えてもらえますか?

n-linux:~$ google-chrome &
[1] 31528
husain@husain-linux:~$ ATTENTION: default value of option force_s3tc_enable overridden by environment.
[13:21:1005/131424:ERROR:platform_thread_linux.cc(99)] Failed to set Nice value of thread to -10
[PIPELIGHT:LIN] attached to process.
[PIPELIGHT:LIN] trying to load config file from '/home/husain/.config/pipelight'.
[PIPELIGHT:LIN] trying to load config file from '/etc/pipelight'.
[PIPELIGHT:LIN] trying to load config file from '/usr/share/pipelight/pipelight'.
[PIPELIGHT:LIN] basicplugin.c:385:checkGraphicDriver(): GPU driver check - Your driver is supported, hardware acceleration enabled.
[PIPELIGHT:LIN] using wine prefix directory /home/husain/.wine-pipelight/.
[PIPELIGHT:LIN] checking Silverlight installation - this might take some time.
wine-silverlight5.1-installer is already installed in /home/husain/.wine-pipelight/.
wine-mpg2splt-installer is already installed in /home/husain/.wine-pipelight/.
wine: cannot find L"C:\\windows\\system32\\winemenubuilder.exe"
err:wineboot:ProcessRunKeys Error running cmd L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
[PIPELIGHT:WIN] windowless mode is off.
[PIPELIGHT:WIN] embedded mode   is on.
[PIPELIGHT:WIN] usermode Timer  is off.
fixme:advapi:RegisterTraceGuidsW (0x2b1f87, 0x350118, {aa087e0e-0b35-4e28-8f3a-440c3f51eef1}, 1, 0x63f628, (null), (null), 0x350118,): stub
[PIPELIGHT:WIN] init successful!
fixme:advapi:UnregisterTraceGuids 0: stub
[WARNING:flash/platform/pepper/pep_module.cpp(63)] SANDBOXED
4
user258

ログはmyに似ています。違いは、最後に詳細情報を受け取ったことです。

err:module:import_dll Loading library libgcc_s_sjlj-1.dll (which is needed by L"Z:\usr\share\pipelight\pluginloader.exe") failed (error c000007b).
err:module:import_dll Library libstdc++-6.dll (which is needed by L"Z:\usr\share\pipelight\pluginloader.exe") not found
err:module:LdrInitializeThunk Main exe initialization for L"Z:\usr\share\pipelight\pluginloader.exe" failed, status c0000135
[PIPELIGHT] Error during the initialization of the wine process - aborting

同様の問題がある場合は、wine-pipelightインストールで見つからないdllをリンクすることで解決できます。

ln -s <path-to-your-crosscompiler-gcc-libs>/*.dll ~/.wine-pipelight/drive_c/windows/system32/

私の場合(gentoo linux)、必要なライブラリは/usr/lib64/gcc/i686-w64-mingw32/4.7.3/にあります。あなたが使用できるDLLの場所を知らない場合:

locate libstdc++-6.dll.
1
lyzkov

1つの重要なステップが欠落しているため、使用した指示は少し不完全です。これまでのところ、Pipelightのインストール自体は問題ないように見えますが、おそらくユーザーエージェントスイッチャーをインストールしていないでしょう。これは、(ストリーミング)ページにWindows PCを使用していると思わせるために必要です。そうしないと、ページはアクセスを拒否するか、100%の読み込みでハングします。

次のFAQエントリは、Chrome/Firefox/Uzblでこれを行う方法を説明しています。 https://answers.launchpad.net/pipelight/+faq/2351

2

公式Webサイトから最新バージョンを削除して取得します fds-team.com

enter image description here

以前のバージョンとは少し異なるため、記載されている指示を注意深くお読みください。 website は時代遅れです。

0
Shaharil Ahmad