> I would like to konw if there exist a method to transfer the existing > system to a larger disk. If so, please show me the steps. Thanks for each FFS partition on the new disk mount /dev/XXXX /mnt/WHEREITBELONGS making any intermediate directories in the meantime for each original partition cd /WHEREITWAS; dump 0f - . | (cd /mnt/WHEREITBELONGS; restore -rf - ) Now ensure your bootblocks are setup correctly. And fix up the files in /mnt/etc/* to be correct, especially the fstab. I've done this numerous times, perhaps 20 times or more.. There might be tricky bits I've left out, but you can figure out what they are and learn other things in the process ;-) Have fun.