我已经试着安装了nemo文件管理器的nemo-海马扩展名,如下所示
http://www.webupd8.org/2016/11/nemo-320-with-unity-patches-and-without.html http://www.webupd8.org/2013/10/install-nemo-with-unity-patches-and.html http://www.noobslab.com/2017/01/latest-nemo-file-manager-with.html
但是,每次我试图使用命令sudo apt-get install nemo-seahorse安装尼莫海马时,我都会得到一个错误,类似于:
dpkg: error processing archive /var/cache/apt/archives/nemo-seahorse_3.2.0-1~webupd8~xenial0_amd64.deb (--unpack):
trying to overwrite '/usr/bin/seahorse-tool', which is also in package seahorse-nautilus 3.11.92-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/nemo-seahorse_3.2.0-1~webupd8~xenial0_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)或
dpkg: error processing archive /var/cache/apt/archives/nemo-seahorse_3.2.0-b~xenial~NoobsLab.com_amd64.deb (--unpack):
trying to overwrite '/usr/bin/seahorse-tool', which is also in package seahorse-nautilus 3.11.92-1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/nemo-seahorse_3.2.0-b~xenial~NoobsLab.com_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)因此,我每次都删除了软件包和PPA,现在使用sudo apt安装了nemo,这是在ubuntu中可用的默认程序,并尝试构建这个站点中给出的扩展:如何安装尼莫扩展?,但它仍然不起作用--我在终端中得到了这样的结果:
gpg: skipped "Clement Lefebvre <root@linuxmint.com>": No secret key
gpg: dpkg-sign.2qaQaPF8/nemo-seahorse_3.2.0.dsc: clearsign failed: No secret key
dpkg-buildpackage: error: failed to sign .dsc and .changes file所以分机没有安装?我怎么安装它?在nemo文件管理器中的扩展名列表中,我只能找到选中的nemo-fileroller,并且看不到任何扩展名。但是我想如果我通过大楼安装的话,我就不会得到扩展的更新。对不起,如果我做了一些非常基本的错误,并感谢您抽出时间。
发布于 2017-04-26 00:47:25
如果不使用
,则为
如果你使用的是无名氏,就停在这里,跳到下一节。
看起来在你的第一次尝试中,ppa试图覆盖你的系统上的一个nautilus或nautilus插件依赖项。覆盖将是不好的,因为它可能会破坏海神,所以系统会阻止你。如果你不使用无名氏,你可以试着把它完全移除:
sudo apt-get remove nautilus seahorse-nautilussudo apt-get autoremove #摆脱了闲逛的无头怪sudo apt-get install nemo-seahorse如果您只需去掉seahorse-nautilus包,然后再加上autoremove命令,您就可以从ppa完成安装。
sudo apt-get remove seahorse-nautilussudo apt-get autoremove #摆脱了额外的未使用的依赖项。sudo apt-get install nemo-seahorsehttps://askubuntu.com/questions/908935
复制相似问题