On real server hardware (IPMI/BMC AST chip + nomodeset) the VESA framebuffer is set by BIOS at whatever resolution it chooses (often 1024x768 or 1280x1024). The hardcoded 1920x1080 Modeline caused X to fail → LightDM crash-loop → SOL console flooded with systemd messages. - Remove Monitor section / Modeline from xorg.conf — fbdev now uses whatever framebuffer resolution the kernel provides - Add lightdm.service.d/bee-limits.conf: RestartSec=10, max 3 restarts per 60s so headless hardware doesn't spam the console Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
210 B
Plaintext
12 lines
210 B
Plaintext
Section "Device"
|
|
Identifier "fbdev"
|
|
Driver "fbdev"
|
|
Option "fbdev" "/dev/fb0"
|
|
EndSection
|
|
|
|
Section "Screen"
|
|
Identifier "screen0"
|
|
Device "fbdev"
|
|
DefaultDepth 24
|
|
EndSection
|