WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Moving Installation Partition  (Read 4891 times)

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Moving Installation Partition
« on: August 17, 2015, 02:38:36 PM »
Hi,

I have TinyCore 5.3 installed on a dedicated logical partition on my laptop (sda8).  If I wanted to have it installed on another partition, could I just move the files across (eg, after booting another Linux distro) or would I also need to make some system configuration changes to let the install know its new installed partition?

Thanks,

3g

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Moving Installation Partition
« Reply #1 on: August 17, 2015, 02:43:09 PM »
Your boot loader configuration file defines where to look for the kernel, initrd, and persistent directories.

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Re: Moving Installation Partition
« Reply #2 on: August 17, 2015, 11:23:18 PM »
OK, thanks.  I use GRUB4DOS to boot TinyCore, so if I just move the files over from the TC partition (sda8) to another partition and update mu GRUB configuration, everything wll just work?

3g

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: Moving Installation Partition
« Reply #3 on: August 17, 2015, 11:36:56 PM »
Hi 3guesses
Yes, that should work. The only other thing to be aware of is if you set up any scripts that reference sda8.

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Re: Moving Installation Partition
« Reply #4 on: August 20, 2015, 03:08:14 PM »
OK, well that didn't work - GRUB reports "Error 13: Invalid or unsupported executable format."

I copied the menu.lst entry for sda8 and simply changed the UUID to that for the new partition (sda25), but that clearly isn't sufficient.  The new menu.lst entry looks like:

Code: [Select]
title Tiny Core (sda25)
  uuid e8ae...
  chainloader +1
Does sda25 need something in its boot record to tell GRUB what to actually boot?

3g

PS  I also changed the UUIDs in /tce/boot/extlinux.conf

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Moving Installation Partition
« Reply #5 on: August 20, 2015, 03:15:13 PM »
What in the world is sda25 ?

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Re: Moving Installation Partition
« Reply #6 on: August 21, 2015, 03:26:03 AM »
sda25 is the logical partition to which I've copied the Tiny Core installation (basically the /tce directory structure) from its original installation partition (sda8):
Quote
I copied the menu.lst entry for sda8 and simply changed the UUID to that for the new partition (sda25)

Offline Misalf

  • Hero Member
  • *****
  • Posts: 1702
Re: Moving Installation Partition
« Reply #7 on: August 21, 2015, 03:41:59 AM »
Quote
Does sda25 need something in its boot record to tell GRUB what to actually boot?
Yes, if you chainload, there will be some code expected in the boot record (i.e. another boot loader).

What if you use your current Grub4Dos to boot directly
Code: [Select]
title Tiny Core Linux
find --set-root /tce/boot/vmlinuz
kernel /tce/boot/vmlinuz  tce=UUID="1234567890"
initrd /tce/boot/core.gz

You can also change the location of Core's base files to make sure the correct installation boots up
Code: [Select]
title Tiny Core Linux
find --set-root /tce-5.x/boot/vmlinuz
kernel /tce-5.x/boot/vmlinuz  tce=UUID="1234567890"/tce-5.x
initrd /tce-5.x/boot/core.gz
Download a copy and keep it handy: Core book ;)

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Re: Moving Installation Partition
« Reply #8 on: August 21, 2015, 01:36:24 PM »
Thanks, Misalf.  I'm no GRUB expert, but I still had the Tiny Core installation on sda8 so using your post and the other entries in menu.lst I went for the following:

Code: [Select]
title Tiny Core
  uuid e8adee...
  kernel /tce/boot/vmlinuz root=/dev/sda25 tce=UUID="e8adee..."
  initrd /tce/boot/core.gz

And I rather surprised myself that it worked 8-)

I dont know what wrote the boot sector information to the original install partition (sda8) - does the TC install do that, and the GRUB configuration tool then pick this up when scanning all the partitions on the disk?

3g

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Moving Installation Partition
« Reply #9 on: August 21, 2015, 01:41:25 PM »
root= is not a valid kernel option for Core.

Offline 3guesses

  • Newbie
  • *
  • Posts: 19
Re: Moving Installation Partition
« Reply #10 on: August 21, 2015, 02:20:53 PM »
Have removed the "root=" from the menu.lst entry.  Still works 8-)