Em dezembro de 2018, eu pude usar uma versão ligeiramente modificada da resposta da Thermionix para inicializar um arquivo slitaz-rolling.iso
. Meu sistema host é Lubuntu 18.10 com um sistema de arquivos ext4
.
Adicionei o seguinte a /etc/grub.d/40_custom
:
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "SliTaz Rolling 20181204" {
set isofile="/home/[USER]/slitaz-rolling.iso"
loopback loop $isofile
linux (loop)/boot/bzImage lang=en kmap=us autologin isofrom=$isofile boot=live noeject noprompt root=/dev/null
initrd (loop)/boot/rootfs4.gz (loop)/boot/rootfs3.gz (loop)/boot/rootfs2.gz (loop)/boot/rootfs1.gz
}
Depois de editar /etc/grub.d/40_custom
, corri:
$ sudo update-grub
$ sudo shutdown -r now
Eu então pude selecionar SliTaz Rolling 20181204
do menu do Grub2 e inicializar no SliTaz.