LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux 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


Reply
  Search this Thread
Old 11-01-2010, 03:42 PM   #31
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320

So, you must find this file and delete it:
Quote:
libswfdecmozilla.so
Use paths mentioned eariler:
Code:
rm /usr/share/mozilla/plugins/libswfdecmozilla.so
rm /usr/lib/mozilla/plugins/libswfdecmozilla.so
rm /usr/lib/mozilla-firefox/plugins/libswfdecmozilla.so
rm /home/your_username/.mozilla/plugins/libswfdecmozilla.so
rm /home/your_username/.mozilla/firefox/*/plugins/libswfdecmozilla.so
 
Old 11-02-2010, 04:40 AM   #32
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
[root@localhost nissanka]# find / -name libswfdecmozilla.so
find: `/home/nissanka/.gvfs': Permission denied
/usr/lib64/mozilla/plugins/libswfdecmozilla.so
[root@localhost nissanka]#


[root@localhost /]# rm /usr/lib64/mozilla/plugins/libswfdecmozilla.so
rm: remove regular file `/usr/lib64/mozilla/plugins/libswfdecmozilla.so'? y
[root@localhost /]#


[root@localhost ~]# rm /usr/share/mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/usr/share/mozilla/plugins/libswfdecmozilla.so': No such file or directory
[root@localhost ~]#

[root@localhost ~]# rm /usr/lib/mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/usr/lib/mozilla/plugins/libswfdecmozilla.so': No such file or directory
[root@localhost ~]#

[root@localhost ~]# rm /usr/lib/mozilla-firefox/plugins/libswfdecmozilla.so
rm: cannot remove `/usr/lib/mozilla-firefox/plugins/libswfdecmozilla.so': No such file or directory
[root@localhost ~]#

[root@localhost ~]# rm /home/nissanka/.mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/home/nissanka/.mozilla/plugins/libswfdecmozilla.so': No such file or directory
[root@localhost ~]#

[root@localhost ~]# rm /home/nissanka/.mozilla/firefox/*/plugins/libswfdecmozilla.so
rm: cannot remove `/home/nissanka/.mozilla/firefox/*/plugins/libswfdecmozilla.so': No such file or directory
[root@localhost ~]#


[ I rebooted the computer. Nothing works. I just looked at 'Tools' and 'Add-ons'.
There is no Flash Player. This means we have removed the Flash Player. Please tell me what to do next.]

Last edited by Gins; 11-02-2010 at 04:48 AM.
 
Old 11-03-2010, 05:06 AM   #33
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Extract file "libflashplayer.so" to directory "/usr/lib64/mozilla/plugins" or if it still will not work into "/usr/lib64/firefox-addons/plugins".
 
Old 11-04-2010, 12:08 PM   #34
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
It was a very long file name. So I couldn't write the whole command on the shell.

So I thought the best would be copy into the 'usr' folder.

Afterwards I can copy into the 'lib64' folder.

[root@localhost Downloads]# cp 'flashplayer_square_p2_64bit_linux_092710.tar.gz' /home/nissanka/usr
[root@localhost Downloads]#

As you noticed in the above I successfully copied it into the 'usr' folder.

.............................................................................................

However, it is not there.

[nissanka@localhost ~]$ cd /usr
[nissanka@localhost usr]$ ls
bin/ etc/ games/ include/ lib/ lib64/ libexec/ local/ sbin/ share/ src/ tmp@ X11R6/
[nissanka@localhost usr]$

The ls command should show the file if it is in the 'usr' folder.

.....................................................................................

Then I tried with the find command to locate the file.

[nissanka@localhost usr]$ su root
Password:
[root@localhost usr]# ls
bin/ etc/ games/ include/ lib/ lib64/ libexec/ local/ sbin/ share/ src/ tmp@ X11R6/
[root@localhost usr]# find / -name flashplayer_square_p2_64bit_linux_092710.tar.gz
/home/nissanka/Downloads/flashplayer_square_p2_64bit_linux_092710.tar.gz
find: `/home/nissanka/.gvfs': Permission denied
[root@localhost usr]#

