WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Is there a way to boot Tiny Core from .iso on Ventoy (GPT)?  (Read 312 times)

Offline vito

  • Newbie
  • *
  • Posts: 10
Is there a way to boot Tiny Core from .iso on Ventoy (GPT)?
« on: August 13, 2024, 08:45:54 AM »
Is there a way to boot Tiny Core from .iso on Ventoy, perhaps? Is there any configuration to be applied manually in GRUB command line? I can see:
Code: [Select]
No bootfile found for UEFI! Maybe the image does not support x64 UEFIinstead of Tiny Core boot options when trying to boot.

Offline Stefann

  • Jr. Member
  • **
  • Posts: 50
Re: Is there a way to boot Tiny Core from .iso on Ventoy (GPT)?
« Reply #1 on: August 14, 2024, 12:50:40 AM »
Is there a way to boot Tiny Core from .iso on Ventoy, perhaps? Is there any configuration to be applied manually in GRUB command line? I can see:
Code: [Select]
No bootfile found for UEFI! Maybe the image does not support x64 UEFIinstead of Tiny Core boot options when trying to boot.
Did you read the installation instructions from the wiki?
https://wiki.tinycorelinux.net/doku.php?id=wiki:install_usb

I just finished a tinycore install from scratch.
Recommended method is using a cd and bringing the iso to that but I donot have a cd player.

The manual way is to create a bootable usb with a bootloader. I used syslinux but grub should also work.
Than indeed download de tinycore iso, but donot simply put it on the cd.
Instead:
Put the core and vmlinuz on the cd and edit the syslinux.conf file using the conf file in tce/boot/syslinux as an inspiration.
For me it was a bunch of sweating, especially to get the bootloader on a usb because I did that from an outdated 2008 Linux distribution.
When however you have a usb with functioning bootloader the wiki contains enough information to get things working.
For sure also read the core concept before you start. Tinycore is not for everybody.
http://tinycorelinux.net/concepts.html

Offline gadget42

  • Hero Member
  • *****
  • Posts: 712
Re: Is there a way to boot Tiny Core from .iso on Ventoy (GPT)?
« Reply #2 on: August 14, 2024, 06:35:16 AM »
a forum search for "ventoy" provides plenty of reading material
(use https://forum.tinycorelinux.net/index.php?action=search and select "Most recent topics first" for the search order)

here is a random selection that has been added onto over several years(just to get you started):

https://forum.tinycorelinux.net/index.php/topic,23363.0.html
The fluctuation theorem has long been known for a sudden switch of the Hamiltonian of a classical system Z54 . For a quantum system with a Hamiltonian changing from... https://forum.tinycorelinux.net/index.php/topic,25972.msg166580.html#msg166580

Offline a8ksh4

  • Newbie
  • *
  • Posts: 7
Re: Is there a way to boot Tiny Core from .iso on Ventoy (GPT)?
« Reply #3 on: August 18, 2024, 10:44:52 PM »
If you're booting the iso from grub, an entry like this can work:

Code: [Select]
menuentry "Slack 15 DVD Install" {
insmod loopback
insmod iso9660
set isofile="/slackware-15.0-install-dvd.iso"
loopback loop (hd0,msdos1)$isofile
linux (loop)/kernels/huge.s/bzImage  load_ramdisk=1 prompt_ramdisk=0  rw printk.time=0 SLACK_KERNEL=huge.s
initrd (loop)/isolinux/initrd.img
}