我一直无法从归档管理器中提取.rar文件,因此,我遵循了一些关于如何进行其他操作的在线说明。
xarchiver应用程序不是从Software安装的,当我试图从终端安装unrar时,我得到以下信息:
:~$ sudo apt-get install unrar
[sudo] password for:
Reading package lists... Done Building dependency tree Reading state
information... Done Package unrar is not available, but is referred to
by another package. This may mean that the package is missing, has
been obsoleted, or is only available from another source
E: Package 'unrar' has no installation candidate有人能帮我吗?非常感谢。
发布于 2018-03-15 08:16:07
unrar不包含在标准Ubuntu存储库中。您需要启用multiverse存储库来安装它。要执行此操作,请运行以下命令:
sudo apt-add-repository multiverse && sudo apt-get update如本文所述:如何启用“多重宇宙”存储库?
在Ubuntu17.04(z校)上,这个包被称为unrar-nonfree,所以要安装unrar,需要发出sudo apt-get install unrar-nonfree。
但是,由于17.04不再支持,所以您应该真正升级您的系统。
https://askubuntu.com/questions/1015071
复制相似问题