mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-04-25 07:05:56 +03:00
[GH-ISSUE #1719] CachyOS not loading desktop #2117
Labels
No labels
Hacktoberfest
Hacktoberfest
bootloader
bsd
bug
confirmed
documentation
duplicate
enhancement
enhancement
enhancement
eol
experimental-merged
freebsd
help wanted
invalid
investigate
ipxe
linux
live-os
memdisk
menu
no-issue-activity
no-issue-activity
pull-request
released
todo
upstream
windows
windows
work-in-progress
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/netboot.xyz#2117
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ghost on GitHub (Dec 10, 2025).
Original GitHub issue: https://github.com/netbootxyz/netboot.xyz/issues/1719
I've been trying to figure it out, but I think this is a weird bug. CachyOS does load in a VM although bit laggy, but when I have tried to run it on actual hardware, it gets stuck at the point where it's supposed to start loading desktop environment. All I get on my screen is "_" that's not blinking and no matter how long I wait nothing happens.
I don't think it's a hardware issue because this computer is even running now CachyOS installed from USB-stick, not to mention other installers from netboot.xyz runs just fine like Debian and EndeavourOS.
I don't know if knowing the actual hardware will help, but.. CPU: Ryzen 7 3700X, GPU: Nvidia 4060 TI, Motherboard: B550-F, RAM: 64G DDR4.
And the Netboot.xyz itself is being run from Raspberry Pi 5 and I'm using iPXE as the booting method. I have not tried other booting methods yet to see if the issue persists on those too.
@wfpearl commented on GitHub (Dec 15, 2025):
I was having the same issue today. I fixed it by modifying line 24 in
live-cacheos.ipxefromkernel ${url}vmlinuz ${ipparam} archiso_http_srv=${url} cow_spacesize=10G copytoram=auto module_blacklist=nvidia,nvidia_modeset,nvidia_uvm,nvidia_drm,pcspkr nouveau.modeset=1 i915.modeset=1 radeon.modeset=1 nvme_load=yes initrd=initrd.magic console=tty1 initrd=initrd.magic ${cmdline}to
kernel ${url}vmlinuz ${ipparam} archiso_http_srv=${url} cow_spacesize=10G copytoram=auto module_blacklist=pcspkr nouveau.modeset=1 i915.modeset=1 radeon.modeset=1 nvme_load=yes initrd=initrd.magic console=tty1 initrd=initrd.magic ${cmdline}removing the nvidia modules from the blocklist allowed me to boot into the live environment without issue.