Reputation: 111
I used to use Flash Player Debugger on Ubuntu 13.04, but since the update to 14.04 I cannot make it working anymore.
Is there anybody out there using Flash Debugger on Ubuntu 14.04? Does anybody know if they are compatible, since Flash Debugger hasn't receive any update for a long time now?
I've tried to setup it as usual using nspluginwrapper, but it simply doesn't show anything on Flash content.
Upvotes: 3
Views: 3155
Reputation: 2280
I got it working by issuing the following:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install xvfb libcurl3:i386 libglib2.0-0:i386 libx11-6:i386 libxext6:i386 libxt6:i386 libxcursor1:i386 libnss3:i386 libgtk2.0-0:i386
I wrote a little more about it here on my blog
Upvotes: 5
Reputation: 39
I got the flash debugger to work with Firefox on 64bit Ubuntu 14.04 by doing the following:
sudo apt-get install libc6:i386
sudo -i cd /etc/apt/sources.list.d echo "deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /etc/apt/sources.list.d/ia32-libs-raring.list
apt-get update
Install nspluginwrapper 'sudo apt-get install nspluginwrapper'. Download the Flash Debug player (version 11.2, 32bit). Extract and copy the libflashplayer.so to /usr/lib/flashplugin-installer/ (I also copied it to ~/.mozilla/plugins/). Then run 'sudo nspluginwrapper -i /usr/lib/flashplugin-installer/libflashplayer.so'
I copied my mm.cfg debug config file to ~/ home directory.
I originally installed several of the ia32-libraries manually, but even though the flash debug player seemed to be installed and working, any content was blank. I'm not sure which libraries were missing, but by using the raring source.list from above and installing all the remaining 32bit library support, it started working.
NOTE: I also installed the 32bit version of Firefox 'sudo apt-get install firefox:i386' but I'm not sure this was necessary to solve this issue of getting the debug player to work.... I think it would work fine with the 64bit following the above steps.... but at this point its working for me and I only use Firefox for debugging flash stuff.
Good luck!
Upvotes: -1