mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
HACKING: More detailed instructions for VirtualBox
Add more detailed instructions for installing VirtualBox manually on Debian and its derivatives. Signed-off-by: Joseph Nuthalapati <njoseph@riseup.net> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
parent
c69c5f8317
commit
6fa752b7c5
31
HACKING.md
31
HACKING.md
@ -15,14 +15,39 @@ can install latest versions of Git, Vagrant and VirtualBox.
|
||||
$ sudo apt install git virtualbox vagrant
|
||||
```
|
||||
|
||||
For some distro you might need to add Oracle's VirtualBox source
|
||||
(https://download.virtualbox.org/virtualbox/debian) to apt's sources list
|
||||
(typically in /etc/apt/sources.list file) and its key:
|
||||
#### Installing VirtualBox manually
|
||||
|
||||
1. Add Oracle's key to apt's list of accepted keys.
|
||||
|
||||
```bash
|
||||
$ sudo wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
|
||||
```
|
||||
|
||||
2. Create a file under /etc/apt/sources.list.d/ for virtualbox package.
|
||||
|
||||
|
||||
```bash
|
||||
$ sudo touch /etc/apt/sources.list.d/virtualbox.list
|
||||
```
|
||||
|
||||
3. Add the relevant source for your Debian/derivative distribution into the above file.
|
||||
|
||||
Example for Buster:
|
||||
```
|
||||
deb https://download.virtualbox.org/virtualbox/debian buster contrib
|
||||
```
|
||||
|
||||
4. Search and install the latest virtualbox package.
|
||||
|
||||
```bash
|
||||
$ apt search virtualbox
|
||||
|
||||
# virtualbox-6.1
|
||||
# virtualbox-6.0
|
||||
|
||||
$ sudo apt install virtualbox-6.1
|
||||
```
|
||||
|
||||
### For Other GNU/Linux Distributions or *BSDs
|
||||
|
||||
1. Install Git, Vagrant and VirtualBox using your favourite package manager.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user