blob: 84d50940b6e4241b28dfdcf534fc91af48e6e9aa [file] [log] [blame]
Victor Moralesd4036482017-08-15 17:54:14 -05001============
2Known Issues
3============
4
5Virtualbox guest additions conflict with shared directories
6-----------------------------------------------------------
7
8If the **vagrant-vbguest** plugin is installed on the host, then an
9updated version of the Virtualbox guest additions will be installed
10on the guest in the /opt directory. Once this projects Vagrantfile
11mounts the ./opt directory on the host to the /opt directory on the
12guest during the provisioning process, the guest addtions on the
13guest are hidden and subsequent mounts of shared directories with the
14host will fail.
15
16The simplest workaround appears to be uninstalling the
17*vagrant-vbguest* plugin on the host system. This has been observed
18to work on a Windows 10 host using virtualbox 5.1.26.
19
20Check if vagrant-vbguest plugin is installed
21
22- Linux or Mac
23
24.. code-block:: console
25
26 $ vagrant plugin list
27.. end
28
29- Windows
30
31.. code-block:: console
32
33 C:\> vagrant plugin list
34.. end
35
36Remove vagrant-vbguest plugin
37
38- Linux or Mac
39
40.. code-block:: console
41
42 $ vagrant plugin uninstall vagrant-vbguest
43.. end
44
45- Windows
46
47.. code-block:: console
48
49 C:\> vagrant plugin uninstall vagrant-vbguest
50.. end