lspci | grep -iE 'vga|hdmi'
This fixed things for my Beelink n100 Minis12 Pro. Thank you so much!I was installing VE 7.2 on my brand new host box... first ran into black screen after install begins -- see separate thread on that.
Then, install failed, with the X server conking out before anything graphical happened. Here's the generic solution:
1) Hit ctrl-alt-F2 to see the error screen from the install (and ctrl-alt-F1 to get back to the console )
My particular error was:Cannot run in framebuffer mode. Please specify busIDs for all framebuffer devices
2) (Most likely your video device is not being properly handled) Here's how to find it and force generic VGA support..
This should show the vga compatible display device. If not, just look at lspci. (If you see no device, look elsewhere for help. This thread won't do it.) For me, my nVidia card is 01:00.0
3) Create a driver description file in/usr/share/X11/xorg.conf.d/
Like this: (I called minedriver-nvidia.conf
)
Code:Section "Device" Identifier "Card0" Driver "fbdev" BusID "pci0:01:0:0:" EndSection
4) Then restart X
A couple of blinks and the first install script was on my screen! (EULA accept box)
That's somewhat bad advice:Depending on which text editor you used. If you went by the Youtube guide and used vi - it's ESC, ; (semicolon), then type wq (w - write changes; q - exit) and enter.
I am curious: I've never heard of a pure HDMI video interface card (ie one that says it is "HDMI"). What doesChatGPT gave me this snippet to identify VGA or HDMI, which I used.
Code:lspci | grep -iE 'vga|hdmi'
lspci | grep -i hdmi
show on your system? Every sample I can find shows "VGA compatible" for any video, and "HDMI" shows up on the audio controller (which doesn't matter for this.) lspci | grep -i vga
I've been stuck in this step for so long, thank you for unblocking all of usI was installing VE 7.2 on my brand new host box... first ran into black screen after install begins -- see separate thread on that.
Then, install failed, with the X server conking out before anything graphical happened. Here's the generic solution:
1) Hit ctrl-alt-F2 to see the error screen from the install (and ctrl-alt-F1 to get back to the console )
My particular error was:Cannot run in framebuffer mode. Please specify busIDs for all framebuffer devices
2) (Most likely your video device is not being properly handled) Here's how to find it and force generic VGA support..
This should show the vga compatible display device. If not, just look at lspci. (If you see no device, look elsewhere for help. This thread won't do it.) For me, my nVidia card is 01:00.0
3) Create a driver description file in/usr/share/X11/xorg.conf.d/
Like this: (I called minedriver-nvidia.conf
)
Code:Section "Device" Identifier "Card0" Driver "fbdev" BusID "pci0:01:0:0:" EndSection
4) Then restart X
A couple of blinks and the first install script was on my screen! (EULA accept box)
You saved my day!!!!!Here's how I successfully installed Proxmox VE 8.1:
At the installation screen, I scrolled down to 'Terminal debug mode'.
Then, I pressed the "e" key.
Next, I removed "quiet splash=silent".
I replaced it with "nomodeset".
Finally, I pressed Control + X to execute it.
This led to a successful installation via the Terminal installer.
I hope this helps