无法安装 BytecoinWallet.deb

无法安装 BytecoinWallet.deb

我下载了最新的 BytecoinWallet,但由于某种原因它无法安装。

起初我给它赋予了以下权限:

chmod 755 BytecoinWallet-1.0.11.amd64.deb

之后我尝试使用以下命令安装它:

sudo dpkg -i BytecoinWallet-1.0.11.amd64.deb

输出结果如下:

(Reading database ... 268595 files and directories currently installed.)
Preparing to unpack BytecoinWallet-1.0.11.amd64.deb ...
Unpacking bytecoinwallet (1.0.11) ...
dpkg-deb (subprocess): cannot copy archive member from 'BytecoinWallet-1.0.11.amd64.deb' to decompressor pipe: unexpected end of file or stream
dpkg-deb: error: subprocess paste returned error exit status 2
dpkg: error processing archive BytecoinWallet-1.0.11.amd64.deb (--install):
 cannot copy extracted data for './usr/bin/bytecoinwallet' to '/usr/bin/bytecoinwallet.dpkg-new': unexpected end of file or stream
Processing triggers for bamfdaemon (0.5.3~bzr0+16.04.20160523-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for gnome-menus (3.13.3-6ubuntu3) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu5) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Errors were encountered while processing:
 BytecoinWallet-1.0.11.amd64.deb

之后我尝试用以下方法修复它:

sudo apt-get install -f

它没有修复它。

答案1

您可能会注意到,该特定版本比所有其他版本都小几兆字节,因此我怀疑开发人员端的档案有缺陷。

  • BytecoinWallet-1.0.11.amd64.deb为 539.9kb
  • BytecoinWallet-1.0.10.amd64.deb为3.2MB

以下是 SourceForge 下载页面的屏幕截图:

在此处输入图片描述

好消息是,稍旧的版本似乎安装得很好:

wget --content-disposition \
https://sourceforge.net/projects/bytecoin-bcn/files/BytecoinWallet/BytecoinWallet-1.0.10.amd64.deb
sudo dpkg -i BytecoinWallet-1.0.10.amd64.deb

但我没有测试应用程序本身,只测试了安装过程:

andrew@athens:~$ bytecoinwallet --version
bytecoinwallet 1.0.10

相关内容