The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Operating Systems > AIX
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 06-16-2009
Browser_ice Browser_ice is offline
Registered User
  
 

Join Date: Nov 2005
Location: Canada
Posts: 110
aix 4.2 : using dd of=/dev/rmt0 producing error

I want to compress backup files to tape using compress on our AIX 4.2

- Our TAR does not have compression.
- I do not want to use local storage to compress as most of the filesystems are pretty full.
- the only compressing tool we have is 'compress'
- tapes are 5Gb 8mm


I am trying this :

change tape block_size=512 (default dd obs value)
tar -cvpdlBf - a_folder | compress | dd of=/dev/rmt0

but it is giving me :
dd: 0511--53 The write failed.
: A system call received a parameter that is not valid.


but using something like this works:
tar -cvpdlBf - a_folder | compress | dd of=/tmp/zzz.Z