Projet

Général

Profil

Virtualbox » Historique » Version 3

florian, 12/06/2019 01:02

1 1 pizzacoca
# Virtualbox
2
3 2 pizzacoca
**Installation**
4 1 pizzacoca
Une fois le systeme a jour avec les dépots backports et contrib :
5
6
~~~
7
apt install -t stretch-backports virtualbox-qt
8
~~~
9 2 pizzacoca
10
11
12
**Ajout d'un utilisateur**
13
14
~~~
15
sudo usermod -a -G vboxusers nomutilisateur
16
~~~
17
18
**Pb de paquets**
19
20
~~~
21
sudo apt-get install -t stretch-backports virtualbox-dkms
22
~~~
23
24
**Probleme rencontré**
25
26
> `WARNING: The character device /dev/vboxdrv does not exist.
27
	 Please install the virtualbox-dkms package and the appropriate
28
	 headers, most likely linux-headers-amd64.
29
	 You will not be able to start VMs until this problem is fixed.`
30
31
Non résolu 
32
33
~~~
34
sudo apt-get install -t stretch-backports linux-headers-amd64
35
~~~
36
37
Donne :
38
> `linux-headers-amd64 is already the newest version (4.19+105~bpo9+1).`
39 3 florian
40
Résolution aveugle (site en teuton) : https://debianforum.de/forum/viewtopic.php?t=171930
41
42
~~~
43
apt install linux-headers-$(uname -r)
44
dpkg --audit
45
dpkg -i virtualbox-6.0_6.0.0-127566~Debian~stretch_amd64.deb
46
modprobe vboxdrv
47
~~~