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

but, base folder is there...? (see Fig)
Thnx
Post#1 by Moi » 17 Jan 2025, 18:54
Moi
Ed_P
Post#3 by Moi » 17 Jan 2025, 23:21
Code: Select all
guest@porteus:~$ cat /proc/cmdline
quiet BOOT_IMAGE=/boot/syslinux/vmlinuz changes=/porteus/ noauto copy2ram initrd=/boot/syslinux/initrd.xz
Moi
Post#4 by Ed_P » 17 Jan 2025, 23:45
Ed_P
Post#5 by Moi » 18 Jan 2025, 00:33
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 : ....... ..... .?!!
Moi
Post#6 by Ed_P » 18 Jan 2025, 00:43
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
Ed_P
Post#7 by ncmprhnsbl » 18 Jan 2025, 04:49
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; }
ncmprhnsbl
Post#8 by Moi » 18 Jan 2025, 14:41
Moi
Post#9 by Ed_P » 18 Jan 2025, 16:39
Ed_P
Post#10 by Moi » 18 Jan 2025, 18:17
Moi
Post#11 by dreadbird » 18 Jan 2025, 21:06
dreadbird
Post#12 by Moi » 18 Jan 2025, 21:51
Moi
Post#13 by Ed_P » 18 Jan 2025, 23:51
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
Ed_P
Post#14 by dreadbird » 19 Jan 2025, 03:57
dreadbird
Post#15 by Ed_P » 19 Jan 2025, 05:29
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
}
Ed_P