Problems when installing virtual-box
up vote
0
down vote
favorite
I installed virtual box, and am having problems running it via terminal.
I believe I have tried it both by installing the package from their website for my configuration and via the command-line.
I receive this error.
VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/usr/lib/virtualbox/VirtualBox.so",) failed: libdouble-conversion.so.1: cannot open shared object file: No such file or directory
Can anybody give me the play by play on how to play around with these lib files that seem to jam up so many people?
Thanks
virtualbox
add a comment |
up vote
0
down vote
favorite
I installed virtual box, and am having problems running it via terminal.
I believe I have tried it both by installing the package from their website for my configuration and via the command-line.
I receive this error.
VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/usr/lib/virtualbox/VirtualBox.so",) failed: libdouble-conversion.so.1: cannot open shared object file: No such file or directory
Can anybody give me the play by play on how to play around with these lib files that seem to jam up so many people?
Thanks
virtualbox
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and usedpkg -i filename.deb
.
– an actual toaster
Dec 12 at 3:27
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Runsudo apt update
andsudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.
– user535733
Dec 12 at 5:10
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I installed virtual box, and am having problems running it via terminal.
I believe I have tried it both by installing the package from their website for my configuration and via the command-line.
I receive this error.
VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/usr/lib/virtualbox/VirtualBox.so",) failed: libdouble-conversion.so.1: cannot open shared object file: No such file or directory
Can anybody give me the play by play on how to play around with these lib files that seem to jam up so many people?
Thanks
virtualbox
I installed virtual box, and am having problems running it via terminal.
I believe I have tried it both by installing the package from their website for my configuration and via the command-line.
I receive this error.
VirtualBox: supR3HardenedMainGetTrustedMain: dlopen("/usr/lib/virtualbox/VirtualBox.so",) failed: libdouble-conversion.so.1: cannot open shared object file: No such file or directory
Can anybody give me the play by play on how to play around with these lib files that seem to jam up so many people?
Thanks
virtualbox
virtualbox
asked Dec 12 at 1:05
Robert Pettersen
11
11
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and usedpkg -i filename.deb
.
– an actual toaster
Dec 12 at 3:27
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Runsudo apt update
andsudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.
– user535733
Dec 12 at 5:10
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago
add a comment |
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and usedpkg -i filename.deb
.
– an actual toaster
Dec 12 at 3:27
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Runsudo apt update
andsudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.
– user535733
Dec 12 at 5:10
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and use
dpkg -i filename.deb
.– an actual toaster
Dec 12 at 3:27
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and use
dpkg -i filename.deb
.– an actual toaster
Dec 12 at 3:27
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Run
sudo apt update
and sudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.– user535733
Dec 12 at 5:10
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Run
sudo apt update
and sudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.– user535733
Dec 12 at 5:10
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago
add a comment |
active
oldest
votes
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',
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%2f1100182%2fproblems-when-installing-virtual-box%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f1100182%2fproblems-when-installing-virtual-box%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
How did you install VirtualBox? The proper way is to download the file from virtualbox.org/wiki/Linux_Downloads and use
dpkg -i filename.deb
.– an actual toaster
Dec 12 at 3:27
@anactualtoaster politely disagree: The proper way to install is from the Ubuntu repositories, unless you a compelling reason not to. Most folks don't have a compelling reason.
– user535733
Dec 12 at 5:02
Step 1: Clean up everything you have tried. If you added repositories, uninstall all the software you added from those repositories. Uninstall the packages you (failed to) install. Step 2: Run
sudo apt update
andsudo apt upgrade
. If there are any errors, post the complete output (not a summary). If there are no errors, just say so. This is a test that you completed Step 1 properly. Then you will be ready for Step 3.– user535733
Dec 12 at 5:10
I am working on sudo apt upgrade. It is taking awhile because I installed Kali tools. In doing the addition of the virtual-box repository to the sources.list in /etc/apt , since I am running the latest ubuntu ls, would I add deb download.virtualbox.org/virtualbox/debian 'bionic' contrib? It is a little ambigious if you add the '<bionic>' or without the greater than/ less than symbols. I assume the debian dist, bionic-beaver, would just be described as bionic.
– Robert Pettersen
yesterday
Welp installing katoolin over ubuntu did not go so well. I ended up reinstalling ubuntu and in the process the virtualbox install went great. I now have a virtual machine of kali in case I want to learn with the whole suite of pentesting and security tools. That is great. Thank you for the warm response community / user535733!
– Robert Pettersen
12 hours ago