It is still in the 'Downloads' folder. I don't know the problem.
How do I copy the file into the 'usr/lib64' folder?

Last edited by Gins; 11-04-2010 at 12:11 PM.
 
Old 11-05-2010, 05:22 AM   #35
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Sorry that I do not explained it more closely. I was thinking that you known how to extract archive. Within console go to directory where you downloaded that file and enter this two commands:
Code:
tar xvfz flashplayer_square_p2_64bit_linux_092710.tar.gz

sudo mv libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so
 
Old 11-05-2010, 05:41 AM   #36
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
P.S.
By the way, I explain your last post issue.
1) In the first command you copied the file into directory "/home/nissanka/usr" but in second you listed directory "/usr" which is different, so you cannot found it.

2) You have something bad with permissions in your home folder
Quote:
find: `/home/nissanka/.gvfs': Permission denied
This may cause some conficts in the future. Propably you have created this directory as root user, and "nissanka" user have no rights to it. I suggest repair this by following commands:
Code:
sudo chown -R nissanka:nissanka /home/nissanka
sudo chmod -R 0750 /home/nissanka
 
Old 11-05-2010, 10:36 AM   #37
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
Thanks for all the support ,eSelix.

Now I found out the a way to get round and install the program.

Usually when I download a program it lands in 'Downloads' folder.

I can change the folder to download. I can directly download into the 'lib64' folder.

In your Firefox settings, you can change the place of downloading programs.

…............................................................................
There is even a 'mozilla' folder inside lib64' folder'

[nissanka@localhost lib64]$ cd mozilla
[nissanka@localhost mozilla]$ ls
plugins/
[nissanka@localhost mozilla]$ cd plugins
[nissanka@localhost plugins]$ ls
libnpsoplugin.so@
libtotem-gmp-plugin.so*
libtotem-narrowspace-plugin.so*
libtotem-cone-plugin.so*
libtotem-mully-plugin.so*
[nissanka@localhost plugins]$
….................................................................................

There are two folders of firefox inside 'lib64' .
One is 'Firefox 3.6.11' and the other one is 'Firefox 3.6.8'.
These two folders might create a conflict. I don't know!



I can download the file directly into the 'Mozilla' folder or or 'Plugins' folder'.

I would refrain from downloading and extracting the file until I hear from you again.

You have written the command 'sudo'. It is unique to Ubuntu. I am running Mandriva.

Last edited by Gins; 11-05-2010 at 10:39 AM.
 
Old 11-05-2010, 06:13 PM   #38
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
You can download it anywhere, in lib64 directory possibly you have no rights to write as normal user. If you downloaded it for example into /home/nissanka enter these commands in the console:
Code:
cd /home/nissanka
tar xvfz flashplayer_square_p2_64bit_linux_092710.tar.gz
su root
mv libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so
Directories 'Firefox 3.6.11' and 'Firefox 3.6.8' should not create conficts. There are shared place for plugins in above directory.
 
Old 11-06-2010, 04:30 AM   #39
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
Eureka!
Now everything works fine. I take my hat off to you, eSelix. All the YouTube sites and the other sites which heavily depends on Flash Player works now.


I looked at 'Plugins'
It has shockwave Flash 10.2d161


[nissanka@localhost ~]$ su root
Password:
[root@localhost nissanka]# tar xvfz flashplayer_square_p2_64bit_linux_092710.tar.gz
libflashplayer.so
[root@localhost nissanka]# mv libflashplayer.so /usr/lib/mozilla/plugins/libflashplayer.so
mv: overwrite `/usr/lib/mozilla/plugins/libflashplayer.so'? y
[root@localhost nissanka]#

..............
[nissanka@localhost ~]$ pwd
/home/nissanka
[nissanka@localhost ~]$

Last edited by Gins; 11-06-2010 at 04:57 AM.
 
Old 11-06-2010, 12:51 PM   #40
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
I am glad. You must remember that this flash plugin is in beta version and it will not be automatically updated. So, to keep your system secure, you must from time to time look in adobe page download new version of plugin, if it appears, and repeat that process.
 
