The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Truble installing Mozilla plugins

    Discussion in 'Linux Compatibility and Software' started by RefinedPower, Dec 13, 2006.

  1. RefinedPower

    RefinedPower Notebook Deity

    Reputations:
    190
    Messages:
    1,843
    Likes Received:
    12
    Trophy Points:
    56
    Hi fellow I have been trying to install a few plugins but nothing seems to work. When I type about;plugins in the web address bar it says that I do not have any plugins but when I go to the Mozilla plugin directory there must be at least 20 plugins including flash, which is what I am really trying to get. Any one know of a good tutorial or have any suggestions?

    everything seemed to be working when I had 1.5 it was when I switched to FF 2.0 that I started having trouble.
     
  2. BigV

    BigV Notebook Deity

    Reputations:
    137
    Messages:
    890
    Likes Received:
    0
    Trophy Points:
    30
    which directory are you in? what you might want to do is enter this in a terminal:

    Code:
    sudo cp /usr/lib/mozilla/plugins ~/.mozilla/
    (the tilde "~" is shorthand for your home directory)

    this should create a plugins directory associated with your user that all versions of mozilla/firefox should check.
     
  3. RefinedPower

    RefinedPower Notebook Deity

    Reputations:
    190
    Messages:
    1,843
    Likes Received:
    12
    Trophy Points:
    56
    Well I tried typing it in but I do not see any folder in the home icon in file browser.
     
  4. Lysander

    Lysander AFK, raid time.

    Reputations:
    1,553
    Messages:
    2,722
    Likes Received:
    1
    Trophy Points:
    55
    And the .mozilla means that the created directory will be hidden.
     
  5. RefinedPower

    RefinedPower Notebook Deity

    Reputations:
    190
    Messages:
    1,843
    Likes Received:
    12
    Trophy Points:
    56
    I don't know whats wrong, maybe I should just reinstall firefox and see if that helps
     
  6. BigV

    BigV Notebook Deity

    Reputations:
    137
    Messages:
    890
    Likes Received:
    0
    Trophy Points:
    30
    actually, I screwed up I think...

    the "." of .mozilla means that the folder is hidden from normal view. if you open a terminal to your home directory and type "ls -a", you'll see a bunch of hidden directories containing configuration files.

    I actually gave you the wrong command in the first go.

    Code:
    mkdir ~/.mozilla/plugins
    
    cp /usr/lib/mozilla/plugins/* ~/.mozilla/plugins/
    
    in the file browser, something like View > Show Hidden Files should make everything show up.
     
  7. RefinedPower

    RefinedPower Notebook Deity

    Reputations:
    190
    Messages:
    1,843
    Likes Received:
    12
    Trophy Points:
    56
    Thanks, I was able to get the plugins installed.
     
  8. BigV

    BigV Notebook Deity

    Reputations:
    137
    Messages:
    890
    Likes Received:
    0
    Trophy Points:
    30
    cool, glad it worked.

    the nice thing about having the plugins in your home directory is that a lot of mozilla/gecko based browers look there for plugins, so if you later install a different version of FF or whatever, it will automatically pick those plugins up.