View previous topic :: View next topic |
Author |
Message |
dot Guru
Joined: 05 May 2003 Posts: 335 Location: Germany
|
Posted: Tue May 20, 2003 8:49 am Post subject: /-Partition von ext3 nach reiserfs |
|
|
Hi,
ich hab festegestellt, das auf meiner Platte noch 19 GB
brach liegen, und hab mir gedacht, das ich zum testen mal
ein reiserfs drauf mach. Also will ich jetzt meine /dev/hda3 (ext3)
Partition (/) nach /dev/hda4 (reiserfs) kopieren, und das System
mal von der reiser-Partition starten, wie mach ich das
am elegantesten?
Ich glaube ein
Code: | dd if=/dev/hda3 of=/dev/hda4 |
kommt nicht in Frage, da es ja bitweise kopiert, und reiser dann
kein eigenes journal anlegt, oder?
Flo |
|
Back to top |
|
|
MasterOfMagic l33t
Joined: 20 Aug 2002 Posts: 677 Location: Vienna, Austria
|
Posted: Tue May 20, 2003 9:01 am Post subject: Re: /-Partition von ext3 nach reiserfs |
|
|
dot wrote: | Hi,
ich hab festegestellt, das auf meiner Platte noch 19 GB
brach liegen, und hab mir gedacht, das ich zum testen mal
ein reiserfs drauf mach. Also will ich jetzt meine /dev/hda3 (ext3)
Partition (/) nach /dev/hda4 (reiserfs) kopieren, und das System
mal von der reiser-Partition starten, wie mach ich das
am elegantesten?
Ich glaube ein
Code: | dd if=/dev/hda3 of=/dev/hda4 |
kommt nicht in Frage, da es ja bitweise kopiert, und reiser dann
kein eigenes journal anlegt, oder?
Flo |
guck dir mal partimage an das ist auf der gentoo livecd drauf bzw. findest du mehr dazu unter http://www.partimage.org
mfg
masterofmagic _________________ Gentoo 1.4
Kernel 2.4.24
KDE 3.1.5 |
|
Back to top |
|
|
daemonb Apprentice
Joined: 24 Jul 2002 Posts: 242
|
Posted: Tue May 20, 2003 10:07 am Post subject: |
|
|
einfacher:
führe einfach das aus
Code: |
#!/bin/bash
mkdir /mnt/quelle
mount /dev/hda3 /mnt/quelle
mkdir /mnt/ziel
mount /dev/hda4 /mnt/ziel
cd /mnt/quelle
tar cSp --numeric-owner -f - . | ( cd /mnt/ziel && tar xSpvf - )
exit 0
|
danach noch lilo oder grub bearbeiten .....
umount und reboot.
Bis denne DaemonB |
|
Back to top |
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|