Old 11-06-2010, 02:41 PM   #41
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
Thanks eSelix
I have another computer which has open SuSE.

It works fine. The open SuSE is an old version.

The reason for me not to upgrade the open SuSE version is that it works.

So why should I upgrade.

Everything works fine on that computer except the Flash Player.

All the YouTube music are dead.

I just followed your post 38 and tried to restore the Flash Player on that computer.
No, it doesn't work. I mean the Flash Player is still dead.

I looked at the plugins. It was some 9.0 version.
I didn't install anything on that computer for about 2 and a half years.
From time to time I use that computer too.

Do you have any suggestions to rejuvenate the Flash Player on that computer?

Last edited by Gins; 11-06-2010 at 04:45 PM.
 
Old 11-06-2010, 06:23 PM   #42
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Is this also 64 bit system? You can check this with:
Code:
uname -a
Quote:
I looked at the plugins. It was some 9.0 version.
Well, you must remove that 9.0 version. Check posts 16, 25, 31 for this.
 
Old 11-06-2010, 06:39 PM   #43
aus9
LQ 5k Club
 
Registered: Oct 2003
Location: Western Australia
Distribution: Icewm
Posts: 5,842

Rep: Reputation: Disabled
hi

I use 32 bit distros.

I download the tarball and extract the file...libflashplayer.so

this is then placed or sym linked to whatever your browser searches for its plugins.

mozilla tends to expect folder called /plugins but mozilla can be installed to a home user so its not necessarily under /usr/lib/mozilla/plugins but could be
/home/yourname/something/plugins

2) I suggest you re-visit your theory on why you should not upgrade please.

software is not hardware.....so the idea of not playing with something that still works can not apply here...ok?

your software may contain known vulnerbilities being so old.

In order to see if its wiser to upgrade why not look at all the security advice out there?

In order to check how "bad" your current setup is....why not consider doing some scans using various scanning tools?

I suggest rootkit hunter might be nice to have even if no kits are found?

http://sourceforge.net/apps/trac/rkh...MPRKH#Contents

3) web browsers are key attacked software and plugins also so also keep these up-to-date if you agree?

http://www.us-cert.gov/cas/techalerts/index.html

Last edited by aus9; 11-06-2010 at 07:00 PM.
 
Old 11-07-2010, 10:09 AM   #44
Gins
Senior Member
 
Registered: Jul 2004
Location: Germany
Distribution: open SUSE 11.0, Fedora 7 and Mandriva 2007
Posts: 1,662

Original Poster
Rep: Reputation: 47
I thank eSelix and aus9 for the replies.
Our friend aus9 wants me to upgrad. I will do so when time permits.

nissanka@linux-j5q7:~> uname -a
Linux linux-j5q7 2.6.25.11-0.1-default #1 SMP 2008-07-13 20:48:28 +0200 x86_64 x86_64 x86_64 GNU/Linux
nissanka@linux-j5q7:~>

[ So the above means I have 64 bit computer.]

