adobe flash player 在Kubuntu 9.04 amd64上的问题

上网、浏览、聊天、下载等
回复
头像
kunkun0217
帖子: 441
注册时间: 2007-11-14 17:39
联系:

adobe flash player 在Kubuntu 9.04 amd64上的问题

#1

帖子 kunkun0217 » 2009-05-01 18:47

成功安装了 flash player 10 for 64位,可是 无法 打开土豆视频,但是可以正常显示大部分其他网页的flash,土豆的首页也可以显示flash,就是不能打开视频。 是flash player 不支持还是,我系统设置有问题?
leon_young
帖子: 133
注册时间: 2009-05-09 15:48

Re: adobe flash player 在Kubuntu 9.04 amd64上的问题

#2

帖子 leon_young » 2009-05-17 16:13

kunkun0217 写了:成功安装了 flash player 10 for 64位,可是 无法 打开土豆视频,但是可以正常显示大部分其他网页的flash,土豆的首页也可以显示flash,就是不能打开视频。 是flash player 不支持还是,我系统设置有问题?
我的可以的,而且不卡,我是32位机,之前装了flash插件后还是放不了,装完mplayer就可以了,而且很流畅。
头像
cat650
帖子: 386
注册时间: 2009-05-18 13:51

Re: adobe flash player 在Kubuntu 9.04 amd64上的问题

#3

帖子 cat650 » 2009-05-20 13:08

我的也是
可能是64 位版 不成熟
我已经成功把插件挂在opera下了,可惜firefox突然不能看flash了
狸花猫的小网站http://cat650.iok.la:650
wenjianhn
帖子: 583
注册时间: 2008-10-15 10:49
来自: CS

Re: adobe flash player 在Kubuntu 9.04 amd64上的问题

#4

帖子 wenjianhn » 2009-05-20 19:00

代码: 全选

#!/bin/bash

## First we make the working directory
sudo mkdir /tmp/pluginstall

#choose version of ubuntu
#Input code browser
function strinput {
 unset refstr
 echo -n "$1"
 read refstr
}

## Ask if they agree to file bug reports, sort of a reminder
echo
echo " This script is used to setup the Flash 10 Alpaha. "
echo " By entering yes below you acknowlage that you "
echo " are installing development software and you "
echo " will file bug reports with Adobe for every "
echo " problem you incounter."
echo
echo " Do you agree? yes or no : "


if [ "$installtype" = "" ]
then
 echo -n "(please type the whole word in lower case letters)"
 strinput
else
 refstr=$installtype
fi

if [ "$refstr" = "yes" ]
then
 echo "Flash installing."


## First we uninstall and remove all the existing flash packages

sudo apt-get -y purge nspluginwrapper
sudo apt-get -y purge mozilla-plugin-gnash
sudo apt-get -y purge swfdec-mozilla
sudo apt-get -y purge flashplugin-nonfree
sudo rm -rfd /usr/lib/nspluginwrapper
sudo rm -f /usr/lib/firefox-addons/plugins/libflashplayer.so
sudo rm -f /usr/lib/mozilla/plugins/flashplugin-alternative.so

## Then we make a temp folder and download the new plugin
cd /tmp/pluginstall
sudo wget  http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.d21.1.linux-x86_64.so.tar.gz

## Next we extract and place the plugin
sudo tar xvf libflashplayer-10.0.d21.1.linux-x86_64.so.tar.gz
sudo mv libflashplayer.so /usr/lib/mozilla/plugins/


elif [ "$refstr" = "no" ]
then
 echo "I am sorry but you have to agree. "

else
 echo  " I am sorry but you have to agree. "
 echo
fi

代码: 全选

 _____________
< 呜呜buntu >
 -------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
回复