I've just deployed PVE 4.1 on a machine going to be a storage server (samba inside lxc). As theres not that much load, we decided to cut some money and just use an i3-6100. Installer went through without problems, but first boot hangs just 8ms after initrd's kernel kicks in. It took me a while to find out (because i've deployed almost exactly the same system last week successfully - besides the cpu being a Skylake Xeon v5) randomly disabling various kernel modules at grub cmdline. Once, last thing i saw before freezing was the drm module being loaded and i whonder why the heck i need such a thing on a server. Next boot, next try, added
modprobe.disabled=i915 modprobe.disabled=drm modprobe.disabled=drm_kms_helper
to grub kernel cmdline and it worked straight.
Add to /etc/modprobe.d/i915.conf:
blacklist drm_kms_helper
blacklist drm
blacklist i915
and run
update-initramfs -k all -u
and everything works as of next boot.
As for whoever there are also Xeons with integrated GPU, we should investigate this further.
Didn't try with older boards/cpu/pve (might try at home on my laptop). If this is a general issue, this should be added to the default installation.
modprobe.disabled=i915 modprobe.disabled=drm modprobe.disabled=drm_kms_helper
to grub kernel cmdline and it worked straight.
Add to /etc/modprobe.d/i915.conf:
blacklist drm_kms_helper
blacklist drm
blacklist i915
and run
update-initramfs -k all -u
and everything works as of next boot.
As for whoever there are also Xeons with integrated GPU, we should investigate this further.
Didn't try with older boards/cpu/pve (might try at home on my laptop). If this is a general issue, this should be added to the default installation.