Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. Linux 4.11.9-1-ARCH
  2. QEMU emulator version 2.9.0
  3. Vagrant 1.9.7
  4. libvirtd (libvirt) 3.5.0
  5. vagrant-libvirt (0.0.40)
  6.  
  7. > lsmod | grep kvm
  8. kvm_intel 192512 0
  9. kvm 528384 1 kvm_intel
  10. irqbypass 16384 1 kvm
  11.  
  12. > lsmod | grep virtio
  13. 9pnet_virtio 20480 0
  14. virtio_ring 20480 1 9pnet_virtio
  15. 9pnet 73728 1 9pnet_virtio
  16. virtio 16384 1 9pnet_virtio
  17.  
  18. # Vagrantfile:
  19.  
  20. Vagrant.configure("2") do |config|
  21. config.vm.box = "MarkZaslavskiy/jessie64_with_kernel_headers"
  22. config.ssh.username = "vagrant"
  23. config.ssh.password = "vagrant"
  24. end
  25.  
  26. > vagrant up --provider libvirt
  27.  
  28. Bringing machine 'default' up with 'libvirt' provider...
  29. ==> default: Creating image (snapshot of base box volume).
  30. ==> default: Creating domain with the following settings...
  31. ==> default: -- Name: virtual_default
  32. ==> default: -- Domain type: kvm
  33. ==> default: -- Cpus: 1
  34. ==> default: -- Feature: acpi
  35. ==> default: -- Feature: apic
  36. ==> default: -- Feature: pae
  37. ==> default: -- Memory: 512M
  38. ==> default: -- Management MAC:
  39. ==> default: -- Loader:
  40. ==> default: -- Base box: MarkZaslavskiy/jessie64_with_kernel_headers
  41. ==> default: -- Storage pool: default
  42. ==> default: -- Image: /var/lib/libvirt/images/virtual_default.img (11G)
  43. ==> default: -- Volume Cache: default
  44. ==> default: -- Kernel:
  45. ==> default: -- Initrd:
  46. ==> default: -- Graphics Type: vnc
  47. ==> default: -- Graphics Port: 5900
  48. ==> default: -- Graphics IP: 127.0.0.1
  49. ==> default: -- Graphics Password: Not defined
  50. ==> default: -- Video Type: cirrus
  51. ==> default: -- Video VRAM: 9216
  52. ==> default: -- Sound Type:
  53. ==> default: -- Keymap: en-us
  54. ==> default: -- TPM Path:
  55. ==> default: -- INPUT: type=mouse, bus=ps2
  56. ==> default: ================
  57. ==> default: Machine id: 297f6407-3009-4901-bcac-c744818f7334
  58. ==> default: Should be mounting folders
  59. ==> default: /vagrant, opts: {:guestpath=>"/vagrant", :hostpath=>"/home/krikun/virtual", :disabled=>false, :__vagrantfile=>true, :target=>"/vagrant", :accessmode=>"passthrough", :mount=>true, :readonly=>nil, :mount_tag=>"4af4c62dae52788939fb5635961ccbf"}
  60. ==> default: Creating shared folders metadata...
  61. ==> default: Starting domain.
  62. There was an error talking to Libvirt. The error message is shown
  63. below:
  64.  
  65. Call to virDomainCreateWithFlags failed: internal error: process exited while connecting to monitor: 2017-07-24T14:41:46.454460Z qemu-system-x86_64: -chardev pty,id=charserial0: char device redirected to /dev/pts/3 (label charserial0)
  66. 2017-07-24T14:41:46.477103Z qemu-system-x86_64: -device virtio-9p-pci,id=fs0,fsdev=fsdev-fs0,mount_tag=4af4c62dae52788939fb5635961ccbf,bus=pci.0,addr=0x5: 9pfs Failed to initialize fs-driver with id:fsdev-fs0 and export path:/home/krikun/virtual
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement