Linux - GeneralThis forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I'm running Ultimate Edition 64bit on my computer (based off of ubuntu) and I have been having problems with flash websites since I installed it. For instance, Pandora.com, with the default player (I forgot its name, but its the one with the grey box that you have to click on to start) Pandora was saying it wasn't couldn't read my information and wouldn't load past 32%. So I installed shock-wave using this code
Now that shock-wave is installed, any web page with flash on it will immediately shut down fire fox without warning. I know that it is the shock wave player because when I disable it (shock-wave) the page loads without the flash.
I've looked for a way to remove shockwave, unfortunately, all the other threads and websites suggest deleting the plugins folder under .mozilla folder, and I don't have the plugins folder. I'm assuming that the code I used earlier installed it somewhere else and I can't really tell by looking at it.
I appreciate all of your help, and I'm hoping that you can help me uninstall the shockwave player and properly install a 64bit flashplayer. I cant really switch to a 32 bit os because I'm running 8gb of ram with a 2gb graphics card so I would be wasting more than half of my resources if I used 32bit thanks for your help.
It would appear that you have installed it to the global directory rather than your home directory. No big deal, just go to /usr/lib/firefox/plugins and delete the file libflashplayer.so What happens if you follow these instructions:
Code:
tar zxvf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
sudo cp libflashplayer.so /usr/lib/mozilla/plugins/
(Where they write mozilla, try switching that to firefox).
Distribution: Windows xp pro 64 and 32, Ubuntu, Ultimate Edition, Ubuntu Server
Posts: 29
Thanked: 0
Original Poster
Ok, so this is for the first code
james@james-desktop:~$ tar zxvf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
tar: libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
and the second
james@james-desktop:~$ sudo cp libflashplayer.so /usr/lib/firefox/plugins/
cp: cannot stat `libflashplayer.so': No such file or directory
I followed the directory /usr/lib/firefox/plugins/
and there were a bunch of mplayer plugins, no libflashplayer plugins. I'm wondering if that is because I have it disabled. I'll check that now and post back.
I'm curious though if libflashplayer doesn't show up after enabling it should I simply unpack the tar file into this folder instead of the mozilla folder?
Distribution: Windows xp pro 64 and 32, Ubuntu, Ultimate Edition, Ubuntu Server
Posts: 29
Thanked: 0
Original Poster
Ok, so I enabled it and it didn't change anything.
BUT... I did some looking and I did find the libflashplayer.so under
/usr/lib64/firefox-3.0.13/plugins
My question is though, why is it the only plugin in this folder?
Does firefox read from both folders?
EDIT.
So this is the correct location, but firefox is still shutting down on any page with flash. I'll delete the libflashplayer.so and try to unpack it again and see if that fixes it.
Last edited by bowbalitic; 08-31-2009 at 06:40 PM..
Looking at the script, it automates a batch of simple commands:
Code:
wget http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_10_linux.tar.gz - grabs the tarball, equivalent to just downloading the tar ball from www.adobe.com
tar zxvf install_flash_player_10_linux.tar.gz - untars the tarball
sudo cp install_flash_player_10_linux/libflashplayer.so /usr/lib/mozilla/plugins/ - copies the file over to the plugins directory
sudo nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so - I believe this links the flash player to the the plugin wrapper to enable 64 bit compatibility
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/mozilla/plugins/ } Links the
sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-addons/plugins/ } libraries
One thing I do notice is that after untarring the file, the command to cd into the new directory that is created from the tarball to copy over the file to the plugin directory. So after untarring the file, cd into the new directory to copy the file over.
Distribution: Windows xp pro 64 and 32, Ubuntu, Ultimate Edition, Ubuntu Server
Posts: 29
Thanked: 0
Original Poster
:p
I'm not really failure *familiar* with code unfortunately
but before your post I noticed that there was a firefox folder in the same directory
/usr/lib64/firefox
instead of /usr/lib64/firefox-3.0.13
so I think that the code I used to install libflashplayer.so created the firefox-3.0.13
When I try to use archive manager to add libflashplayer.so into the firefox plugins folder (which has a bunch of other plugins) I get a "you do not have permission..." so should I still try your code? Or does this change things?
Last edited by bowbalitic; 08-31-2009 at 07:18 PM..
Reason: *can't always trust spell check lol*
Distribution: Windows xp pro 64 and 32, Ubuntu, Ultimate Edition, Ubuntu Server
Posts: 29
Thanked: 0
Original Poster
Hmmm... that looks interesting and I might try that out later. I appreciate the reference but as of now all this annoying stuff is also a learning experience so for now I'd like to the annoying and complicated method Thanks though, I will probably end up passing that around later on though.
With that said, if the rest of you will bare with me a little longer that would be great.
Distribution: Windows xp pro 64 and 32, Ubuntu, Ultimate Edition, Ubuntu Server
Posts: 29
Thanked: 0
Original Poster
So I can't manually delete the current libflashplayer.so from the firefox-3.0.13, (by manually I mean going to the folder in gui and clicking delete.) It says there was an error deleting and that's all the information it gives. I guess I can assume that it is protected and that there is some other way to remove it right?
Also, I am still unable to use the archive manager to unpack the .so file into the firefox folder.
Should I use the code given by XavierP? Nothing against you XavierP It's just that I brought up some stuff since you posted the code and I would like the O.K. that its still good to go.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.