12

I installed Google Chrome. This is the first thing I did after installing Ubuntu. I went into firefox, and went to chrome.google.com, and hit the button. I don't like package managers, and avoid the command line like the pox.

Then, I started using Google Chrome. I went to Kongregate, and clicked on a game. It told me I didn't have flash. A few different websites told me the same. I assumed that they must have been wrong. I hit the link to Adobe, to install Flash, and it reassured me; of course, Google Chrome includes Flash. I checked my version - Chrome 5.0.375.126. Of course, I just downloaded it.

I scoured the internet for solutions. None worked. Many seemed to involve re-enabling Flash, or something like that. But insofar as I can tell, there is no Flash anywhere in my Chrome. I feel like I bought a Reese's cup, and found solid chocolate. I checked in the Chrome plugin manager, and everything. A few solutions told me to copy some garbage into my command line and hit enter (as almost all solutions to problems on linux entail). I did it, reluctantly, and it did nothing.

I thought Flash was supposed to come with Chrome. But it didn't. Sooooo... What gives?

Google Chrome version: Google Chrome 5.0.375.126 (Official Build 53802) WebKit 533.4 V8 2.1.10.15 User Agent Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.126 Safari/533.4 Command Line /opt/google/chrome/google-chrome

Operating System: Ubuntu 10.4 64 bit.

Jorge Castro
  • 71,754
Daniel
  • 1,899

7 Answers7

21

Chrome now includes Flash built in by default, there is no need to do anything else.

Jorge Castro
  • 71,754
  • 1
    Some how flashplugin-installer was already installed on my system and flash still would not work. I unistalled then reinstalled it and now flash works fine in chrome. – deft_code Aug 18 '10 at 18:06
  • 3
    Consider installing ubuntu-restricted-extras, which will bring in a lot of restricted packages like Flash. Unless you have an ideological reason not to (which is fine), it will save you a lot of time. – Matthew Oct 18 '10 at 21:27
  • Anyone who installs Google Chrome and Flash is unlikely to have an ideological objection to Ubuntu restricted extras, @Matthew. – TRiG Jan 08 '15 at 14:43
3
  1. Download

    What I usually do is download the Flash player from Adobe's site (since I use a 64-bit system, I download the 64-bit plugin).

  2. Extract package

    Then, in a terminal, run gksudo nautilus.
    Extract the package by right-clicking on the downloaded package and selecting "Extract Here". Enter the folder and you will find a file named libflashplayer.so.

  3. Copy the file libflashplayer.so into either:

    • /usr/lib/firefox-addons/plugins (for Firefox)
    • /usr/lib/chromium-browser/plugins (for Chromium)

That is it!

Bogdan
  • 39
2

I've just found a solution for those who has flash working on firefox but not on chromium. It's based on the fact that every browser has it's own plugins directory:

  • /usr/lib/firefox-addons/plugins (for Firefox)
  • /usr/lib/chromium-browser/plugins (for Chromium)

So, the only thing you've to do is to unificate them, aka, making one the link to the other. Probably, all plugins are on Firefox plugins directory, but it isn't worth to ensure that:

ls -l /usr/lib/{mozilla,chromium-browser}/plugins

If Firefox is the one where all plugins are, do the next. If not, do the opposite:

sudo rmdir /usr/lib/chromium-browser/plugins
sudo ln -s /usr/lib/mozilla/plugins /usr/lib/chromium-browser/

Finally, restart Chromium so changes take effect.

Probably, it wouldn't be a bad idea to create a bug report on chromium/firefox package mantainers to alert about the bug and the simple solution.

See you!!

emi
  • 31
2

sudo apt-get install ubuntu-restricted-extras - solve this problem

Marco Ceppi
  • 48,101
2

I noticed that chrome does get some plugins out of the firefox plugin directories. If a working Flash plugin is installed in firefox it is likely to work in Chrome. The flashplugin-installer package basically installs Flash for firefox.

W. Goeman
  • 1,580
1

The location of the plugin for Google Chrome is: /opt/google/chrome/libgcflashplayer.so

8128
  • 28,740
nejode
  • 501
0

If you are using Chrome 19.

  1. Go to about:plugins
  2. Click Details button in top right.
  3. Flash plugin consists of two libs. Disable /opt/google/chrome/PepperFlash/libpepflashplayer.so

Flash is back.

Nowaker
  • 105
  • 4