By lloydinio
Sat May 14, 2011 7:02 pm
Hi All,
I've been reading these forums for quite a while now and have picked up a ton of useful information. Now I've discovered something which might be useful to others so I thought I should post.
I have backed up my MPC3000 (OS 3.11) zip disks to my Mac laptop in case they get corrupted. I have successfully restored back to a zip disk. This was done with out-of-the-box OS X tools.
You will need a USB zip drive to connect to your Mac. Once connected, insert your disk, open a terminal and run the following command:
This will provide some output with a couple of lines along the lines of:
You can spot the zip disk because it's 100Mb. The IDENTIFIER (here 'disk1') is used throughout the following commands, replace 'disk1' with whatever your disk identifier is.
To Backup
First, make sure the disk is unmounted:
The following command will create an image of your zip disk called zip1 in your home directory (takes 10-15 mins):
Then eject the disk:
Job done!
To Restore
Make sure the disk is unmounted:
Then restore the backup:
Then eject the disk:
I hope that is useful to someone, it at least gives me some confidence that I haven't lost a ton of stuff if one of my aging zip disks packs up.
Cheers,
Lloyd.
I've been reading these forums for quite a while now and have picked up a ton of useful information. Now I've discovered something which might be useful to others so I thought I should post.
I have backed up my MPC3000 (OS 3.11) zip disks to my Mac laptop in case they get corrupted. I have successfully restored back to a zip disk. This was done with out-of-the-box OS X tools.
You will need a USB zip drive to connect to your Mac. Once connected, insert your disk, open a terminal and run the following command:
Code: Select all
diskutil listThis will provide some output with a couple of lines along the lines of:
Code: Select all
/dev/disk0
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *320.1 GB disk0
1: EFI 209.7 MB disk0s1
2: Apple_HFS Untitled 319.7 GB disk0s2
/dev/disk1
#: TYPE NAME SIZE IDENTIFIER
0: *100.7 MB disk1
You can spot the zip disk because it's 100Mb. The IDENTIFIER (here 'disk1') is used throughout the following commands, replace 'disk1' with whatever your disk identifier is.
To Backup
First, make sure the disk is unmounted:
Code: Select all
diskutil unmountDisk /dev/disk1The following command will create an image of your zip disk called zip1 in your home directory (takes 10-15 mins):
Code: Select all
dd if=/dev/disk1 of=~/zip1Then eject the disk:
Code: Select all
diskutil eject /dev/disk1Job done!
To Restore
Make sure the disk is unmounted:
Code: Select all
diskutil unmountDisk /dev/disk1Then restore the backup:
Code: Select all
dd if=~/zip1 of=/dev/disk1Then eject the disk:
Code: Select all
diskutil eject /dev/disk1I hope that is useful to someone, it at least gives me some confidence that I haven't lost a ton of stuff if one of my aging zip disks packs up.
Cheers,
Lloyd.

