 |
 |
 |
 |
| Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum. |

10th August 2012, 12:40 PM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 1,386

|
|
|
Flash Player not working
Hi all,
Fedora 17
I have adobe-release-x86_64-1.0-1.noarch.rpm installed but unable to make Flash Player to work complaining "no flash plugin installed.
I als removed totem-mozplugin and restarted Firebox. Still failed.
Pls help.
TIA
B.R.
satimis
|

10th August 2012, 12:55 PM
|
|
Registered User
|
|
Join Date: May 2011
Posts: 700

|
|
|
Re: Flash Player not working
Does Flash appear in about:plugins (in Firefox)?
Also in Tools>Add-ons, it should appear under 'Extensions'.
|

10th August 2012, 03:03 PM
|
 |
"Registered User" T-Shirt Winner
|
|
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,128

|
|
|
Re: Flash Player not working
After you installed the adobe-release-x86_64-1.0-1.noarch.rpm repo, did you then do?:
Code:
yum install flash-plugin
|

10th August 2012, 03:49 PM
|
 |
Formerly known as"professorrmd"
|
|
Join Date: Mar 2011
Posts: 2,631

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by satimis
Hi all,
Fedora 17
I have adobe-release-x86_64-1.0-1.noarch.rpm installed but unable to make Flash Player to work complaining "no flash plugin installed.
I als removed totem-mozplugin and restarted Firebox. Still failed.
|
After installing the rpm, did you do
Code:
yum install flash-plugin
The rpm sets up the adobe flash repository but does not install the flash plugin, if I recall correctly.
|

10th August 2012, 04:04 PM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 1,386

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by PabloTwo
After you installed the adobe-release-x86_64-1.0-1.noarch.rpm repo, did you then do?:
Code:
yum install flash-plugin
|
Thanks for your advice. It is working now after installing flash-plugin
$ yum list 'flash plugin'
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
rpmfusion-free-updates | 3.3 kB 00:00
rpmfusion-nonfree-updates | 3.3 kB 00:00
Error: No matching Packages to list
$ yum list flash*
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Error: No matching Packages to list
$ yum search flash*
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Warning: No matches found for: flash_plugin_20120810.txt
No Matches found
$ yum search 'flash plugin'
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
========================== N/S Matched: flash plugin ===========================
totem-mozplugin-vegas.x86_64 : Mozilla flash plugin for Totem
Name and summary matches only, use "search all" for everything.
$ yum search all 'flash plugin'
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
============================ Matched: flash plugin =============================
flash-plugin.x86_64 : Adobe Flash Player 11.2
totem-mozplugin-vegas.x86_64 : Mozilla flash plugin for Totem
Now I found it. I must apply B.R.
satimis
|

10th August 2012, 10:42 PM
|
|
Registered User
|
|
Join Date: Jun 2012
Location: Bangladesh
Posts: 13

|
|
|
Re: Flash Player not working
try installing the offline stand alone version
|

11th August 2012, 04:00 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 1,386

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by arifur
try installing the offline stand alone version
|
Whether you meant;
Adobe Flash Player Distribution
http://www.adobe.com/products/flashp...ribution3.html
Thanks
B.R.
satimis
|

11th August 2012, 04:45 AM
|
 |
Registered User
|
|
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,457

|
|
|
Re: Flash Player not working
The reason you had all that trouble is because you should not use the "glob" character "*" without escaping it with a backslash. Otherwise the shell interprets * to mean "find all the files in the current directory and insert here"
so your
ended up finding a file in your current directory starting with "flash" by coincidence (flash_plugin_20120810.txt) and that was pasted to the command and run as:
Quote:
|
yum search flash_plugin_20120810.txt
|
Try this:
or
The others failed because of the missing dash.
would have worked fine
|

11th August 2012, 07:55 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 1,386

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by marko
The reason you had all that trouble is because you should not use the "glob" character "*" without escaping it with a backslash. Otherwise the shell interprets * to mean "find all the files in the current directory and insert here"
so your
ended up finding a file in your current directory starting with "flash" by coincidence (flash_plugin_20120810.txt) and that was pasted to the command and run as:
Try this:
or
The others failed because of the missing dash.
would have worked fine
|
Thanks for your advice.
Before advised to install "flash-plugin" I have no recorrection of its name. Therefore I started searching.
$ yum search flash\*
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Warning: No matches found for: flash*
No Matches found
$ yum "flash*"
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Warning: No matches found for: flash*
no Matches found
Still failed.
B.R.
satimis
|

11th August 2012, 01:57 PM
|
|
Registered User
|
|
Join Date: May 2011
Posts: 700

|
|
|
Re: Flash Player not working
yum install flash-plugin
|

21st November 2012, 08:41 PM
|
 |
Registered User
|
|
Join Date: Oct 2012
Location: Fort Wayne, IN
Posts: 1,113

|
|
|
Re: Flash Player not working
Did you restart??
|

22nd November 2012, 12:24 AM
|
 |
Registered User
|
|
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,457

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by satimis
Thanks for your advice.
Before advised to install "flash-plugin" I have no recorrection of its name. Therefore I started searching.
$ yum search flash\*
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Warning: No matches found for: flash*
No Matches found
$ yum "flash*"
Code:
Loaded plugins: langpacks, presto, refresh-packagekit
Warning: No matches found for: flash*
no Matches found
Still failed.
B.R.
satimis
|
I suspect you just don't have the adobe repository installed that has the flash code. Query yum for what the repositories are it has active:
this should have as a repository in the list of either "adobe-linux-i386" or "adobe-linux-x86_64" depending on your Fedora architecture If it's missing, just do the steps here:
http://www.mjmwired.net/resources/mj...f17.html#flash
then do:
|

22nd November 2012, 01:57 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 1,386

|
|
|
Re: Flash Player not working
Hi marko,
Thanks for your advice.
I already fixed my problem. The steps performed were as per following thread;
http://www.unixmen.com/201206-how-to...yer-on-fedora/
satimis
|

19th December 2012, 07:36 AM
|
 |
Administrator
|
|
Join Date: Aug 2009
Posts: 6,612

|
|
|
Re: Flash Player not working
Quote:
Originally Posted by Armando22
You hsould install the beta version of flash player and automatically udpate option and get alert of new version of the flash player
because the newe versions of flash player is introducing atleast in one month so i think this is why your flash player is not
working you should reinsltall this and enable all these options...
|
1: There is no beta version of the flash plugin. 11,2,202,258 is the latest and adobe will not be updating it any more except for security updates. Now if using Chrome, it has pepper, which the latest version is 11.5.31.5
2: Setting up the adobe repo and installing the flash plugin with yum means it automatically updates when you update the system, no option to automatically update in the flash player. You can check for updates, but no option to automatically update.
3: The original poster already stated they fixed their issue.
|

19th December 2012, 07:41 AM
|
 |
Registered User
|
|
Join Date: Aug 2009
Location: In a cardboard box
Posts: 1,847

|
|
|
Re: Flash Player not working
Looks like a spammer. Several other posts with no Linux help.
__________________
I used to miss my wife but then my aim improved.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Current GMT-time: 01:25 (Sunday, 26-05-2013)
|
|
 |
 |
 |
 |
|
|