.................
nissanka@linux-j5q7:~> su root
Password:
linux-j5q7:/home/nissanka # rm /usr/share/mozilla/plugins/*flash*.so
rm: cannot remove `/usr/share/mozilla/plugins/*flash*.so': No such file or directory
linux-j5q7:/home/nissanka #

...........
linux-j5q7:/home/nissanka # rm /usr/lib/mozilla/plugins/*flash*.so
rm: cannot remove `/usr/lib/mozilla/plugins/*flash*.so': No such file or directory
linux-j5q7:/home/nissanka #
........................................................

linux-j5q7:/home/nissanka # rm /usr/lib/mozilla-firefox/plugins/*flash*.so
rm: cannot remove `/usr/lib/mozilla-firefox/plugins/*flash*.so': No such file or directory
linux-j5q7:/home/nissanka #
.............................................................

linux-j5q7:/home/nissanka # rm /home/nissanka/.mozilla/plugins/*flash*.so
rm: cannot remove `/home/nissanka/.mozilla/plugins/*flash*.so': No such file or directory
linux-j5q7:/home/nissanka #
......................................................
linux-j5q7:/home/nissanka # rm /home/nissanka/.mozilla/firefox/*/plugins/*flash*.so
rm: cannot remove `/home/nissanka/.mozilla/firefox/*/plugins/*flash*.so': No such file or directory
linux-j5q7:/home/nissanka #

..........................................................

linux-j5q7:/home/nissanka # nspluginwrapper -r /usr/lib64/mozilla/plugins/npwrapper.libflashplayer.so
nspluginwrapper: /usr/lib64/mozilla/plugins/npwrapper.libflashplayer.so is not a valid nspluginwrapper plugin
linux-j5q7:/home/nissanka #
.............................................................


linux-j5q7:/home/nissanka # rm /usr/lib64/mozilla/plugins/npwrapper.libflashplayer.so
rm: cannot remove `/usr/lib64/mozilla/plugins/npwrapper.libflashplayer.so': No such file or directory
linux-j5q7:/home/nissanka #
............................................................
linux-j5q7:/home/nissanka # rm /usr/lib/flash-plugin/libflashplayer.so
rm: cannot remove `/usr/lib/flash-plugin/libflashplayer.so': No such file or directory
linux-j5q7:/home/nissanka #
.............................................................
linux-j5q7:/home/nissanka # find / -name libswfdecmozilla.so
linux-j5q7:/home/nissanka #
[ What is the meaning of the above output? Did it find 'libswfdecmozilla.so'?]

.........................................................
linux-j5q7:/home/nissanka # rm /usr/share/mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/usr/share/mozilla/plugins/libswfdecmozilla.so': No such file or directory
linux-j5q7:/home/nissanka #
...............................................................
linux-j5q7:/home/nissanka # rm /usr/lib/mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/usr/lib/mozilla/plugins/libswfdecmozilla.so': No such file or directory
linux-j5q7:/home/nissanka #
......................................................................

linux-j5q7:/home/nissanka # rm: cannot remove `/usr/lib/mozilla-firefox/plugins/libswfdecmozilla.so': No such file or directory
> linux-j5q7:/home/nissanka #
............................................................

linux-j5q7:/home/nissanka # rm /home/nissanka/.mozilla/plugins/libswfdecmozilla.so
rm: cannot remove `/home/nissanka/.mozilla/plugins/libswfdecmozilla.so': No such file or directory
linux-j5q7:/home/nissanka #
.........................................................

linux-j5q7:/home/nissanka # rm /home/nissanka/.mozilla/firefox/*/plugins/libswfdecmozilla.so
rm: cannot remove `/home/nissanka/.mozilla/firefox/*/plugins/libswfdecmozilla.so': No such file or directory
linux-j5q7:/home/nissanka #
...........................................

Why didn't it find those stuff?

How shall I proceed?

Last edited by Gins; 11-07-2010 at 10:13 AM.
 
Old 11-07-2010, 12:21 PM   #45
eSelix
Senior Member
 
Registered: Oct 2009
Location: Wroclaw, Poland
Distribution: Arch, Kubuntu
Posts: 1,281

Rep: Reputation: 320Reputation: 320Reputation: 320Reputation: 320
Quote:
linux-j5q7:/home/nissanka # find / -name libswfdecmozilla.so
linux-j5q7:/home/nissanka #
[ What is the meaning of the above output? Did it find 'libswfdecmozilla.so'?]
It was not found.

Enter "about:plugins" in addressbar in Firefox and paste here output.

Last edited by eSelix; 11-07-2010 at 12:24 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem while installing Adobe flash player. kiran.doddi Linux - Software 2 08-20-2010 01:56 AM
Adobe Flash Player installation. stf92 Linux - Software 4 06-11-2010 04:08 PM
DSL 4.4.10 and Adobe Flash Player Installation Problems achillspirit Linux - Software 4 02-27-2010 06:18 PM
installation of adobe flash player peed22 Linux - Newbie 13 01-27-2010 11:37 PM
Adobe Flash Player Installation Allmife Linux - Newbie 1 10-17-2009 11:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 11:18 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration