Error installing VirtualBox in Ubuntu 18.04: “Unable to correct problems, you have held broken packages.”












0















When I tried to install VirtualBox using :



sudo apt install virtualbox 


I got the following error stating that the following packages have unmet dependencies:



virtualbox : Depends: virtualbox-dkms (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-source (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-modules
E: Unable to correct problems, you have held broken packages.


I even tried to purge and reinstall using virtualbox-qt and virtualbox-5.2 but was of no use.










share|improve this question

























  • If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

    – Xen2050
    Feb 1 at 11:39
















0















When I tried to install VirtualBox using :



sudo apt install virtualbox 


I got the following error stating that the following packages have unmet dependencies:



virtualbox : Depends: virtualbox-dkms (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-source (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-modules
E: Unable to correct problems, you have held broken packages.


I even tried to purge and reinstall using virtualbox-qt and virtualbox-5.2 but was of no use.










share|improve this question

























  • If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

    – Xen2050
    Feb 1 at 11:39














0












0








0








When I tried to install VirtualBox using :



sudo apt install virtualbox 


I got the following error stating that the following packages have unmet dependencies:



virtualbox : Depends: virtualbox-dkms (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-source (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-modules
E: Unable to correct problems, you have held broken packages.


I even tried to purge and reinstall using virtualbox-qt and virtualbox-5.2 but was of no use.










share|improve this question
















When I tried to install VirtualBox using :



sudo apt install virtualbox 


I got the following error stating that the following packages have unmet dependencies:



virtualbox : Depends: virtualbox-dkms (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-source (>= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed or
virtualbox-modules
E: Unable to correct problems, you have held broken packages.


I even tried to purge and reinstall using virtualbox-qt and virtualbox-5.2 but was of no use.







linux ubuntu virtualbox






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 1 at 11:40









JakeGould

31.7k1097139




31.7k1097139










asked Feb 1 at 10:26









Shaw_witShaw_wit

11




11













  • If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

    – Xen2050
    Feb 1 at 11:39



















  • If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

    – Xen2050
    Feb 1 at 11:39

















If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

– Xen2050
Feb 1 at 11:39





If Ilario Gelmetti's answer doesn't solve it, I'm wondering what your software sources are? Maybe VirtualBox is from a source that's not very compatible with Ubuntu 18.04?

– Xen2050
Feb 1 at 11:39










1 Answer
1






active

oldest

votes


















0














Seems that you missed running an apt update before trying to install VirtualBox:



sudo apt update


If after this you still get the same error message, try listing held packages with



apt-mark showhold


And to “uphold” a specific virtualbox related packages with this command:



sudo apt-mark unhold <package name>





share|improve this answer


























  • the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

    – Shaw_wit
    Feb 1 at 11:50













  • Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

    – Ilario Gelmetti
    Feb 1 at 14:16













Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1400942%2ferror-installing-virtualbox-in-ubuntu-18-04-unable-to-correct-problems-you-ha%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









0














Seems that you missed running an apt update before trying to install VirtualBox:



sudo apt update


If after this you still get the same error message, try listing held packages with



apt-mark showhold


And to “uphold” a specific virtualbox related packages with this command:



sudo apt-mark unhold <package name>





share|improve this answer


























  • the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

    – Shaw_wit
    Feb 1 at 11:50













  • Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

    – Ilario Gelmetti
    Feb 1 at 14:16


















0














Seems that you missed running an apt update before trying to install VirtualBox:



sudo apt update


If after this you still get the same error message, try listing held packages with



apt-mark showhold


And to “uphold” a specific virtualbox related packages with this command:



sudo apt-mark unhold <package name>





share|improve this answer


























  • the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

    – Shaw_wit
    Feb 1 at 11:50













  • Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

    – Ilario Gelmetti
    Feb 1 at 14:16
















0












0








0







Seems that you missed running an apt update before trying to install VirtualBox:



sudo apt update


If after this you still get the same error message, try listing held packages with



apt-mark showhold


And to “uphold” a specific virtualbox related packages with this command:



sudo apt-mark unhold <package name>





share|improve this answer















Seems that you missed running an apt update before trying to install VirtualBox:



sudo apt update


If after this you still get the same error message, try listing held packages with



apt-mark showhold


And to “uphold” a specific virtualbox related packages with this command:



sudo apt-mark unhold <package name>






share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 1 at 11:42









JakeGould

31.7k1097139




31.7k1097139










answered Feb 1 at 11:18









Ilario GelmettiIlario Gelmetti

162




162













  • the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

    – Shaw_wit
    Feb 1 at 11:50













  • Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

    – Ilario Gelmetti
    Feb 1 at 14:16





















  • the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

    – Shaw_wit
    Feb 1 at 11:50













  • Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

    – Ilario Gelmetti
    Feb 1 at 14:16



















the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

– Shaw_wit
Feb 1 at 11:50







the error got reduced to : The following packages have unmet dependencies: virtualbox-qt : Depends: virtualbox (= 5.2.10-dfsg-6ubuntu18.04.1) but it is not going to be installed E: Unable to correct problems, you have held broken packages. The apt-mark showhold does not give any output.

– Shaw_wit
Feb 1 at 11:50















Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

– Ilario Gelmetti
Feb 1 at 14:16







Seems that apt update didn't manage to do its work. Make sure that you have a line with: deb http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse in your /etc/apt/sources.list You can check that with: sudo nano /etc/apt/sources.list

– Ilario Gelmetti
Feb 1 at 14:16




















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1400942%2ferror-installing-virtualbox-in-ubuntu-18-04-unable-to-correct-problems-you-ha%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

Mangá

 ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