我尝试删除/var/cache/apt/archives/libc6-dev-i386_2.23-0ubuntu5_amd64.deb
。
我也尝试过sudo apt-get update
和sudo apt-get autoclean
,但并没有解决问题。
sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following package was automatically installed and is no longer required:
ubuntu-core-launcher
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
libc6-dev-i386
The following NEW packages will be installed:
libc6-dev-i386
0 upgraded, 1 newly installed, 0 to remove and 15 not upgraded.
3 not fully installed or removed.
Need to get 0 B/1,262 kB of archives.
After this operation, 6,936 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 278396 files and directories currently installed.)
Preparing to unpack .../libc6-dev-i386_2.23-0ubuntu5_amd64.deb ...
Unpacking libc6-dev-i386 (2.23-0ubuntu5) ...
dpkg: error processing archive /var/cache/apt/archives/libc6-dev-i386_2.23-0ubuntu5_amd64.deb (--unpack):
trying to overwrite '/usr/include/fpu_control.h', which is also in package libc6-dev-amd64:i386 2.23-0ubuntu5
Errors were encountered while processing:
/var/cache/apt/archives/libc6-dev-i386_2.23-0ubuntu5_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
编辑:
输出apt-cache --installed rdepends libc6-dev-i386 libc6-dev-amd64
apt-cache --installed rdepends libc6-dev-i386 libc6-dev-amd64
libc6-dev-i386
Reverse Depends:
libc6-dev-x32
libc6-i386
libc6-dev-x32
gcc-5-multilib
libc6-i386
gcc-5-multilib
libc6-dev-amd64:i386
Reverse Depends:
输出grep ^[^#] /etc/apt/sources.list /etc/apt/sources.list.d/*
grep ^[^#] /etc/apt/sources.list /etc/apt/sources.list.d/*
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial main restricted
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial universe
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates universe
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial multiverse
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
/etc/apt/sources.list:deb http://in.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
/etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu xenial-security main restricted
/etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu xenial-security universe
/etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu xenial-security multiverse
/etc/apt/sources.list.d/damien-moore-ubuntu-codeblocks-stable-xenial.list:deb http://ppa.launchpad.net/damien-moore/codeblocks-stable/ubuntu xenial main
/etc/apt/sources.list.d/damien-moore-ubuntu-codeblocks-stable-xenial.list.save:deb http://ppa.launchpad.net/damien-moore/codeblocks-stable/ubuntu xenial main
/etc/apt/sources.list.d/google-chrome.list:deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
/etc/apt/sources.list.d/google-chrome.list.save:deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
/etc/apt/sources.list.d/snwh-ubuntu-pulp-xenial.list:deb http://ppa.launchpad.net/snwh/pulp/ubuntu xenial main
/etc/apt/sources.list.d/snwh-ubuntu-pulp-xenial.list.save:deb http://ppa.launchpad.net/snwh/pulp/ubuntu xenial main
/etc/apt/sources.list.d/steam.list:deb [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
/etc/apt/sources.list.d/steam.list:deb-src [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
/etc/apt/sources.list.d/steam.list.save:deb [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
/etc/apt/sources.list.d/steam.list.save:deb-src [arch=amd64,i386] http://repo.steampowered.com/steam/ precise steam
/etc/apt/sources.list.d/thefanclub-ubuntu-grive-tools-xenial.list.save:deb http://ppa.launchpad.net/thefanclub/grive-tools/ubuntu xenial main
/etc/apt/sources.list.d/wine-ubuntu-wine-builds-xenial.list:deb http://ppa.launchpad.net/wine/wine-builds/ubuntu xenial main
/etc/apt/sources.list.d/wine-ubuntu-wine-builds-xenial.list.save:deb http://ppa.launchpad.net/wine/wine-builds/ubuntu xenial main
答案1
你为什么要尝试安装两者libc6-dev-i386
和 libc6-dev-amd64
? 如果你想交叉编译并且你的系统架构
- 您需要的是 amd64
libc6-dev
吗lib6-dev-i386
(看起来您就是这种情况),或者 - 您需要的是 i386
libc6-dev
并且libc6-dev-amd64
。
因此,删除lib6-dev-i386
:
sudo apt-get purge -f lib6-dev-amd64:i386
该命令将告诉 Apt 使用涉及删除的解决方案来修复软件包冲突lib6-dev-amd64:i386
。如果这不起作用,您可以手动删除软件包并修复剩余的冲突:
sudo dpkg --purge lib6-dev-amd64:i386
sudo apt-get install -f
答案2
我尝试删除每个相互依赖且apt-get
现在正在运行的依赖项。
这是我的解决方案,
sudo apt remove libc6-dev-x32 libc6-dev-i386 gcc-5-multilib gcc-multilib
答案3
我遇到了类似的问题,并找到了一个帮助答案,请尝试以下方法:
sudo aptitude install libc6-dev:i386
然后回答两次“是”。
obs. 写入精确的“libc6-dev:i386”,这是正确的。
答案4
尝试删除数据包/var/cache/apt/archives/libc6-dev-i386_2.23-0ubuntu5_amd64.deb
rm -rf /var/cache/apt/archives/libc6-dev-i386_2.23-0ubuntu5_amd64.deb
尝试清理数据包但安装失败
sudo apt-get autoclean
sudo apt-get autoremove
最后尝试重新安装您的数据包。祝你好运!