Skip to content

Instantly share code, notes, and snippets.

@fat-tire
Last active April 28, 2017 22:57
Show Gist options
  • Save fat-tire/9413f8554f317a999b81142782d058b3 to your computer and use it in GitHub Desktop.
Save fat-tire/9413f8554f317a999b81142782d058b3 to your computer and use it in GitHub Desktop.
How to install virtualbox 5.0 (such as 5.0.38) w/ubuntu 7.04

Hi! You're lucky enough to have stumbled onto this link.

Here's what you do:

  1. Uninstall previous virtualboxes

    sudo apt remove virtualbox-5.0

  2. Download one of the virtualbox 5.0s such as 5.0.38 from the virtualbox site. The xenial will do.

  3. Now install it like this:

    sudo dpkg -i --ignore-depends=libvpx3 virtualbox-5.0_5.0.38-114632-Ubuntu-xenial_amd64.deb

  4. Make sure you have libvpx4 installed:

    sudo apt-get install libvpx4

For step #5 you have two options:

5a. Downloand/install vpx3 manually. It's at:

 http://packages.ubuntu.com/xenial/amd64/libvpx3/download
 
 sudo dpkg -i libvpx3_1.5.0-2ubuntu1_amd64.deb

5b. Link libvpx4 to libvpx3:

 cd /lib/x86_64-linux-gnu/
 ln -s libvpx.so.4.1.0 libvpx.so.3

That's it! ft

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment