LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-29-2011, 11:09 AM   #1
bruceam
Member
 
Registered: Nov 2008
Location: Atlanta, Georiga
Distribution: Debian, Ubuntu
Posts: 88

Rep: Reputation: 17
Updated Adobe Flash Plugin Not Working with any Applications, Debian Squeeze


I recently attempted to update the Flash plugin on my Debian Squeeze (6.0.1 - 6.0.2) installation. I went to the adobe site and followed the instructions that I found there. When the installation process/steps were finished, I went to the test page suggested by the website. The indication that I found there was that the plugin was correctly installed. When I went to my browser (I use opera as my primary Browser), none of the sites that used flash would work properly. I tried the same sites on Iceweasel and Epiphany, which yielded the same results.

I tried the installation procedure again, with no positive results. As of now, I cannot view videos site that worked perfectly well before all of this started, such as youtube. The adobe website test page still indicates the plugin was properly installed.

Can anyone tell me how to a) fix this problem, b) tell me what the problem really is so that I can avoid it in the future and possibly diagnose and repair the situation myself.
 
Old 06-29-2011, 02:37 PM   #2
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,883
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
make sure you have contrib non-free in your sources.list
then do aptitude update; aptitude install flashplugin-nonfree

FlashPlayer - Debian Wiki - http://wiki.debian.org/FlashPlayer

Last edited by craigevil; 06-29-2011 at 02:38 PM.
 
1 members found this post helpful.
Old 07-04-2011, 10:48 AM   #3
bruceam
Member
 
Registered: Nov 2008
Location: Atlanta, Georiga
Distribution: Debian, Ubuntu
Posts: 88

Original Poster
Rep: Reputation: 17
craigevil
I have been using the contrib non-free repositories from the very beginning. I have also installed the flashplugin-nonfree with these repositories available. The result is the same as before. The Adobe site's plugin check page tells me that I have properly installed the plugin, but the flash dependent video sites simply do not work.

I am to the point of considering the "Uninstallation" of all of my browsers and plugins, in hopes that starting over will make right whatever is currently wrong. I would prefer not to do this, as it would mean considerable modification to my installation.

Can anyone tell me how to check the plugin's registration as the appropriate application for handling a given multimedia event?


Thank you
 
Old 07-13-2011, 12:00 PM   #4
bruceam
Member
 
Registered: Nov 2008
Location: Atlanta, Georiga
Distribution: Debian, Ubuntu
Posts: 88

Original Poster
Rep: Reputation: 17
Updated Information

I have been reading on the Adobe site and found a small, but rather well hidden statement informing me that I should remove all previous versions of Flash Player before attempting to install any new ones. I suspect that this may be the fundamental problem. The issues now resolve to the following:

A) How do I find and remove all versions of flash from my Squeeze 6.0.2 installation, and
B) Once I have reinstalled the latest version of Flash, how do I install it in my browsers?
 
Old 07-13-2011, 12:13 PM   #5
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,883
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
apt-get purge flashplugin-nonfree

Personally I use flashplayer-mozilla from the debian-multimedia.org repo.

Never had any issues using it with Iceweasel, Firefox, Midori, Uzbl, Opera-next, Opera, Konqueror.
 
1 members found this post helpful.
Old 07-13-2011, 01:51 PM   #6
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Hi I work for Opera and recently we have noticed that some users are experiencing extra problems with recent versions of Opera+Flash and certain hardware and driver combinations.

I have no idea if this is the issue that you are experiencing but it might be. I'd be interested to know what is your Graphics card? If you are unsure then the following will probably tell you:

Code:
$ lspci | grep -i vga
Additionally which X driver are you running (including the version number)? If you are unsure you can get hints but looking at /var/log/Xorg.0.log. You are looking for driver loading references. Also watch out for unloading, as sometimes a driver is loaded, then another and the first is unloaded. A command like this might help you narrow it down:

Code:
$ grep -i -e "loading.*drivers" -e unload /var/log/Xorg.0.log
Once you have the path and file name of the driver, you can then use apt-file (assuming it is installed and updated) to find out which package it is a part of and this should also give you the version number:

