本文主要是介绍[solution]: ubuntu 安装 flashplugin-installer 失败,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
公司内上外网需要代理,ubuntu 12.04 在安装 flashplugin-installer、ttf-mscorefonts-installer 这类deb包的时候,需要到仓库外下载文件。比如 flashplugin-installer 在安装的时候会去下载: http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-lashplugin_11.2.202.261.orig.tar.gz
ubuntu 是通过 /usr/lib/update-notifier/package-data-downloader 完成这件事的,它是个 python 脚本,里面用到了urllib,但是这个库不支持 proxy,所以会导致 deb 安装失败。
等 ubuntu 解决这类问题之前,需要自己先找个 workaround 的办法:
打开 /usr/lib/update-notifier/package-data-downloader 找到下面这段:
for i in range(len(files)):print "%s: downloading %s" % (relfile, files[i])dest_file = urllib.urlretrieve(files[i])[0]output = subprocess.check_output(["sha256sum", dest_file])output = output.split(' ')[0]if output == sums[i]:command.append(dest_file)else:record_failure(relfile)break
将 urllib.urlretrieve 改成 wget,改之后如下:
for i in range(len(files)):print "%s: downloading %s" % (relfile, files[i])#dest_file = urllib.urlretrieve(files[i])[0]dest_file = files[i].split("/")[-1]dest_file = '/tmp/' + dest_filedownf = "/usr/bin/wget %s -O %s" % (files[i], dest_file)subprocess.call(downf, shell=True)output = subprocess.check_output(["sha256sum", dest_file])output = output.split(' ')[0]if output == sums[i]:command.append(dest_file)else:record_failure(relfile)break
剩下的事情就是在 /etc/wgetrc 里面配置代理(略)
这篇关于[solution]: ubuntu 安装 flashplugin-installer 失败的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!