Install Flash Player 10 on 64bit OpenSuse

January 3, 2010

Scripts

#!/bin/bash
# Script created by
#FlashConf.com
# http://www.flashcs.com/how-to/install-flash-player-10-on-64bit-linux/
#  Opensuse 11.0

echo “Stopping any Firefox that might be running”
sudo killall -9 firefox

echo “Removing any other flash plugin previously installed:”

sudo rm -f /usr/lib64/browser-plugins/npwrapper.libflashplayer.so
sudo rm -f /usr/lib/browser-plugins/libflashplayer.so
sudo rm -f /usr/lib/flash-plugin/libflashplayer.so
sudo rm -rfd /usr/lib/nspluginwrapper

echo “Installing Flash Player 10″
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz
tar zxvf libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz

sudo cp libflashplayer.so /usr/lib64/browser-plugins/libflashplayer.so
sudo cp libflashplayer.so /usr/lib/browser-plugins/libflashplayer.so

# now doing some cleaning up:
sudo rm -rf libflashplayer.so
sudo rm -rf libflashplayer-10.0.22.87.linux-x86_64.so.tar.gz

, , , ,

Subscribe

Subscribe to our e-mail newsletter to receive updates.

4 Responses to “Install Flash Player 10 on 64bit OpenSuse”

  1. lj Says:

    Thanks a lot!!! I had tried a lot of stuff and none worked for whatever reason. This worked smoothly!

  2. hema Says:

    thanks

  3. conner Says:

    [user@localhost ~]$ echo

    [user@localhost ~]$ sudo killall
    audit_log_user_command(): Connection refused
    Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME…
    killall -l, –list
    killall -V, –version

    -e,–exact require exact match for very long names
    -I,–ignore-case case insensitive process name match
    -g,–process-group kill process group instead of process
    -i,–interactive ask for confirmation before killing
    -l,–list list all known signal names
    -q,–quiet don’t print complaints
    -r,–regexp interpret NAME as an extended regular expression
    -s,–signal SIGNAL send this signal instead of SIGTERM
    -u,–user USER kill only process(es) running as USER
    -v,–verbose report if the signal was successfully sent
    -V,–version display version information
    -w,–wait wait for processes to die
    -Z,–context REGEXP kill only process(es) having context
    (must precede other arguments)

    [user@localhost ~]$ echo

    [user@localhost ~]$ sudo rm -f /usr/lib64/browser-plugins/npwrapper.libflashplayer.so
    audit_log_user_command(): Connection refused
    [user@localhost ~]$ sudo rm -f /usr/lib/browser-plugins/libflashplayer.so
    audit_log_user_command(): Connection refused
    [user@localhost ~]$ sudo rm -f /usr/lib/flash-plugin/libflashplayer.so
    audit_log_user_command(): Connection refused
    [user@localhost ~]$ sudo rm -rfd /usr/lib/nspluginwrapper
    audit_log_user_command(): Connection refused
    [user@localhost ~]$ tar zxvf libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz
    tar: libflashplayer-10.0.42.34.linux-x86_64.so.tar.gz: Cannot open: No such file or directory
    tar: Error is not recoverable: exiting now
    tar: Child returned status 2
    tar: Error exit delayed from previous errors
    [user@localhost ~]$ sudo cp libflashplayer.so /usr/lib64/browser-plugins/libflashplayer.so
    audit_log_user_command(): Connection refused
    cp: cannot stat `libflashplayer.so’: No such file or directory
    [user@localhost ~]$ sudo cp libflashplayer.so /usr/lib/browser-plugins/libflashplayer.so
    audit_log_user_command(): Connection refused
    cp: cannot stat `libflashplayer.so’: No such file or directory
    [user@localhost ~]$

    help dont no wat to do

  4. admin Says:

    you need to have uid0 ( to have root access )

Leave a Reply