On 08/12/2013 01:08 AM, Todd and Margo Chester wrote:
<>
> Hi G,
>
> This customer's machine is XP-Pro-SP3. It is the backup drive that
> is going bad. The main drive is fine. G-Tech is replacing the drive.
> (I have had a series of bad G-Drives -- nothing new here.)
>
> I use Xfce Live CD all the time to recover data. I carry three
> copy with me. (One of these days, I am going to have to try it
> on a flash drive, but few of my customers can boot off a flash
> drive yet.)
>
> What exactly does your command do?
-
-
hi T,
my bad. :=(
from reading some of your post, i was of impression that you were more
familiar with linux, and this was your own system.
when issued, with tape drive unmounted;
find . -mtime 1 -type f -print | sort | cpio -oaBcv -O /dev/tape
_finds_ from _current_directory_path_ all _files_ _1_ day old
| _sorts_ names of files |
_archives_ files with _output_ to _device_tape_drive_
this command can run from any type of booted media, ie, installed hdd, live
cd/dvd, usb hdd or usb memory 'drive'.
because backup drive is going bad, command can be run against _either_ the
"main" or the "backup" drive.
in your case, because it is an entire drive, 'cpio' command can also be used
to backup across multiple tapes to cover size of drive.
before retiring, i always carried a live cd's and live dvd's, plus a scsi card
and scsi tape drive and tapes. this allowed me to back up _any_os_system_.
very handy for trouble shooting a system that would not boot or had hdd
problems and i wanted to make a backup.
next time you boot linux, installed or a live cd, run
man find
man sort
man cpio
they should be on a live cd, but may not be. if you get a 'not found error,
they are not installed or on live cd.
/*NOTE*
this is not an "ad" for linux, just one of 'tricks' to "cma" and client's. :=)
/*ETON*
later.