TARON AIX HAS SEVERE LIMITATIONS. IF I WANT TO ARCHIVE AN DIRECTORY WITHOUT THESE LIMITATIONS I THINK ABOUT THEBACKUPCOMMAND. BUT WHAT WOULD BE THE SYNTAX?
Assuming you want to backup
/usr/local
the tar command would be something like this:# tar cvpf /tmp/archive.tar ./usr/local/
You could use the following backup command instead:
# find ./usr/local/ | backup -iqvpf /tmp/archive.bff
To restore the backup you can use the restore command:
# restore -xqvf /tmp/archive.bff
(the corresponding tar command would be
tar xvpf /tmp/archive.tar
)