Ubuntu
在 Chrome 中安裝調試 Flash 播放器?
我正在嘗試調整此處、此處和此處的說明,以便在我的 Ubuntu 13.04 安裝中安裝 Flash 播放器的調試版本,以便 Chrome 30.0.1599.66 可以使用它。
有趣的是,我似乎已經安裝了官方的 Adobe flash 外掛並可供 Chrome 使用,因此問題從“安裝 flash”變為“用調試器版本替換正常 flash”。
所以我需要用從 Adobe
libflashplayer.so
下載的替換。聽起來很簡單。我選擇了這個文件(Linux Flash Player 11.2 外掛內容調試器),解壓它並按照指示安裝了 Flash Player 本地設置配置文件。
然後我
/usr/lib/flashplugin/installer/libflashplayer.so
用調試器安裝中包含的版本替換,並重新啟動 Chrome。令我驚訝的是,第二個 Adobe Flash Player 列表chrome://plugins
就消失了!就好像 Chrome 出於某種原因不喜歡調試器外掛一樣。我嘗試了各種方法來讓調試器外掛出現但無濟於事:
chmod +rx libflashplayer.so
nspluginwrapper -i libflashplayer.so
(導致錯誤no appropriate viewer found for libflashplayer.so
)mkdir /opt/google/chrome/plugins; mv libflashplayer.so /opt/google/chrome/plugins
如何讓 Chrome 辨識 Flash 調試器外掛?
我終於在嘗試讓它為 Firefox 工作時弄明白了!這是基於我在這裡找到的方向。
sudo apt-get install ia32-libs nspluginwrapper sudo mkdir /usr/lib/flash-plugin/ wget http://fpdownload.macromedia.com/pub/flashplayer/updaters/11/flashplayer_11_plugin_debug.i386.tar.gz tar xzvf flashplayer_11_plugin_debug.i386.tar.gz sudo cp libflashplayer.so /usr/lib/flash-plugin/ sudo chmod 775 /usr/lib/flash-plugin/libflashplayer.so cd /usr/lib/mozilla/plugins rm -rf npwrapper.libflashplayer.so # Not sure if this part is necessary or not sudo ln -s /usr/lib/flash-plugin/libflashplayer.so . sudo chmod 777 libflashplayer.so sudo nspluginwrapper -i /usr/lib/flash-plugin/libflashplayer.so # ^ Use the full path here as a relative path won't work!
現在重新啟動 Chrome 和 Firefox。兩者都應該使用 Flash 外掛的調試版本!