The Salisburys was once rumoured to have said:
> Cloning LINUX
>
> Hi all
>
> Useful table for reference on link below.
>
> It appears that Ghost ver 8 supports GRUB & Redhat9 with filesystem EXT3.
> Has anyone had success with ver 7.5 Redhat9 with a lilo boot loader ?
> THe table excludes ver 7.5 & Redhat9!
>
>
> http://service1.symantec.com/SUPPORT/ghost.nsf/e44a397a948bb43e85256952006d83d1/b343f521f647fd1b88256caf00755887?OpenDocument&src=bar_sch_nam
>
> Also is there any product in linux that is as feature rich as ghost ?
tar. dump. cpio.
Honestly, you don't need ghost for migrating linux partitions.
just boot single, mount your target onto /target, umount your removable
media (and any filesystems you're not moving), and (as root, using bash):
for i in `awk '/$\// { if ( $2 ~ /^\// ) print $2 }' /etc/fstab`; do
echo "copying $i..."
tar clf - -C $i | tar xpf - -C /target$i
done
(this is basically an automated version of how I migrate my linux systems
from drive to drive by hand)
Once that's finished, you just need to reinstall your bootloader onto the
new drive and you're set and ready to go.
C.
--
--==============================================--
Crossfire | This email was brought to you
[EMAIL PROTECTED] | on 100% Recycled Electrons
--==============================================--
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html