Menu

Skywave Linux 5.0.1 (Boot Bug Fix and Kernel Upgrade)

Fellow Linux and SDR users, Shortwave Listeners,

Skywave Linux is being updated to version 5.0.1 and will be uploaded to SourceForge within a matter of hours. The system has received a kernel upgrade to Linux Xanmod kernel 6.6, along with a bug fix which prevented proper booting of the iso file on flash drives set up using Rufus or Ventoy. Apologies for the inconvenience if this gave you trouble.

If you set up a bootable Skywave Linux flash drive and received an error message complaining that the bootloader could not load the kernel, here is the fix for Skywave Linux 5.0.0:

  1. navigate in the root file system to the configuration file /boot/grub/grub.cfg
  2. edit the menu entries so they point to the correct file names: initrd.img and vmlinuz (without version numbers)

The menu entries should look like this:

# Live boot
menuentry "Live system (amd64)" --hotkey=l {
    linux   /live/vmlinuz boot=live quiet splash findiso=${iso_path}
    initrd  /live/initrd.img
}
menuentry "Live system (amd64 fail-safe mode)" {
    linux   /live/vmlinuz boot=live components memtest noapic noapm nodma nomce nolapic nosmp nosplash vga=788
    initrd  /live/initrd.img
}

If you are using a multiboot SSD or hard drive set up with an old fashioned grub2 configuration, you can use a grub config similar to this example, which runs on my laptop (booting in bios / non-efi mode):

set root=(hd0,1)
set default=0
set timeout=10
set gfxmode=1024x768
insmod ext2

menuentry 'Skywave Liinux v5.0 (Debian)' {
    set isofile="/isofiles/skywavelinux-5.0.0.iso"
    loopback loop $isofile
    linux (loop)/live/vmlinuz boot=live findiso=$isofile threadirqs mitigations=off
    initrd (loop)/live/initrd.img
}

menuentry 'Skywave Liinux NEXT v5.0.1 (Debian)' {
    set isofile="/isofiles/skywavelinux-5.0.1.iso"
    loopback loop $isofile
    linux (loop)/live/vmlinuz boot=live findiso=$isofile threadirqs mitigations=off
    initrd (loop)/live/initrd.img
}

I hope this helps! The new iso will be available shortly.

Cheers,
Phil Collier / AB9IL
Skywave Linux

Posted by Brightflash64 2024-02-23 Labels: boot skywave linux grub boot debian boot with rufus boot with ventoy

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.