关于ubuntu7.10的漏洞73890

来源:互联网 发布:百度软件开发岗位职责 编辑:程序博客网 时间:2024/05/17 20:30
由于adobe升级flashplayer到adobeflashpalyer9.3,导致ubuntu不能安装flashpalyer,
原因是不能通过MD5安全审查  ,导致被操作系统识别为不安全安装。

英文原文
This causes Ubuntu to not install the flash plugin, detecting achange in the flash plugin installer file (via MD5 checksums). See bug 173890. This bug has been fixed in the next release of Ubuntu (Hardy 8.04) and it should soon come as an update to Ubuntu 7.10.

解决问题的办法
第一步 sudo apt-get install flashplugin-nonfree

首先 试图安装flashplayer


第二步
sudo nano /var/lib/dpkg/info/flashplugin-nonfree.postinst

第三步 将终端里的
# verify MD5 checksum of (copied or downloaded) tarball
rm -rf install_flash_player_9_linux/
echo "821cc72359a937caef85bb4cc74ef5cd install_flash_player_9_linux.tar.gz"| md5sum -c > /dev/null 2>&1 /
|| fp_exit_with_error "md5sum mismatch install_flash_player_9_linux.tar.gz"

# unpacking and checking the plugin
tar xzf install_flash_player_9_linux.tar.gz || fp_exit_with_error "cannot unpack plugin"
echo "be5a2f9032f8fc8bccbbf5d96c5028f9 install_flash_player_9_linux/libflashplayer.so"| md5sum -c > /dev/null 2>&1 /
|| fp_exit_with_error "plugin changed, not trusted"
echo "a81fd3b03b8c6d6e5a14298110718d3f install_flash_player_9_linux/flashplayer.xpt"| md5sum -c > /dev/null 2>&1 /
|| fp_exit_with_error "plugin changed, not trusted"

替换成下面的代码
    # verify MD5 checksum of (copied or downloaded) tarball
rm -rf install_flash_player_9_linux/
echo "93b7c48eaa492237b807a3ae1de65cf9 install_flash_player_9_linux.tar.gz"| md5sum -c > /dev/null 2>&1 /
|| fp_exit_with_error "md5sum mismatch install_flash_player_9_linux.tar.gz"

# unpacking and checking the plugin
tar xzf install_flash_player_9_linux.tar.gz || fp_exit_with_error "cannot unpack plugin"
#echo "a81fd3b03b8c6d6e5a14298110718d3f install_flash_player_9_linux/flashplayer.xpt"| md5sum -c > /dev/$
#echo "13ce705df5d47422a9192b29827544e8 install_flash_player_9_linux/libflashplayer.so"| md5sum -c > /de$
# || fp_exit_with_error "plugin changed, not trusted"

第四步 在终端上开一个新页面

输入 下面命令sudo dpkg-reconfigure flashplugin-nonfree
重新安装flashplayer
在这之前首先到adobe的官方网站上下载个flashplayer的tar.gz的包文件
然后输入位置 注意不要输入文件名
差不多了
但是 终端上还是提示没有安装上去

没关系 执行下面命令
nspluginwrapper -v -a -i

一切ok了 现在可以去youku看教程了


原文 出处 file:///home/yue123161/%E5%9B%BE%E7%89%87/unbuntu7%E8%A1%A5%E4%B8%81%E5%85%B3%E4%BA%8Eflash.html

翻译 岳亚伟