Tiny Core Linux
Tiny Core Base => TCB Q&A Forum => Topic started by: zmaster on February 08, 2017, 04:16:42 AM
-
I add grub2 menu lines in /etc/grub.d/40_custom file:
menuentry 'Tiny Core - iso' --class core --class gnu-linux --class gnu {
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
set isofile="/home/user/CorePlus-current.iso"
loopback loop ${isofile}
linux (loop)/boot/vmlinuz iso=${isofile}
initrd (loop)/boot/core.gz loglevel=3 cde showapps lst=xibase.lst base desktop=flwm_topside
}
Then i rebooted the machine and try to boot, but only text console loaded:
tc@box~:
How to boot in graphic mode?
I am using AMD Athlon 900 mhz, 768 mb ram, 32 mb Nvidia graphic card.
-
Specify the full path to the ISO file including mount point (Core mounts at /mnt).
F.e.
set isofile="/mnt/sda1/home/user/CorePlus-current.iso"
Also, add all your boot codes to the linux line, not the initrd line.
-
Correction, the ${isofile} varuable won't work with the loopback command.
So do something like this
set isofile="/home/user/CorePlus-current.iso"
loopback loop (hd0,msdos1)${isofile}
linux (loop)/boot/vmlinuz iso=/mnt/sda1${isofile}
-
Thanks. It helped.