How do I fix mystery package dependencies
I have a new installation of Ubuntu 18.04.1 on a new laptop, and the garbage OS has already botched itself up.
The basic problem is that I cannot apt-get install
any package that depends on gcc-7-base
or gcc-8-base
. For example,
libquadmath0 : Depends: gcc-8-base (= 8-20180414-1ubuntu2) but 8.2.0-1ubuntu2~18.04 is installed
libgfortran4 : Depends: gcc-7-base (= 7.3.0-16ubuntu3) but 7.3.0-27ubuntu1~18.04 is installed
According to apt-cache policy
, these are the current versions of gcc-7-base
or gcc-8-base
:
$ apt-cache policy gcc-7-base
gcc-7-base:
Installed: 7.3.0-27ubuntu1~18.04
Candidate: 7.3.0-27ubuntu1~18.04
Version table:
*** 7.3.0-27ubuntu1~18.04 100
100 /var/lib/dpkg/status
7.3.0-16ubuntu3 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
$ apt-cache policy gcc-8-base
gcc-8-base:
Installed: 8.2.0-1ubuntu2~18.04
Candidate: 8.2.0-1ubuntu2~18.04
Version table:
*** 8.2.0-1ubuntu2~18.04 100
100 /var/lib/dpkg/status
8-20180414-1ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
The installed versions have different names than the versions in the repo; the versions in the repo have the name that the other packages seem to expect.
$ apt-cache showpkg gcc-7-base
shows that both versions have the exact same "File" origin and MD5 hash:
$ apt-cache showpkg gcc-7-base
Package: gcc-7-base
Versions:
7.3.0-27ubuntu1~18.04 (/var/lib/dpkg/status)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
...
7.3.0-16ubuntu3 (/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
(with a similar result for gcc-8-base
, I'll post it if anyone asks). So as far as I can tell the 'bad' (installed) packages are the exact same packages as the
'good' (expected) packages, and from the same source, but for some reason they have different names, and that's preventing things like libquadmath0
and libgfortran4
from installing.
A web search for "7.3.0-27ubuntu1~18.04" gives this description page for the bionic-updates repo as the only relevant hit, but the only "updates" repos in my /etc/apt/sources.list
are commented out, and I've never knowingly had them enabled.
So, my first question is
1) How did the packages 7.3.0-27ubuntu1~18.04
and 8.2.0-1ubuntu2~18.04
get installed on my computer? Is there any way of knowing this?
My second question is
2) How do I fix it using apt-get
? Since the highest-priority versions of each in the output of apt-cache policy
are the "correct" versions, would
$ apt-get remove gcc-7-base
$ apt-get install gcc-7-base
produce the correct configuration of having 7.3.0-16ubuntu3
and 8-20180414-1ubuntu2
installed for the packages gcc-7-base
and gcc-8-base
, respectively?
For the record, I've tried an update/upgrade/autoremove cycle, I've tried apt-get install -f
, and I've tried apt-get clean
. None of these had any effect whatsoever.
apt package-management
add a comment |
I have a new installation of Ubuntu 18.04.1 on a new laptop, and the garbage OS has already botched itself up.
The basic problem is that I cannot apt-get install
any package that depends on gcc-7-base
or gcc-8-base
. For example,
libquadmath0 : Depends: gcc-8-base (= 8-20180414-1ubuntu2) but 8.2.0-1ubuntu2~18.04 is installed
libgfortran4 : Depends: gcc-7-base (= 7.3.0-16ubuntu3) but 7.3.0-27ubuntu1~18.04 is installed
According to apt-cache policy
, these are the current versions of gcc-7-base
or gcc-8-base
:
$ apt-cache policy gcc-7-base
gcc-7-base:
Installed: 7.3.0-27ubuntu1~18.04
Candidate: 7.3.0-27ubuntu1~18.04
Version table:
*** 7.3.0-27ubuntu1~18.04 100
100 /var/lib/dpkg/status
7.3.0-16ubuntu3 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
$ apt-cache policy gcc-8-base
gcc-8-base:
Installed: 8.2.0-1ubuntu2~18.04
Candidate: 8.2.0-1ubuntu2~18.04
Version table:
*** 8.2.0-1ubuntu2~18.04 100
100 /var/lib/dpkg/status
8-20180414-1ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
The installed versions have different names than the versions in the repo; the versions in the repo have the name that the other packages seem to expect.
$ apt-cache showpkg gcc-7-base
shows that both versions have the exact same "File" origin and MD5 hash:
$ apt-cache showpkg gcc-7-base
Package: gcc-7-base
Versions:
7.3.0-27ubuntu1~18.04 (/var/lib/dpkg/status)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
...
7.3.0-16ubuntu3 (/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
(with a similar result for gcc-8-base
, I'll post it if anyone asks). So as far as I can tell the 'bad' (installed) packages are the exact same packages as the
'good' (expected) packages, and from the same source, but for some reason they have different names, and that's preventing things like libquadmath0
and libgfortran4
from installing.
A web search for "7.3.0-27ubuntu1~18.04" gives this description page for the bionic-updates repo as the only relevant hit, but the only "updates" repos in my /etc/apt/sources.list
are commented out, and I've never knowingly had them enabled.
So, my first question is
1) How did the packages 7.3.0-27ubuntu1~18.04
and 8.2.0-1ubuntu2~18.04
get installed on my computer? Is there any way of knowing this?
My second question is
2) How do I fix it using apt-get
? Since the highest-priority versions of each in the output of apt-cache policy
are the "correct" versions, would
$ apt-get remove gcc-7-base
$ apt-get install gcc-7-base
produce the correct configuration of having 7.3.0-16ubuntu3
and 8-20180414-1ubuntu2
installed for the packages gcc-7-base
and gcc-8-base
, respectively?
For the record, I've tried an update/upgrade/autoremove cycle, I've tried apt-get install -f
, and I've tried apt-get clean
. None of these had any effect whatsoever.
apt package-management
2
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38
add a comment |
I have a new installation of Ubuntu 18.04.1 on a new laptop, and the garbage OS has already botched itself up.
The basic problem is that I cannot apt-get install
any package that depends on gcc-7-base
or gcc-8-base
. For example,
libquadmath0 : Depends: gcc-8-base (= 8-20180414-1ubuntu2) but 8.2.0-1ubuntu2~18.04 is installed
libgfortran4 : Depends: gcc-7-base (= 7.3.0-16ubuntu3) but 7.3.0-27ubuntu1~18.04 is installed
According to apt-cache policy
, these are the current versions of gcc-7-base
or gcc-8-base
:
$ apt-cache policy gcc-7-base
gcc-7-base:
Installed: 7.3.0-27ubuntu1~18.04
Candidate: 7.3.0-27ubuntu1~18.04
Version table:
*** 7.3.0-27ubuntu1~18.04 100
100 /var/lib/dpkg/status
7.3.0-16ubuntu3 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
$ apt-cache policy gcc-8-base
gcc-8-base:
Installed: 8.2.0-1ubuntu2~18.04
Candidate: 8.2.0-1ubuntu2~18.04
Version table:
*** 8.2.0-1ubuntu2~18.04 100
100 /var/lib/dpkg/status
8-20180414-1ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
The installed versions have different names than the versions in the repo; the versions in the repo have the name that the other packages seem to expect.
$ apt-cache showpkg gcc-7-base
shows that both versions have the exact same "File" origin and MD5 hash:
$ apt-cache showpkg gcc-7-base
Package: gcc-7-base
Versions:
7.3.0-27ubuntu1~18.04 (/var/lib/dpkg/status)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
...
7.3.0-16ubuntu3 (/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
(with a similar result for gcc-8-base
, I'll post it if anyone asks). So as far as I can tell the 'bad' (installed) packages are the exact same packages as the
'good' (expected) packages, and from the same source, but for some reason they have different names, and that's preventing things like libquadmath0
and libgfortran4
from installing.
A web search for "7.3.0-27ubuntu1~18.04" gives this description page for the bionic-updates repo as the only relevant hit, but the only "updates" repos in my /etc/apt/sources.list
are commented out, and I've never knowingly had them enabled.
So, my first question is
1) How did the packages 7.3.0-27ubuntu1~18.04
and 8.2.0-1ubuntu2~18.04
get installed on my computer? Is there any way of knowing this?
My second question is
2) How do I fix it using apt-get
? Since the highest-priority versions of each in the output of apt-cache policy
are the "correct" versions, would
$ apt-get remove gcc-7-base
$ apt-get install gcc-7-base
produce the correct configuration of having 7.3.0-16ubuntu3
and 8-20180414-1ubuntu2
installed for the packages gcc-7-base
and gcc-8-base
, respectively?
For the record, I've tried an update/upgrade/autoremove cycle, I've tried apt-get install -f
, and I've tried apt-get clean
. None of these had any effect whatsoever.
apt package-management
I have a new installation of Ubuntu 18.04.1 on a new laptop, and the garbage OS has already botched itself up.
The basic problem is that I cannot apt-get install
any package that depends on gcc-7-base
or gcc-8-base
. For example,
libquadmath0 : Depends: gcc-8-base (= 8-20180414-1ubuntu2) but 8.2.0-1ubuntu2~18.04 is installed
libgfortran4 : Depends: gcc-7-base (= 7.3.0-16ubuntu3) but 7.3.0-27ubuntu1~18.04 is installed
According to apt-cache policy
, these are the current versions of gcc-7-base
or gcc-8-base
:
$ apt-cache policy gcc-7-base
gcc-7-base:
Installed: 7.3.0-27ubuntu1~18.04
Candidate: 7.3.0-27ubuntu1~18.04
Version table:
*** 7.3.0-27ubuntu1~18.04 100
100 /var/lib/dpkg/status
7.3.0-16ubuntu3 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
$ apt-cache policy gcc-8-base
gcc-8-base:
Installed: 8.2.0-1ubuntu2~18.04
Candidate: 8.2.0-1ubuntu2~18.04
Version table:
*** 8.2.0-1ubuntu2~18.04 100
100 /var/lib/dpkg/status
8-20180414-1ubuntu2 500
500 http://us.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
The installed versions have different names than the versions in the repo; the versions in the repo have the name that the other packages seem to expect.
$ apt-cache showpkg gcc-7-base
shows that both versions have the exact same "File" origin and MD5 hash:
$ apt-cache showpkg gcc-7-base
Package: gcc-7-base
Versions:
7.3.0-27ubuntu1~18.04 (/var/lib/dpkg/status)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
...
7.3.0-16ubuntu3 (/var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages)
Description Language:
File: /var/lib/apt/lists/us.archive.ubuntu.com_ubuntu_dists_bionic_main_binary-amd64_Packages
MD5: b6e93638a6d08ea7a18929d7cf078e5d
(with a similar result for gcc-8-base
, I'll post it if anyone asks). So as far as I can tell the 'bad' (installed) packages are the exact same packages as the
'good' (expected) packages, and from the same source, but for some reason they have different names, and that's preventing things like libquadmath0
and libgfortran4
from installing.
A web search for "7.3.0-27ubuntu1~18.04" gives this description page for the bionic-updates repo as the only relevant hit, but the only "updates" repos in my /etc/apt/sources.list
are commented out, and I've never knowingly had them enabled.
So, my first question is
1) How did the packages 7.3.0-27ubuntu1~18.04
and 8.2.0-1ubuntu2~18.04
get installed on my computer? Is there any way of knowing this?
My second question is
2) How do I fix it using apt-get
? Since the highest-priority versions of each in the output of apt-cache policy
are the "correct" versions, would
$ apt-get remove gcc-7-base
$ apt-get install gcc-7-base
produce the correct configuration of having 7.3.0-16ubuntu3
and 8-20180414-1ubuntu2
installed for the packages gcc-7-base
and gcc-8-base
, respectively?
For the record, I've tried an update/upgrade/autoremove cycle, I've tried apt-get install -f
, and I've tried apt-get clean
. None of these had any effect whatsoever.
apt package-management
apt package-management
asked Nov 29 at 12:12
Darien Marks
696
696
2
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38
add a comment |
2
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38
2
2
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38
add a comment |
1 Answer
1
active
oldest
votes
Answer to question 1:
versions you're asking about seem to be the default package versions for 18.04 (this is my output):
jan@jan-XPS-9550:~$ sudo apt-get install libquadmath0 libgfortran4
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgfortran4 is already the newest version (7.3.0-27ubuntu1~18.04).
libquadmath0 is already the newest version (8.2.0-1ubuntu2~18.04).
Answer to question 2:
I think your best bet would be to:
apt-get remove --purge libgfortran4 libquadmath0 gcc-7-base gcc-8-base
apt-get autoremove
reboot (just in case, most likely not needed at all)
install packages again
then it should go back to default / non-conflicting ones
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1097103%2fhow-do-i-fix-mystery-package-dependencies%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Answer to question 1:
versions you're asking about seem to be the default package versions for 18.04 (this is my output):
jan@jan-XPS-9550:~$ sudo apt-get install libquadmath0 libgfortran4
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgfortran4 is already the newest version (7.3.0-27ubuntu1~18.04).
libquadmath0 is already the newest version (8.2.0-1ubuntu2~18.04).
Answer to question 2:
I think your best bet would be to:
apt-get remove --purge libgfortran4 libquadmath0 gcc-7-base gcc-8-base
apt-get autoremove
reboot (just in case, most likely not needed at all)
install packages again
then it should go back to default / non-conflicting ones
add a comment |
Answer to question 1:
versions you're asking about seem to be the default package versions for 18.04 (this is my output):
jan@jan-XPS-9550:~$ sudo apt-get install libquadmath0 libgfortran4
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgfortran4 is already the newest version (7.3.0-27ubuntu1~18.04).
libquadmath0 is already the newest version (8.2.0-1ubuntu2~18.04).
Answer to question 2:
I think your best bet would be to:
apt-get remove --purge libgfortran4 libquadmath0 gcc-7-base gcc-8-base
apt-get autoremove
reboot (just in case, most likely not needed at all)
install packages again
then it should go back to default / non-conflicting ones
add a comment |
Answer to question 1:
versions you're asking about seem to be the default package versions for 18.04 (this is my output):
jan@jan-XPS-9550:~$ sudo apt-get install libquadmath0 libgfortran4
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgfortran4 is already the newest version (7.3.0-27ubuntu1~18.04).
libquadmath0 is already the newest version (8.2.0-1ubuntu2~18.04).
Answer to question 2:
I think your best bet would be to:
apt-get remove --purge libgfortran4 libquadmath0 gcc-7-base gcc-8-base
apt-get autoremove
reboot (just in case, most likely not needed at all)
install packages again
then it should go back to default / non-conflicting ones
Answer to question 1:
versions you're asking about seem to be the default package versions for 18.04 (this is my output):
jan@jan-XPS-9550:~$ sudo apt-get install libquadmath0 libgfortran4
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgfortran4 is already the newest version (7.3.0-27ubuntu1~18.04).
libquadmath0 is already the newest version (8.2.0-1ubuntu2~18.04).
Answer to question 2:
I think your best bet would be to:
apt-get remove --purge libgfortran4 libquadmath0 gcc-7-base gcc-8-base
apt-get autoremove
reboot (just in case, most likely not needed at all)
install packages again
then it should go back to default / non-conflicting ones
answered Nov 29 at 12:29
janmyszkier
52127
52127
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1097103%2fhow-do-i-fix-mystery-package-dependencies%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Possible duplicate of How do I resolve package conflicts between Ubuntu and GIMP?
– dessert
Dec 21 at 22:38