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.

    Prerelease version Flash Player 10 for Linux available

    Discussion in 'Linux Compatibility and Software' started by Baserk, May 15, 2008.

  1. Baserk

    Baserk Notebook user

    Reputations:
    2,503
    Messages:
    1,794
    Likes Received:
    1
    Trophy Points:
    56
    A beta version for Adobe's Flash player 10 is available.
    It's mainly aimed at producers and consumers to test content.
    Make sure to uninstall your current Flash player version before installing v.10
    Linux downloads (tar.gz & rpm); link
    Release notes link
     
  2. Bog

    Bog Losing it...

    Reputations:
    4,018
    Messages:
    6,046
    Likes Received:
    7
    Trophy Points:
    206
    Ugh... why the RPM packages? Did they develop it for SUSE or something?

    Debian package users can download the package "alien" and CD to the directory containing the .rpm and type:

    sudo alien -d packagename.rpm

    Alien will recompile it into a Debian package.
     
  3. Baserk

    Baserk Notebook user

    Reputations:
    2,503
    Messages:
    1,794
    Likes Received:
    1
    Trophy Points:
    56
    I'm not really sure but they have always mentioned SUSE and RHEL specifically, as the linux OS's it's supported on. Because of the business aspect maybe?

    Afaik, it's the first time they mention, Ubuntu support has been added.
     
  4. prol91

    prol91 Notebook Consultant

    Reputations:
    54
    Messages:
    145
    Likes Received:
    0
    Trophy Points:
    30
    Anyone tried it?
     
  5. Ayle

    Ayle Trailblazer

    Reputations:
    877
    Messages:
    3,707
    Likes Received:
    7
    Trophy Points:
    106
    Did they fix the libflashsupport bug that crashed firefox 9/10 times?
     
  6. Baserk

    Baserk Notebook user

    Reputations:
    2,503
    Messages:
    1,794
    Likes Received:
    1
    Trophy Points:
    56
    Have you already seen these posts, link link ?

    Nothing final yet, hopefully we'll all have a final solution in 8.04.1 with Flash 10 Final...
     
  7. Ayle

    Ayle Trailblazer

    Reputations:
    877
    Messages:
    3,707
    Likes Received:
    7
    Trophy Points:
    106
    Yes I did, nspluginwrapper works well enough. the grey box are annoying nonetheless.
     
  8. theZoid

    theZoid Notebook Savant

    Reputations:
    1,338
    Messages:
    5,202
    Likes Received:
    22
    Trophy Points:
    206
    I just do an
    Code:
    alien -i packagename.rpm
    to go ahead and install it....it then shows up in synaptic to remove if needed (for those that haven't used alien)
     
  9. szandor

    szandor Notebook Evangelist

    Reputations:
    66
    Messages:
    323
    Likes Received:
    0
    Trophy Points:
    30
    libflashsupport was intended to fix sound issues between flash9/pulseaudio. you do not need this with flash 10 or if you're not using pulseaudio. it has no other purpose.
     
  10. benx009

    benx009 Notebook Evangelist

    Reputations:
    184
    Messages:
    663
    Likes Received:
    0
    Trophy Points:
    30
    I think Intrepid Ibex Alpha uses Flash 10 as the default flash player....
     
  11. szandor

    szandor Notebook Evangelist

    Reputations:
    66
    Messages:
    323
    Likes Received:
    0
    Trophy Points:
    30
    designated build 569 was pushed out on 8-11-08. much improvement over the last two betas. if you have problems with firefox seeing the new libflashplayer.so as 10.0.0.d569 in about :plugins, you'll need to create symlinks. after installing, and flash doesn't work, do:

    $ ldd /path/to/libflashplayer.so

    if you see:

    libssl3.so => not found
    libnss3.so => not found
    libnspr4.so => not found

    you'll need to:

    $ sudo ln -s /usr/lib/libssl3.so.1d /usr/lib/libssl3.so
    $ sudo ln -s /usr/lib/libnss3.so.1d /usr/lib/libnss3.so
    $ sudo ln -s /usr/lib/libnspr4.so.0d /usr/lib/libnspr4.so