Dependencies issues in Ubuntu 18.04
I just recently changed my partition sizes on Windows 10. It worked well...but I have Ubuntu installed also and I am having issues with it.
When I boot to Ubuntu OS, every time I am getting a popup dialogue box saying some dependencies are not installed or missing. Here's the screenshot:
I tried to install Network package manually with sudo apt-get install network-manager
but with that, I am getting network-manager is already the newest version (1.10.6-2ubuntu1.1).
.
I don't know how to manually install the other two.
16.04 18.04
add a comment |
I just recently changed my partition sizes on Windows 10. It worked well...but I have Ubuntu installed also and I am having issues with it.
When I boot to Ubuntu OS, every time I am getting a popup dialogue box saying some dependencies are not installed or missing. Here's the screenshot:
I tried to install Network package manually with sudo apt-get install network-manager
but with that, I am getting network-manager is already the newest version (1.10.6-2ubuntu1.1).
.
I don't know how to manually install the other two.
16.04 18.04
You should be doingsudo apt install -f
to try and fix that message!
– George Udosen
Dec 28 '18 at 17:14
I can see there are two packages. One havenetwork-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.
– Kulfy
Dec 28 '18 at 17:18
add a comment |
I just recently changed my partition sizes on Windows 10. It worked well...but I have Ubuntu installed also and I am having issues with it.
When I boot to Ubuntu OS, every time I am getting a popup dialogue box saying some dependencies are not installed or missing. Here's the screenshot:
I tried to install Network package manually with sudo apt-get install network-manager
but with that, I am getting network-manager is already the newest version (1.10.6-2ubuntu1.1).
.
I don't know how to manually install the other two.
16.04 18.04
I just recently changed my partition sizes on Windows 10. It worked well...but I have Ubuntu installed also and I am having issues with it.
When I boot to Ubuntu OS, every time I am getting a popup dialogue box saying some dependencies are not installed or missing. Here's the screenshot:
I tried to install Network package manually with sudo apt-get install network-manager
but with that, I am getting network-manager is already the newest version (1.10.6-2ubuntu1.1).
.
I don't know how to manually install the other two.
16.04 18.04
16.04 18.04
edited Dec 28 '18 at 18:44
mature
1,669522
1,669522
asked Dec 28 '18 at 17:08
SIDDHARTH VARSHNEY
82
82
You should be doingsudo apt install -f
to try and fix that message!
– George Udosen
Dec 28 '18 at 17:14
I can see there are two packages. One havenetwork-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.
– Kulfy
Dec 28 '18 at 17:18
add a comment |
You should be doingsudo apt install -f
to try and fix that message!
– George Udosen
Dec 28 '18 at 17:14
I can see there are two packages. One havenetwork-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.
– Kulfy
Dec 28 '18 at 17:18
You should be doing
sudo apt install -f
to try and fix that message!– George Udosen
Dec 28 '18 at 17:14
You should be doing
sudo apt install -f
to try and fix that message!– George Udosen
Dec 28 '18 at 17:14
I can see there are two packages. One have
network-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.– Kulfy
Dec 28 '18 at 17:18
I can see there are two packages. One have
network-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.– Kulfy
Dec 28 '18 at 17:18
add a comment |
1 Answer
1
active
oldest
votes
Please run the following to fix that issue:
sudo apt update
sudo apt install -f
sudo apt upgrade
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
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%2f1105167%2fdependencies-issues-in-ubuntu-18-04%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
Please run the following to fix that issue:
sudo apt update
sudo apt install -f
sudo apt upgrade
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
add a comment |
Please run the following to fix that issue:
sudo apt update
sudo apt install -f
sudo apt upgrade
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
add a comment |
Please run the following to fix that issue:
sudo apt update
sudo apt install -f
sudo apt upgrade
Please run the following to fix that issue:
sudo apt update
sudo apt install -f
sudo apt upgrade
edited Dec 28 '18 at 17:34
answered Dec 28 '18 at 17:17
George Udosen
19.8k94267
19.8k94267
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
add a comment |
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
1
1
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Why don't you run update before install -f? I think the correct way is to fetch packages index first and the try to recover missing stuff.
– user1330614
Dec 28 '18 at 17:21
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
Yes that's true but sometimes that's not necessary as the system has done so previously.
– George Udosen
Dec 28 '18 at 17:38
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
the upgrade did the job done.
– SIDDHARTH VARSHNEY
Dec 28 '18 at 17:46
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%2f1105167%2fdependencies-issues-in-ubuntu-18-04%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
You should be doing
sudo apt install -f
to try and fix that message!– George Udosen
Dec 28 '18 at 17:14
I can see there are two packages. One have
network-manager
in its name but it is not exactly network-manager. Try installing those mentioned packages.– Kulfy
Dec 28 '18 at 17:18