aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/doc/source/install/known_issues.rst
blob: 84d50940b6e4241b28dfdcf534fc91af48e6e9aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
============
Known Issues
============

Virtualbox guest additions conflict with shared directories
-----------------------------------------------------------

If the **vagrant-vbguest** plugin is installed on the host, then an
updated version of the Virtualbox guest additions will be installed
on the guest in the /opt directory.  Once this projects Vagrantfile
mounts the ./opt directory on the host to the /opt directory on the
guest during the provisioning process, the guest addtions on the
guest are hidden and subsequent mounts of shared directories with the
host will fail.

The simplest workaround appears to be uninstalling the
*vagrant-vbguest* plugin on the host system.  This has been observed
to work on a Windows 10 host using virtualbox 5.1.26.

Check if vagrant-vbguest plugin is installed

- Linux or Mac

.. code-block:: console

    $ vagrant plugin list
.. end

- Windows

.. code-block:: console

    C:\> vagrant plugin list
.. end

Remove vagrant-vbguest plugin

- Linux or Mac

.. code-block:: console

    $ vagrant plugin uninstall vagrant-vbguest
.. end

- Windows

.. code-block:: console

    C:\> vagrant plugin uninstall vagrant-vbguest
.. end