Development notes

Thoughts, notes and ideas about development

Troubleshooting Proxmox Installation Issues: Fixing Black Screen Problem

2023-05-20 2 min read Home Lab

Introduction

Encountering difficulties during the installation process can be frustrating, especially when you’re eager to set up your Proxmox server. One common issue is a black screen that appears after initiating the installation. In this blog post, I’ll share two effective solutions to help you overcome this problem specifically when using a 4K monitor and an older graphics card. Follow these steps in order, starting with the first solution. If it doesn’t resolve the issue, proceed to the second solution.

My Home Lab Specs:

  • Processor: Ryzen 5500
  • RAM: 32GB
  • Graphics Card: GeForce 730
  • Storage: SSD and HDD drives

Solution 1: Updating the grub command

  1. During the Proxmox install boot menu, select “Install Proxmox” and press “e” to edit the command.
  2. Locate the line that says quiet splash = silent and replace it with nomodeset.
  3. Press F10 to continue the installation.
  4. The installation should proceed without encountering the black screen problem.

Solution 2: Creating a Nvidia driver description

  1. If the first solution doesn’t work, switch to another terminal by using the hotkey combination Ctrl + Alt + F1, Ctrl + Alt + F2, and so on.
  2. On one of the terminals, you might see an error message like: Unable to connect to the X server: Resource temporarily unavailable.
  3. Create a driver description file at /usr/share/X11/xorg.conf.d/driver-nvidia.conf with the following content:
Section “Device”
    Identifier “Card0”
    Driver “fbdev”
    BusID “pci0:01:0:0:”
EndSection
  1. Run the command:
xinit -- -dpi 96 >/dev/tty2 2>&1
  1. The installation process should start, and you should be able to see it on the monitor.

By following these steps, you can resolve the black screen issue and successfully install Proxmox on your system

comments powered by Disqus