Unix Technical Forum

ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a full drive image backup!

This is a discussion on ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a full drive image backup! within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> Please visit the homepage of DeviceImage-Project: http://www.device-image.de Disk images provide a powerful backup-restore solution and are exact copies of ...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-20-2008, 06:19 AM
jurij@device-image.de
 
Posts: n/a
Default ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a full drive image backup!

Please visit the homepage of DeviceImage-Project:
http://www.device-image.de

Disk images provide a powerful backup-restore solution and are exact
copies of your hard drive which are created by using low level byte by
byte copy operation. So even if your drive goes bad, you will still
have an entire copy of your system that you can restore.

zsplit and unsplit are Linux utilities.
zsplit is a command line imager, which allows you to create an exact
disk image. Finally it compresses the output image file and splits it
into chunks of defined size to fit exactly the size of storage media
(CD, DVD or HDD).

unzsplit is a command line restore tool. It restores files produced by
zsplit to its origin, i.e. splitted and compressed image files will be
uncompressed, tied together and restored to the original device or
partition.

Key Features :

1. runs under GNU/Linux OS

2. creates images from FAT16, FAT16X, FAT32, FAT32X, NTFS (MS Windows-
95, -98, -Me, -NT4, -2000, -XP), Linux Ext2, Linux Ext3, ReiserFS and
Linux swap partitions.

3. is able to create images from Very Large Files or devices (tested
with 200 Gygabyte devices)

4. output image files can be compressed to various density (900 MiB
(megabyte binary) FAT32 partition can be compressed to 350 - 400 MB
and can be stored on one CD)

5. output image file can be splitted into pieces of defined size

6. in case of partially damaged devices, blocks and/or sectors safely
reads all remaining intact sectors

7. supports non-seekable input and output (so you can use pipes for
stdin and/or stdout)

Please visit the homepage of DeviceImage-Project:
http://www.device-image.de
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-20-2008, 06:20 AM
SergioDM
 
Posts: n/a
Default Re: ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a fulldrive image backup!

jurij@device-image.de ha scritto:
> Please visit the homepage of DeviceImage-Project:
> http://www.device-image.de
>
> Disk images provide a powerful backup-restore solution and are exact
> copies of your hard drive which are created by using low level byte by
> byte copy operation. So even if your drive goes bad, you will still
> have an entire copy of your system that you can restore.


So, exactly like "dd"...

>
> zsplit and unsplit are Linux utilities.
> zsplit is a command line imager, which allows you to create an exact
> disk image. Finally it compresses the output image file and splits it
> into chunks of defined size to fit exactly the size of storage media
> (CD, DVD or HDD).


dd if=/dev/disk of=/dev/stdout | tar czf backup.tar.gz | split -b <size>

>
> unzsplit is a command line restore tool. It restores files produced by
> zsplit to its origin, i.e. splitted and compressed image files will be
> uncompressed, tied together and restored to the original device or
> partition.

cat piece1 piece2 ... piecen | tar xz | dd ...

Do we really need those utilities?
Regards
Sergio
--
"Two plus two gives five, for extremely large values of two."
...ooOO <sedimico chi@cci@la libero p.u.n.t.o. it> OOoo..
Linux Registered User #366688
on http://counter.li.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-20-2008, 06:20 AM
Keith Keller
 
Posts: n/a
Default Re: ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a full drive image backup!

On 2005-02-20, SergioDM <ottone@gypsie.ottoheadquarter> wrote:

[many snips]

> dd if=/dev/disk of=/dev/stdout | tar czf backup.tar.gz | split -b <size>
> cat piece1 piece2 ... piecen | tar xz | dd ...
>
> Do we really need those utilities?


Possibly. If any of your pieces are corrupted, you'll likely lose every
piece afterwards. It's possible that zsplit and unzsplit avoid that
scenario.

Or, asked another way, do we really need zcat? Not really, but it's
pretty handy, no? So, don't be too harsh until you try the utilities
and see if they're any use. (FWIW, I won't bother, but that's because I
don't have a strong need for those tools right now.)

--keith

--
kkeller-usenet@wombat.san-francisco.ca.us
(try just my userid to email me)
AOLSFAQ=http://wombat.san-francisco.ca.us/cgi-bin/fom
see X- headers for PGP signature information

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-20-2008, 06:21 AM
jurij@device-image.de
 
Posts: n/a
Default Re: ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a full drive image backup!

SergioDM <ottone@gypsie.ottoheadquarter> wrote in message news:<Mj4Sd.42176$lB4.1153422@twister1.libero.it>. ..
> jurij@device-image.de ha scritto:
> > Please visit the homepage of DeviceImage-Project:
> > http://www.device-image.de
> >
> > Disk images provide a powerful backup-restore solution and are exact
> > copies of your hard drive which are created by using low level byte by
> > byte copy operation. So even if your drive goes bad, you will still
> > have an entire copy of your system that you can restore.

>
> So, exactly like "dd"...
>
> >
> > zsplit and unsplit are Linux utilities.
> > zsplit is a command line imager, which allows you to create an exact
> > disk image. Finally it compresses the output image file and splits it
> > into chunks of defined size to fit exactly the size of storage media
> > (CD, DVD or HDD).

>
> dd if=/dev/disk of=/dev/stdout | tar czf backup.tar.gz | split -b <size>
>
> >
> > unzsplit is a command line restore tool. It restores files produced by
> > zsplit to its origin, i.e. splitted and compressed image files will be
> > uncompressed, tied together and restored to the original device or
> > partition.

> cat piece1 piece2 ... piecen | tar xz | dd ...
>
> Do we really need those utilities?
> Regards
> Sergio


Try it with files bigger then 4 Gygabyte, for sure you will get in
trouble... It was one of reasons for me to write a new tool. Besides,
using more tools in some combination is not very good if you want to
control the progress in compressing and splitting - it was the next
reason to write something new. Actually these tools are only the first
functional approach, I hope I can realize my idea to write a very
flexible and simple for user imaging tool. At this step the difference
from already known tools is the combination of features in one tool
and it is easily to use in scripts than your suggestion.

Regards,
Jurij
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-20-2008, 06:24 AM
SergioDM
 
Posts: n/a
Default Re: ANNOUNCEMENT: zsplit, unzsplit: free linux tools to make a fulldrive image backup!

jurij@device-image.de ha scritto:
> Try it with files bigger then 4 Gygabyte, for sure you will get in
> trouble... It was one of reasons for me to write a new tool. Besides,
> using more tools in some combination is not very good if you want to
> control the progress in compressing and splitting - it was the next
> reason to write something new. Actually these tools are only the first
> functional approach, I hope I can realize my idea to write a very
> flexible and simple for user imaging tool. At this step the difference
> from already known tools is the combination of features in one tool
> and it is easily to use in scripts than your suggestion.
>
> Regards,
> Jurij


I admit it. I'm gonna take a look to the site.
Bye
Sergio
--
"Two plus two gives five, for extremely large values of two."
...ooOO <sedimico chi@cci@la libero p.u.n.t.o. it> OOoo..
Linux Registered User #366688
on http://counter.li.org
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 05:49 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com