how i can take backup of file on UNIX-AIX ?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Depends what you mean. Backing up a file could be as simple as copying it somewhere else.

cp myfile /my/backups/myfile.bak
link|improve this answer
feedback

dump/restore if you use tape. Otherwise use tar. Bacula and Amanda automate backup, But need time for their adjustment and learning.

link|improve this answer
feedback

There's 2 included ways of backing up a file in AIX, the "backup" command, and the Unix standard "tar" command.

To backup a file with tar run:

tar cvf /tmp/backup.tar ./path/to/originalfile

To restore the contents of the tar file back to the original location run:

cd /
tar xvf /tmp/backup.tar
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.