Advertisement
Guest User

Windows Vagrant

a guest
May 17th, 2016
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. ==========Links==========
  2. https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/windows/
  3. https://az792536.vo.msecnd.net/vms/VMBuild_20150916/Vagrant/IE11/IE11.Win81.Vagrant.zip
  4.  
  5. ==========Vagrantfile==========
  6. Vagrant.configure(2) do |config|
  7. config.vm.box = "8.1"
  8. config.ssh.username="IEUser"
  9. config.ssh.password="Passw0rd!"
  10. end
  11.  
  12. ==========Steps==========
  13. cd 8.1
  14. vagrant box add --name "8.1" "IE11 - Win81.box"
  15. vagrant up
  16.  
  17. ==========ERROR==========
  18. Bringing machine 'default' up with 'virtualbox' provider...
  19. ==> default: Clearing any previously set forwarded ports...
  20. ==> default: Clearing any previously set network interfaces...
  21. ==> default: Preparing network interfaces based on configuration...
  22. default: Adapter 1: nat
  23. ==> default: Forwarding ports...
  24. default: 22 (guest) => 2222 (host) (adapter 1)
  25. ==> default: Booting VM...
  26. ==> default: Waiting for machine to boot. This may take a few minutes...
  27. default: SSH address: 127.0.0.1:2222
  28. default: SSH username: IEUser
  29. default: SSH auth method: password
  30. ==> default: Machine booted and ready!
  31. ==> default: Checking for guest additions in VM...
  32. ==> default: Mounting shared folders...
  33. default: /vagrant => C:/Users/User/Desktop/Vagrant Boxes/8.1
  34. The following SSH command responded with a non-zero exit status.
  35. Vagrant assumes that this means the command failed!
  36.  
  37. mkdir -p C:\Users\IEUser>
  38.  
  39. Stdout from the command:
  40.  
  41.  
  42.  
  43. Stderr from the command:
  44.  
  45. sh: sudo: command not found
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement