mirror of
https://github.com/netbootxyz/netboot.xyz.git
synced 2026-04-25 23:25:54 +03:00
[GH-ISSUE #1654] Unable to boot Fedora CoreOS from netboot.xyz #2099
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#2099
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 @fbartels on GitHub (Aug 6, 2025).
Original GitHub issue: https://github.com/netbootxyz/netboot.xyz/issues/1654
When trying to install Fedora CoreOS (Distributions: Linux Network Installs (64-bit) -> Fedora CoreOS -> Fedoa CorOS stable) the following error is printed:
The issue seems to be that the file location is wrong. The current release is
https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/42.20250721.3.0/x86_64/fedora-coreos-42.20250721.3.0-live-kernel.x86_64, and the difference islive-kernel**.**x86_64.The locations can be extracted from https://fedoraproject.org/coreos/download?stream=stable#arches.
github.com/netbootxyz/netboot.xyz@fa3fce1b56/roles/netbootxyz/templates/menu/coreos.ipxe.j2 (L37)@antonym commented on GitHub (Aug 8, 2025):
@claude can you validate the present location of the file and resolve the url
@claude[bot] commented on GitHub (Aug 8, 2025):
Claude finished @antonym's task —— View job •
claude/issue-1654-20250808-2231• Create PR ➔Fixed Fedora CoreOS URL Issue ✅
Summary
Fixed the Fedora CoreOS boot issue by correcting the kernel filename format in
roles/netbootxyz/templates/menu/coreos.ipxe.j2:37.Change made:
fedora-coreos-${build_version}-live-kernel-${os_arch}fedora-coreos-${build_version}-live-kernel.${os_arch}The missing dot (.) between "live-kernel" and the architecture was causing the "Operation not permitted" error when trying to boot Fedora CoreOS. This fix aligns with the actual Fedora CoreOS file naming convention.