WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: How to make TC load onboot.lst and optional directory (extensions) from sdc2?  (Read 2554 times)

Offline gam

  • Jr. Member
  • **
  • Posts: 53
I made a Grub2 bootable usb that I followed this topic,
http://forum.tinycorelinux.net/index.php/topic,19364.msg119228.html#msg119228

My command:
https://anotepad.com/notes/256hm6kq

-sdc1 is contain vmlinuz and core.gz
-sdc2 is EFI boot partition with grub.cfg

How to make Tinycore load onboot.lst and optional directory (extensions) from sdc2 partition?
« Last Edit: June 05, 2021, 02:54:26 AM by gam »

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Use the boot code tce=sdc2

Note that you may need to use the uuid or a label to identify the usb stick partition if it doesn't always appear as sdc2

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Hi gam
According to the notes you posted, you copied the UUID from http://forum.tinycorelinux.net/index.php/topic,19364.0.html.
You have to use the UUID for your device:
Code: [Select]
blkid -s UUID /dev/sdc1

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14516
Note also that there should be a file named ntfs-3g.tcz.dep that causes the fuse extension to be loaded.

Offline gam

  • Jr. Member
  • **
  • Posts: 53
Thanks. :)