![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tape drive problem | James Zwecker | SCO | 2 | 04-14-2008 01:49 PM |
| Problem restoring files from remote tape drive | lindab | SUN Solaris | 4 | 07-02-2007 05:52 AM |
| reading contents on a 4mm tape | DATDANGGADUDE | AIX | 0 | 06-22-2006 06:10 PM |
| error reading from tape | colesy | UNIX for Dummies Questions & Answers | 3 | 08-30-2002 08:54 AM |
| DLT TAPE DRIVE/ Script problem /Ignite. | nemex | UNIX for Dummies Questions & Answers | 2 | 12-27-2001 09:20 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Problem reading a 4mm tape drive
I'm attempting to read a tape in a 4mm drive (AIX 4.3) using the following command...
Code:
tar tvf /dev/rmt0 Code:
tar: 0511-193 An error occurred while reading from the media. There is not enough memory available now. Code:
chdev -l rmt0 -a block_size=# Code:
tar: 0511-193 An error occurred while reading from the media. There is an input or output error. TIA |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
I am not an expert but I read 4mm tapes alot. The command I use to read them is
tar -tvf /dev/rmt/0n Hope this helps. |
|
#3
|
|||
|
|||
|
You can easily find the block size with the following commands.
#Change the block size to variable chdev -l rmt0 -a block_size=0 #Read one huge block dd if=/dev/rmt0 of=/tmp/testblock bs=128k count=1 #Find the block size with wc wc -c /tmp/testblock And there you have the blocksize. |
|||
| Google The UNIX and Linux Forums |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|