Code:
$ apt-file search path_to_driver

Last edited by ruario; 07-13-2011 at 01:52 PM.
 
1 members found this post helpful.
Old 07-14-2011, 11:47 AM   #7
bruceam
Member
 
Registered: Nov 2008
Location: Atlanta, Georiga
Distribution: Debian, Ubuntu
Posts: 88

Original Poster
Rep: Reputation: 17
ruario
I am an opera user, and any assistance you can provide will be most appreciated. I am using an Nvidia GeForce 7600 GS (rev a1) to drive my dual monitor setup.

I am running the NVIDIA-Linux-x86-270.41.06 drivers and have the following modules loaded:

(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) UnloadModule: "nvidia"
(II) UnloadModule: "wfb"
(II) UnloadModule: "fb"

I am not getting a result from your suggested code of

$ apt-file search path_to_driver

I have substituted "/usr/lib/xorg/modules/drivers/nvidia_drv.so" for "path_to_driver" which has yielded the following command:

$ apt-file search /usr/lib/xorg/modules/drivers/nvidia_drv.so

But I am getting no response to the command. I don't know if this is indicative of the actual problem, or that I really am new to attempting to run this operating system at this level.

What other information do you need and how might I go about locating it?
 
Old 07-15-2011, 01:42 AM   #8
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Don't worry about the apt-file command. I only wanted you to run it so that I would see the name of the package and hence version number of the driver but you provided that already.

The Nvidia 270.* drivers do have some issues. I know this having spoken to the team who are working on hardware acceleration here at Opera. If you are able to upgrade to a 275 based driver I'd be interested to hear if you have the same result.

Last edited by ruario; 07-15-2011 at 01:44 AM. Reason: spelling
 
1 members found this post helpful.
Old 07-15-2011, 04:45 AM   #9
jv2112
Member
 
Registered: Jan 2009
Location: New England
Distribution: Arch Linux
Posts: 719

Rep: Reputation: 106Reputation: 106



I had a similar issue and found that I had the gnash plug installed as well. When I removed my issues disappeared.
 
Old 07-22-2011, 10:24 AM   #10
bruceam
Member
 
Registered: Nov 2008
Location: Atlanta, Georiga
Distribution: Debian, Ubuntu
Posts: 88

Original Poster
Rep: Reputation: 17
Thumbs up Problem Solved, Thank you for your assistance.

I am not exactly sure what I did to solve the issues, but I will give as much information as I can. After reading about potential problems with the Flashplayer when being used with the Nvidia 270 video drivers, I upgraded my setup to use the Nvidia 275 video drivers. This didn't seem to have any positive effect. I then executed the "apt-get purge flashplugin-nonfree" command in order to remove the nonfree plugin just in case there was more than one plugin installed. This didn't seem to have any positive effect either. I shut down and tried looking for help from a college. The next day when I restarted the computer, the Flashplayer worked?!!! It worked in all all three browsers installed on this machine.

The only thing I can think of is that there should be a) only one plugin installed at any given time, b) the machine should be rebooted after each change to the Flashplayer or video drivers.

I would like to thank craigevil and ruario for their help and insites into this situation.

Thank you all for assistance
 
  


Reply

Tags
flashplayer, opera, plugins, squeeze


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Tutorial: x64 Debian + x86_64 Firefox 5.0 + Google Talk Plugin + Adobe Flash SYANiDE Linux - Software 0 06-28-2011 01:33 AM
Adobe Flash player in 64-bit debian/squeeze garyg007 Linux - Software 3 09-28-2010 12:12 AM
[SOLVED] How install Adobe Flash 64 on Squeeze 64 bit? AleLinuxBSD Debian 6 09-19-2010 01:11 PM
CentOS 5 and Adobe Flash Plugin not working Mo_Tex Linux - Newbie 5 05-12-2009 03:12 PM
Adobe Flash Plugin For 7.10? carlosinfl Ubuntu 2 12-14-2007 11:12 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:01 PM.

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