I'm thinking of making my root filesytem xfs as I've had it on another drive for a while and notice a real gain in performance under any highload over my ext3 root filesystem, so my question is is that if I can just simply do something like the page below describes
http://www.blacksheepnetworks.com/se.../linux_xfs.htm
and just use my existing xfs filesystem to temporarily hold my root filesystem copy (without loosing any data from either my xfs or ext3 partitions!!) by doing something like "find / -mount -print | cpio -pdm /crap/temproot/" and then from knoppix make /dev/hda5 into xfs then just do that other command agian but kinda in reverse like "find /crap/temproot/ -mount -print | cpio -pdm /" (but only / will be whatever I have it mounted as on knoppix)
so heres my fstab:
/dev/hdb5 swap swap defaults 0 0
/dev/hda5 / ext3 defaults,noatime 1 1
/dev/hdb7 /transition vfat defaults 1 0
#/dev/cdrom /mnt/cdrom iso9660 noauto,owner,ro 0 0
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
devpts /dev/pts devpts gid=5,mode=620 0 0
proc /proc proc defaults 0 0
#
/dev/hdb6 /crap xfs defaults,noatime 2 1
/dev/hda1 /windows ntfs nls=utf8,users,ro,umask=000 0 0
/dev/scd0 /mnt/scd0 iso9660 noauto,owner,ro 0 0
I'll make sure to make enough space for my / -> /crap/temproot/ to work but I just need to know ... well, will this plan of copying / to /crap/temproot then (from knoppix) /crap/temproot to whatever I have /dev/hda5 as work and I'll beable to boot back into slack9 and boot the kernel and NOT have a kernel panic about my root fs?
ps. xfs support is built into my kernels so no potential disaster there