How do I fix Flash issues?

46,307

Solution 1

As you have identified - the best solution is usually to follow this Q&A to install flash. It does work for the vast majority of users.


Flash-Aid was discontinued by it's author and is unknown if it will be back, the following are kept only for historical reasons.


As an alternative, one of the best tools I have found that allows you to configure Flash correctly during installation is the Flash-Aid addon - use the author's site or search on the Firefox addon-manager for Flash-Aid

This will remove any remnants of of Flash installation and install flash directly from the Adobe Website. During the wizard installation you have a few configuration options that you can try to resolve flash-player issues.

enter image description here

enter image description here

enter image description here

enter image description here

enter image description here

Close & Restart Firefox / reboot for the change to take effect.

See also:

Solution 2

There are 2 options.

Enable the HTML5 player

For Youtube this can be done by loggin in, going to http://www.youtube.com/html5 and enabling it there. You can also just add &html5=True behind each video URL.

Whether your browser and the version you are using will support the HTML5 playback of a video on a site that provides such an option (like YouTube or VKontakte) will depend on the codec chosen by the site owners. For example, YouTube and VKontakte (a Facebook clone popuar in Russia) use different codecs for their HTML5 videos, which means that in Ubuntu 12.04 HTML5 video playback at VK.com works in Chromium, but not in Firefox (and in future, these browsers might swap their roles).

Install the Flash Aid Firefox plugin

I don't know for sure if this will work for you as well, but it worked for me.
Install Flash Aid, restart Firefox, and click the Flash button at the upper right corner of Firefox's window. Just follow the instructions in the wizard and you should be fine.

For some more detailed guide on installing Flash using Flash Aid, check out fossfreedom's answer: https://askubuntu.com/a/86260/18953

Solution 3

For Firefox Flash, first try this:

when having issues after an automatic update.

$ sudo apt-get --reinstall install flashplugin-installer

This leaves one with Adobe Flash plugin version 11.2.???.??? in Firefox as Adobe no longer releases any higher flash versions for Linux.

For the moment, the 11.2 series of the Adobe Flash plugin for Linux is still maintained and security updates will trickle in automatically. However, one will miss out on innovations and power efficiency improvements.

For adding the Google Chrome Pepper Flash plugin to Chromium:

$ sudo add-apt-repository --yes ppa:skunk/pepper-flash
$ sudo apt-get update
$ sudo apt-get install pepflashplugin-installer
$ echo '. /usr/lib/pepflashplugin-installer/pepflashplayer.sh' |sudo tee -a /etc/chromium-browser/default

The latest and greatest Adobe Flash version for Chrome (version 12.0 at the time of writing) is installed in Chromium.

This solution can also be scripted for easy installation on multiple machines:

#!/bin/bash
sudo add-apt-repository --yes ppa:skunk/pepper-flash
sudo apt-get update
sudo apt-get install pepflashplugin-installer
STRING='. /usr/lib/pepflashplugin-installer/pepflashplayer.sh'
FILE='/etc/chromium-browser/default'
if ! grep -qe "$STRING" $FILE
  then
    echo "$STRING" |sudo tee -a $FILE
fi

Unlike Firefox Flash, Pepper Flash is not updated automatically by the update manager; it requires a tedious manual process. Forgetting about this leaves one exposed to security threats.

Here is another bash script to render manually updating Pepper Flash just that little bit less cumbersome:

#!/bin/bash
VERSIONS=$(sudo update-pepperflashplugin-nonfree --status)

UPGRADE=$(echo "$VERSIONS" |grep -oE '[^ ]+$' |uniq |wc -l)
UPGRADE=$(($UPGRADE - 1))

if [ $UPGRADE -ne 0 ]
then
    sudo update-pepperflashplugin-nonfree --install
fi

echo "$VERSIONS"

Check your Flash version

In general, this can be done on Adobe's site.

The full story

Here is the full story nicely written up.

Solution 4

I am running Ubuntu 12.04 64-bit with an Nvidia GeForce 8400 GS.

I have been having the same issue ever since I corrected another Flash issue on my system related to Nvidia GPUs -- see Flash video appears blue on this forum. Following the workaround posted at the previous link stopped the unwanted behavior of all Flash video being tinted blue, but ended up causing the Flash plugin to crash nearly every time I attempted to watch a video online.

The solution for me was to look back at /etc/adobe/mms.cfg and remove everything but one line, which should read:

OverrideGPUValidation=true

This idea and others are discussed on ubuntuforums, and many other places. Please try changing your mms.cfg (or creating it, if it does not already exist) and post back with your results. Good luck!

Solution 5

Try installing Flash by entering the following command in the Terminal (make sure to shut down all running Firefox windows first)

sudo apt-get install adobe-flashplugin
Share:
46,307

Related videos on Youtube

RobinJ
Author by

RobinJ

Updated on September 18, 2022

Comments

  • RobinJ
    RobinJ over 1 year

    I am having problems with Adobe Flash in Ubuntu, what are my options?

  • RobinJ
    RobinJ over 12 years
    I wouldn't have asked it if it had been as simple as that.
  • Ronshere
    Ronshere over 10 years
    This is good advice but note that only videos on Youtube encoded as WEBM are playable in HTML5 currently!
  • masulzen
    masulzen over 10 years
    if you go to get.adobe.com/flashplayer then there's a selection from the dropdown that says "APT for Ubuntu 10.04+" At least it shows up for me.
  • Carson Crane
    Carson Crane over 10 years
    Sorry. I am on 13.04. It shows only tar.gz. and .rpm files.