View previous topic :: View next topic |
Author |
Message |
twing n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 11 Apr 2004 Posts: 16
|
Posted: Tue May 04, 2004 12:05 pm Post subject: Full backup of server |
|
|
Hi all,
I want to backup my harddisk. What tools can do full backup? BTW I'm using ext2 for boot and ext3 for '/'.
I look at 'dump', but it backs up files, not for a dev.
To make thing complex, any tools that able to send the back up result to windows box? I only have a burner on that box.
Thanks for any help |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Voltago Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/5021960813fd4cfeb02cbe.jpg)
Joined: 02 Sep 2003 Posts: 2593 Location: userland
|
Posted: Tue May 04, 2004 12:11 pm Post subject: |
|
|
Have a look at partimage, it will dump an entire partition into a file, compressed if you wish, split this file in smaller files (fit for cd-r for example), and restore your partition from these files.
You can write these backup files into a mounted smb partition on your windows box. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
nikolei n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
![](images/avatars/gallery/Southpark/avatar32.gif)
Joined: 15 Dec 2003 Posts: 37
|
Posted: Wed May 05, 2004 6:01 am Post subject: |
|
|
backup of device /dev/hda into files that fit onto a cdrom:
dd if=/dev/hda | split -b650m - filename
and restrore:
cat filename* | dd of=/dev/hda |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Jesore Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/119480684740bc3bc4b411c.jpg)
Joined: 17 Jul 2002 Posts: 232 Location: Nürnberg Germany
|
Posted: Wed May 05, 2004 2:59 pm Post subject: |
|
|
If the partitions are small I'd go with nikolei and use dd, but if the partitions are large and mostly empty, then partimage wins, as doesn't backup empty sectors. So if you got a like 80 gig /home and only 2 gig are used, then dd will really hurt.
Jesore |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|