Virtualbox dev env ( cluster) Guest not initiliazed

Drummy

New Member
Mar 23, 2023
1
0
1
Hi , i'm trying to setting up a Dev env , for my cluster Proxmox, before going on my Baremetal.
virtualbox version : 7.0
i'm actually on Arch Linux this is my config =>
Bash:
                 `ooo/                   OS: Arch Linux x86_64
                `+oooo:                  Host: 20W0CTO1WW ThinkPad T14 Gen 2i
               `+oooooo:                 Kernel: 6.2.7-arch1-1
               -+oooooo+:                Uptime: 31 mins
             `/:-:++oooo+:               Packages: 982 (pacman)
            `/++++/+++++++:              Shell: zsh 5.9
           `/++++++++++++++:             Resolution: 1920x1080
          `/+++ooooooooooooo/`           DE: Hyprland
         ./ooosssso++osssssso+`          Theme: Adwaita [GTK3]
        .oossssso-````/ossssss+`         Icons: Adwaita [GTK3]
       -osssssso.      :ssssssso.        Terminal: kitty
      :osssssss/        osssso+++.       CPU: 11th Gen Intel i7-1165G7 (8) @ 4.700GHz
     /ossssssss/        +ssssooo/-       GPU: Intel TigerLake-LP GT2 [Iris Xe Graphics]
   `/ossssso+/:-        -:/+osssso+-     Memory: 21371MiB / 31821MiB
i create my cluster with the following tools

1) Vagrant to crate 3 Debian machine with 3 Networks Interfaces

Bash:
Vagrant.configure('2') do |config|
  config.ssh.insert_key = false

  # default router
  # config.vm.provision 'shell', path: 'disk-extend.sh'
  #
  config.vm.provision 'ansible' do |ansible|
    ansible.playbook = 'playbook.yaml'
  end

  config.vm.provider 'virtualbox' do |v|
    v.linked_clone = true
    v.memory = 8 * 1024
    v.cpus = 4
    v.customize ['modifyvm', :id, '--nested-hw-virt', 'on']
    v.customize ['modifyvm', :id, '--nicpromisc2', 'allow-all']
    v.customize ['modifyvm', :id, '--nicpromisc3', 'allow-all']
    v.customize ['modifyvm', :id, '--vram', '16']
    v.customize ['modifyvm', :id, '--graphicscontroller', 'vmsvga']
    v.customize ['modifyvm', :id, '--accelerate3d', 'on']
  end
  (1..N).each do |i|
    # config.vbguest.auto_update = false if Vagrant.has_plugin?('vagrant-vbguest')
    config.disksize.size = '30GB'
    config.vm.define "node-#{i}" do |node|
      node.vm.box = IMAGE_NAME
      node.vm.network 'private_network', apdapter: 2, ip: "192.168.56.#{i + 10}"
      node.vm.network 'private_network', apdapter: 3, ip: "10.0.0.#{i + 10}"
      node.vm.hostname = "lab-node0#{i}.local"
      node.vm.network 'forwarded_port', guest: 8006, host: "801#{5 + i}"
    end
  end
end
2) Ansible to install and configure Proxmox Cluster lae.proxmox
all tthese steps succeed !
i create a small vm based on a debian ISO
here is my `pveversion -V` and `qm config 100`
Bash:
proxmox-ve: 7.4-1 (running kernel: 5.15.102-1-pve)
pve-manager: 7.4-3 (running version: 7.4-3/9002ab8a)
pve-kernel-5.15: 7.3-3
pve-kernel-5.15.102-1-pve: 5.15.102-1
ceph-fuse: 14.2.21-1
corosync: 3.1.7-pve1
criu: 3.15-1+pve-1
glusterfs-client: 9.2-1
ifupdown: residual config
ifupdown2: 3.1.0-1+pmx3
ksm-control-daemon: 1.4-1
libjs-extjs: 7.0.0-1
libknet1: 1.24-pve2
libproxmox-acme-perl: 1.4.4
libproxmox-backup-qemu0: 1.3.1-1
libproxmox-rs-perl: 0.2.1
libpve-access-control: 7.4-1
libpve-apiclient-perl: 3.2-1
libpve-common-perl: 7.3-3
libpve-guest-common-perl: 4.2-4
libpve-http-server-perl: 4.2-1
libpve-rs-perl: 0.7.5
libpve-storage-perl: 7.4-2
libspice-server1: 0.14.3-2.1
lvm2: 2.03.11-2.1
lxc-pve: 5.0.2-2
lxcfs: 5.0.3-pve1
novnc-pve: 1.4.0-1
proxmox-backup-client: 2.3.3-1
proxmox-backup-file-restore: 2.3.3-1
proxmox-kernel-helper: 7.4-1
proxmox-mail-forward: 0.1.1-1
proxmox-mini-journalreader: 1.3-1
proxmox-offline-mirror-helper: 0.5.1-1
proxmox-widget-toolkit: 3.6.3
pve-cluster: 7.3-3
pve-container: 4.4-3
pve-docs: 7.4-2
pve-edk2-firmware: 3.20221111-2
pve-firewall: 4.3-1
pve-firmware: 3.6-4
pve-ha-manager: 3.6.0
pve-i18n: 2.11-1
pve-qemu-kvm: 7.2.0-8
pve-xtermjs: 4.16.0-1
qemu-server: 7.4-2
smartmontools: 7.2-pve3
spiceterm: 3.2-2
swtpm: 0.8.0~bpo11+3
vncterm: 1.7-1
zfsutils-linux: 2.1.9-pve1

Bash:
balloon: 0
boot: order=scsi0;ide2
cores: 3
ide2: local:iso/debian-11.6.0-amd64-netinst.iso,media=cdrom,size=388M
memory: 4096
meta: creation-qemu=7.2.0,ctime=1679574966
name: fd
numa: 0
ostype: l26
scsi0: local:100/vm-100-disk-0.qcow2,iothread=1,size=32G
scsihw: virtio-scsi-single
smbios1: uuid=6b55969c-fcd4-4541-9149-724c60de17d9
sockets: 1
vmgenid: d7a38504-4aa5-4419-9f10-ba72043ef3f5
but i beeing stuck at the following message `guest has not initialized the display (yet)`



any idea why ?

NB: i have the same behaviour when i follow the proxmox wiki and the latest ISO, without vagrant.
 
Last edited:

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!