Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
/-Partition von ext3 nach reiserfs
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
dot
Guru
Guru


Joined: 05 May 2003
Posts: 335
Location: Germany

PostPosted: Tue May 20, 2003 8:49 am    Post subject: /-Partition von ext3 nach reiserfs Reply with quote

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
View user's profile Send private message
MasterOfMagic
l33t
l33t


Joined: 20 Aug 2002
Posts: 677
Location: Vienna, Austria

PostPosted: Tue May 20, 2003 9:01 am    Post subject: Re: /-Partition von ext3 nach reiserfs Reply with quote

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
View user's profile Send private message
daemonb
Apprentice
Apprentice


Joined: 24 Jul 2002
Posts: 242

PostPosted: Tue May 20, 2003 10:07 am    Post subject: Reply with quote

einfacher:
führe einfach das aus :-D

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
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
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