|
|
## Installer VirtualBox
|
|
|
|
|
|
### Debian 10 (buster)
|
|
|
|
|
|
```bash
|
|
|
echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian buster contrib" > /etc/apt/sources.list.d/virtualbox.list
|
|
|
```
|
|
|
|
|
|
```bash
|
|
|
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
|
|
|
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
|
|
|
```
|
|
|
|
|
|
```bash
|
|
|
apt-get update
|
|
|
apt-get install virtualbox-6.1
|
|
|
``` |
|
|
\ No newline at end of file |