Hi!
Ich will meine /home Partition von ext3 nach Reiser FS konvertieren. Leider sind auf der Platte ca. 20GB Daten, die ich "Zwischenparken" muss. Zur Verfügung, hätte ich eine per Samba eingebundene Platte einen Windows Rechners. Sonst habe ich eigentlich nirgendwo ausreichend Platz.
Dachte mir eigentlich, dass ich /home komplett auf der NTFS Platte tarre, doch ich kann keine Datei mit mehr als 2GB anlegen:
# tar -cpf /homebackup/home.tar /home
# Die maximale Dateigröße ist überschritten
Wie mache ich das denn am sinnvollsten? Kann ich tar sagen, dass es das Backup in 2GB Schnippsel zerlegen soll? Kann ich mit partimage arbeiten? Aber das würde mir ja auch wieder das alte Dateisystem wiederherstellen, was ich ja nicht will.
Was kann ich denn da noch machen?
Danke
Chrissss
// Edit: Ich glaub ich hab die Lösung gefunden. So sollte es locker funktionieren. Das splittet mir die Dateien bevor sie 2GB gross werden:
# tar -cp /home | split -b1800m - /homebackup/home.tar.split.
Hoffe dass das entpacken mit
# cat home.tar.split.* | tar xz
klappt
/home nach ReiserFS konvertieren, wie Daten zwischenparken?
- mistersixt
- Beiträge: 6601
- Registriert: 24.09.2003 14:33:25
- Lizenz eigener Beiträge: GNU Free Documentation License
Nimm einfach
Package: convertfs (20020318-1)
in-place filesystem conversion
This simple toolset allows you to change type of file system in the lack of backup space. You can convert from virtually any filesystem type to virtually any one as long as they are both block-oriented and supported by Linux for read/write, and as long as primary filesystem supports sparse files.
Viele Grüße,
Torsten
Package: convertfs (20020318-1)
in-place filesystem conversion
This simple toolset allows you to change type of file system in the lack of backup space. You can convert from virtually any filesystem type to virtually any one as long as they are both block-oriented and supported by Linux for read/write, and as long as primary filesystem supports sparse files.
Viele Grüße,
Torsten