flashplugin-installer 安装失败

flashplugin-installer 安装失败

我想安装flashplugin-installer但是出现以下信息:

ron@jpax-build11:~$ sudo apt-get install flashplugin-installer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  x-ttcidfont-conf ttf-mscorefonts-installer ttf-bitstream-vera ttf-dejavu
  ttf-xfree86-nonfree xfs
The following NEW packages will be installed:
  flashplugin-installer
0 upgraded, 1 newly installed, 0 to remove and 12 not upgraded.
Need to get 0 B/6,866 B of archives.
After this operation, 140 kB of additional disk space will be used.
Preconfiguring packages ...
Selecting previously unselected package flashplugin-installer.
(Reading database ... 445615 files and directories currently installed.)
Preparing to unpack .../flashplugin-installer_11.2.202.508ubuntu0.14.04.1_amd64.deb ...
Unpacking flashplugin-installer (11.2.202.508ubuntu0.14.04.1) ...
Processing triggers for update-notifier-common (0.154.1ubuntu1) ...
flashplugin-installer: downloading http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_20150811.1.orig.tar.gz
Traceback (most recent call last):
  File "/usr/lib/update-notifier/package-data-downloader", line 239, in process_download_requests
    dest_file = urllib.urlretrieve(files[i])[0]
  File "/usr/lib/python2.7/urllib.py", line 94, in urlretrieve
    return _urlopener.retrieve(url, filename, reporthook, data)
  File "/usr/lib/python2.7/urllib.py", line 240, in retrieve
    fp = self.open(url, data)
  File "/usr/lib/python2.7/urllib.py", line 208, in open
    return getattr(self, name)(url)
  File "/usr/lib/python2.7/urllib.py", line 345, in open_http
    h.endheaders(data)
  File "/usr/lib/python2.7/httplib.py", line 975, in endheaders
    self._send_output(message_body)
  File "/usr/lib/python2.7/httplib.py", line 835, in _send_output
    self.send(msg)
  File "/usr/lib/python2.7/httplib.py", line 797, in send
    self.connect()
  File "/usr/lib/python2.7/httplib.py", line 778, in connect
    self.timeout, self.source_address)
  File "/usr/lib/python2.7/socket.py", line 553, in create_connection
    for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno -2] Name or service not known
Setting up flashplugin-installer (11.2.202.508ubuntu0.14.04.1) ...
ron@jpax-build11:~$ 

但我可以下载http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_20150811.1.orig.tar.gz一切都很好,wget但我不知道如何安装它。我该如何开始呢?

谢谢

编辑1
不确定哪个版本的 Ubuntu,我认为是版本12.04(由于兼容性原因)

$ apt-cache policy flashplugin-installer
flashplugin-installer:
  Installed: 11.2.202.508ubuntu0.14.04.1
  Candidate: 11.2.202.508ubuntu0.14.04.1
  Version table:
 *** 11.2.202.508ubuntu0.14.04.1 0
        500 http://ca.archive.ubuntu.com/ubuntu/ trusty-updates/multiverse amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ trusty-security/multiverse amd64 Packages
        100 /var/lib/dpkg/status
     11.2.202.350ubuntu1 0
        500 http://ca.archive.ubuntu.com/ubuntu/ trusty/multiverse amd64 Packages
ron@jpax-build11:~$ 

答案1

我还没有测试过,但是看postinst脚本,文件应该在 中/var/cache/flashplugin-installer。尝试将文件保留在那里并运行sudo dpkg-reconfigure flashplugin-installer

sudo cp adobe-flashplugin_20150811.1.orig.tar.gz /var/cache/flashplugin-installer
sudo dpkg-reconfigure flashplugin-installer

相关内容