Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. If you ever encounter this error:
  2.  
  3. ```bash
  4. Vagrant attempted to execute the capability 'configure_networks'
  5. on the detect guest OS 'linux', but the guest doesn't
  6. support that capability. This capability is required for your
  7. configuration of Vagrant. Please either reconfigure Vagrant to
  8. avoid this capability or fix the issue by creating the capability.
  9. ```
  10.  
  11. Create a file `/etc/os-release`
  12.  
  13. ```bash
  14. NAME="Ubuntu"
  15. VERSION="12.04 LTS, Precise Pangolin"
  16. ID=ubuntu
  17. ID_LIKE=debian
  18. PRETTY_NAME="Ubuntu precise (12.04 LTS)"
  19. VERSION_ID="12.04"
  20. ```
  21.  
  22. Then run
  23.  
  24. ```bash
  25. vagrant reload
  26. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement