Find the answer to your Linux question:
Results 1 to 5 of 5
Hello! I've installed the new kubuntu system, and i have a few problems. I've made another panel (tray) on my desktop, aaand 1)the second panel after a reboot or when ...
  1. #1
    Just Joined!
    Join Date
    Feb 2008
    Posts
    72

    Kubuntu 9.10(Panel (tray) and Flash(Adobe))

    Hello!
    I've installed the new kubuntu system, and i have a few problems.
    I've made another panel (tray) on my desktop, aaand
    1)the second panel after a reboot or when i simply switch on my computer, only appear on the desktop#1. If I rotate my cube and switch to another desktop i haven't got this, only one panel (the standard tray). If i have a double click on my second panel then I can use this panel on the 2,3 and 4th desktop.
    2) how can I set it to transparent? Sometimes this is glassy, sometimes had a color.

    Flash
    I can't use the flash application in the browser. I've installed the flashplugin-nonfree in the konsole, and i can see the flash animations, but it doesn't react for my mouse. Maybe freeze is the correct word for this? But i dunno, because forexample i can see the youtube videos, just i can't stop the movie, or if the page has a flash button, it respond if it had an onmouse animation, but ignore my click

  2. #2
    Linux Engineer Kieren's Avatar
    Join Date
    Aug 2007
    Location
    England
    Posts
    845
    For Flash and other restriced formats I'd advise you install the kubuntu-restricted-extras package:

    Code:
    sudo apt-get install kubuntu-restricted-extras
    I'm not sure if this will fix your problem if you've installed flashplugin-nonfree though
    Linux User #453176

  3. #3
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Your flashplayer problem is a known bug. There are some possible workarounds.

    Fix Mouse Clicks Not Working in Flash and Ubuntu [Linux] ~ Web Upd8

  4. #4
    Just Joined!
    Join Date
    Feb 2008
    Posts
    72

    Thanks for Flash

    Thank you, I've installed the restricted-extras and saw the link. I've done the solution 2, and now maybe the flash is ok. Thanks.

  5. #5
    Just Joined!
    Join Date
    Feb 2008
    Posts
    72
    hello again,

    the system to update the flash plugin and the mouse does not work again.I tried to re-run the file which helped me.

    the file:
    Code:
    #!/bin/bash
    # Script  created by
    # Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com
    # Jaša Bartelj jasa.bartelj@gmail.com
    
    echo "Stopping any Firefox that might be running."
    sudo killall -9 firefox
    
    echo "Removing any other flash plugin previously installed."
    sudo apt-get remove -y --purge flashplugin-nonfree gnash gnash-common mozilla-plugin-gnash swfdec-mozilla libflashsupport nspluginwrapper
    sudo rm -f /usr/lib/mozilla/plugins/*flash*
    sudo rm -f ~/.mozilla/plugins/*flash*
    sudo rm -f /usr/lib/firefox/plugins/*flash*
    sudo rm -f /usr/lib/firefox-addons/plugins/*flash*
    sudo rm -rfd /usr/lib/nspluginwrapper
     
    echo "Installing Flash Player 10."
    sudo cd /tmp
    sudo wget http://labs.adobe.com/downloads/flashplayer10.html
    sudo wget `cat flashplayer10.html | egrep -o "http:.*"|cut -d\" -f1|grep linux-x86_64.so.tar.gz`
    ARCHIVE=`ls libflashplayer-*.linux-x86_64.so.tar.gz`
    echo "Version is $ARCHIVE."
    sudo tar zxvf $ARCHIVE
    sudo cp libflashplayer.so /usr/lib/mozilla/plugins/
    echo "Linking the libraries so Firefox and apps built on XULRunner can find it."
    sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so /usr/lib/firefox-addons/plugins/
    sudo ln -sf /usr/lib/mozilla/plugins/libflashplayer.so  /usr/lib/xulrunner-addons/plugins/
    # now doing some cleaning up:
    sudo rm -rf flashplayer10.html
    sudo rm -rf libflashplayer.so
    sudo rm -rf $ARCHIVE
    and now I try to translate what happened:

    mike@mike-desktop:~/Asztal$ chmod 755 fix.sh
    mike@mike-desktop:~/Asztal$ sh fix.sh
    Stopping any Firefox that might be running.
    Removing any other flash plugin previously installed.
    Reading package lists... done
    Building dependency tree
    Reading state information ... Done
    The flashplugin-nonfree package is not installed, so I did not deleted
    The gnash package is not installed, so I did not deleted
    The gnash-common package is not installed, so I did not deleted
    The mozilla-plugin-gnash package is not installed, so I did not deleted
    The mozilla-swfdec-mozilla package is not installed, so I did not deleted
    The mozilla-libflashsupport package is not installed, so I did not deleted

    The following packages will be removed:
    flashplugin-installer* nspluginwrapper*
    0 upgraded, 0 newly installed, 2 to remove and 12 not upgraded.
    After this operation, 754kB disk space will be released.
    (Reading database ... Now, 176,650 files and directories currently installed.)
    remove: flashplugin-installer ...
    remove flashplugin-installer configuration files ...
    remove: nspluginwrapper ...
    dpkg: warning: while removing nspluginwrapper, directory '/usr/lib/firefox/plugins' not empty so not removed.
    dpkg: warning: while removing nspluginwrapper, directory '/usr/lib/firefox' not empty so not removed.
    Processing triggers for man-db ...
    Installing Flash Player 10.
    sudo: cd: command not found
    --2009-12-10 00:28:03-- Adobe Labs - Downloads: Flash Player 10.1
    labs.adobe.com feloldása... 192.150.18.72
    Join the following: labs.adobe.com [192.150.18.72]: 80 .. Linked.
    HTTP request sent, awaiting response ... 200 OK
    Length: unspecified [text / html]
    Save in: "flashplayer10.html"

    [ <=> ] 17.677 44,9K/s time 0,4s

    2009-12-10 00:28:04 (44,9 KB/s) – „flashplayer10.html” saved [17677]

    wget: missing URL
    Usage: wget [OPTION] ... [URL]http://www.linuxforums.org/forum/ubuntu-help/ ...

    try "wget - help" command.
    ls: libflashplayer-*. linux-x86_64.so.tar.gz not available: No such file or directory
    Version is .
    tar: The old "f" option requires an argument.
    For more information, try "tar - help" or "tar
    - usage "commands.
    CP: stat "libflashplayer.so" failed: No such file or directory
    Linking the libraries so Firefox and apps built on XULRunner can find it.
    mike@mike-desktop:~/Asztal$


    This is just a translation

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...