ERROR base folder not at : ....... ..... .. https://ibb.co/xhyVJWg

but, base folder is there...? (see Fig)
Thnx
Code: Select all
guest@porteus:~$ cat /proc/cmdline
quiet BOOT_IMAGE=/boot/syslinux/vmlinuz changes=/porteus/ noauto copy2ram initrd=/boot/syslinux/initrd.xz
is this a problem because i am currently using /porteus 5.01 and it is fully functional even without those update? (so when i go to performing update check) ERROR base folder not at : ....... ..... .?!!
Code: Select all
~# uname -as:~$ ./SysSnapshot.sh
Linux porteus.example.net 6.8.10-porteus #1 SMP PREEMPT_DYNAMIC Fri May 17 18:09:34 MSK 2024 x86_64 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz GenuineIntel GNU/Linux
~# cat /etc/porteus/*
001-core.xzm:20241212
002-xorg.xzm:20241212
002-xtra.xzm:20240924
003-cinnamon.xzm:20240924
initrd.xz:20230923
odd .. this is these lines in /opt/porteus-scripts/update-porteus script:
Code: Select all
BASEFOLDER=$PORTDIR/base
[ ! -e $BASEFOLDER/000-kernel*.xzm ] && { sayerror "Base folder not at: $BASEFOLDER"; cleanup; }
I install grub2 using the Grub2Win app.
I don't recommend this for a computer's bootable hard drive. This old GTP discussion might interest you: Uefi and porteus 3.0
Code: Select all
menuentry " Porteus 5.0 USB - EFI" --class slackware --class user-icon-porteus {
set bootmgr=/EFI/boot/bootx64.efi #grubx64.efi # bootx64.efi
set bootdrv=$root
search -f $bootmgr --set=root
echo USB: $root
sleep -v -i 4
if [ $root != $bootdrv ]; then
chainloader $bootmgr
else
echo "----------------------------------------"
echo USB drive NOT found.
echo
sleep -v -i 10
fi
set root=$bootdrv
}
menuentry " Porteus 5.0 USB - AF'" --class slackware --class user-icon-porteus {
set bootmgr=/boot/syslinux/vmlinuz
set bootparms="volume=33 reboot=cold extramod=/Modules" # changes=EXIT:/changes/porteussave.dat"
set bootdrv=$root
search -f $bootmgr --set=root
if [ $root != $bootdrv ]; then
linux /boot/syslinux/vmlinuz $bootparms
initrd /boot/syslinux/initrd.xz
else
echo "----------------------------------------"
echo USB drive NOT found.
echo
sleep -v -i 10
fi
set root=$bootdrv
}