Ask a Question related to SCO, Design and Development.
-
Dave Dickerson #1
Question about SCSI tape transfers
Occasionally, on my OSR505 system, I have to copy the
contents of a Travan5 tape to a Travan4 tape.
I have both tape drives connected to a common SCSI HA
and each drive is set to an unique SCSI ID and the
transfer is performed using the dd command, such as:
dd if=/dev/rStp0 of=/dev/rStp1
There are security implications for me if the bits
touch, say, the hard drive or are cached or buffered
somewhere on the system outside of the drive-HA-drive
path.
Question: as the bits flow from one tape cartridge
to the other, do they ever "touch" any component of
the system other than the HA and tape drives?
TIA.
DDinAZ
Dave Dickerson Guest
-
RedHat 9 Problem Finding HP SCSI Tape Drive
Jeffrey Thompson wrote: You don't mount a tape drive you write and/or read from it. mt -f /dev/st0 status is correct. Find out which device... -
SCSI DDS/DAT tape drive not working.
<mailme@chandan.zzn.com> wrote in message news:10c2f021.0308100405.70ec75aa@posting.google.com... PLS, send the output of lsdev -C lsattr -El... -
SCSI tape controller
tony@aplawrence.com wrote: BTW, this is an old 50 pin drive, so something like a 2940 is what I'd want. Also, I'm in the U.S.A :-) --... -
Installing a new SCSI tape device on SCO 5.0.6
Hello, I'm trying to install a SCSI tape device on SCO 5.0.6 and get the error below while compiling the kernel. Does anybody know what this... -
Any way to backup to a Sony SDK-5200 Tape drive(SCSI) using a Xircom USB-SCSI converter in OSX?
Thanks. I'd like to not have to buy more hardware. I would backup with Retrospect. Jack Stroh -
Dave Dickerson #2
Re: Question about SCSI tape transfers
On Fri, 11 Jul 2003 23:08:08 GMT, Bela Lubkin <belal@sco.com> wrote:
Bela, your reply is very much appreciated.>Dave Dickerson wrote:
>>>> Occasionally, on my OSR505 system, I have to copy the
>> contents of a Travan5 tape to a Travan4 tape.
>>
>> I have both tape drives connected to a common SCSI HA
>> and each drive is set to an unique SCSI ID and the
>> transfer is performed using the dd command, such as:
>>
>> dd if=/dev/rStp0 of=/dev/rStp1
>>
>> There are security implications for me if the bits
>> touch, say, the hard drive or are cached or buffered
>> somewhere on the system outside of the drive-HA-drive
>> path.
>>
>> Question: as the bits flow from one tape cartridge
>> to the other, do they ever "touch" any component of
>> the system other than the HA and tape drives?
>The data is buffered in main system memory -- OpenServer does not
>orchestrate direct SCSI target-to-target transfers. Also, since `dd` is
>a user-level process, its memory image _could_ get written to swap space
>if the system was busy enough to be swapping during the transfer. This
>is altogether unlikely on modern systems, but you should be aware of the
>possibility.
>
>To work around the swap issue, you could write your own data transfer
>program and use plock(S) to force your process not to be swapped. The
>process must run as root:
>
> #include <sys/lock.h>
>
> ...
> if (plock(DATLOCK) < 0) {
> perror("Cannot lock self in core (plock(DATLOCK))");
> exit(1);
> }
>
>Note that this is cleared by both fork() and exec(): you cannot use it
>to lock down `dd`, you have to write your own data transfer program. Of
>course it's a trivial program, in this case...
>>>Bela<
Unfortunatly, writing even a trivial program is not an
option for my situation but it is very helpful to know
that data is touching the system during the transfer.
Thank you for the technical insight.
DDinAZ
Dave Dickerson Guest



Reply With Quote

