由于管道损坏,我无法升级 13.10

由于管道损坏,我无法升级 13.10

我尝试升级,结果如下:

christopher@chris-computer:~$ sudo apt-get upgrade
[sudo] password for christopher: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be upgraded:
  librhythmbox-core7
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/809 kB of archives.
After this operation, 39.9 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
(Reading database ... 170617 files and directories currently installed.)
Preparing to replace librhythmbox-core7 2.99.1-0ubuntu1 (using .../librhythmbox-core7_3.0.1-0~13.10~ppa1_i386.deb) ...
Unpacking replacement librhythmbox-core7 ...
dpkg: error processing /var/cache/apt/archives/librhythmbox-core7_3.0.1-0~13.10~ppa1_i386.deb (--unpack):
 trying to overwrite '/usr/lib/librhythmbox-core.so.8.0.0', which is also in package librhythmbox-core8 3.0.1-1ubuntu2~ppa0
No apport report written because MaxReports is reached already
                                                              dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/librhythmbox-core7_3.0.1-0~13.10~ppa1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

答案1

librhythmbox-core7_3.0.1-0~13.10~ppa1_i386.deb似乎您正在下载已经安装的软件包librhythmbox-core.so.8.0.0。可能是 PPA 问题。

我的建议是删除所有librhythmbox软件包并重新安装您喜欢的版本。

  1. 使用以下命令删除当前librhythmbox安装sudo dpkg --remove librhythmbox-core
  2. 使用以下命令更新您的 apt 缓存sudo apt-get update
  3. 重新librhythmbox安装sudo apt-get install -f librhythmbox

相关内容