Using `tar` for a selective backup.


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory Using `tar` for a selective backup.
# 1  
Old 06-28-2002
Question Using `tar` for a selective backup.

Hi all & anyone.

I'm trying to selectively backup up some old Apache log files before they are removed from the system (Slackware box).

Have created a file listing of what I want backed up ...
Code:
Below is a portion of the file ./selectedbkup
/usr/local/apache/logs/adventure.travel.com.au-access_log
/usr/local/apache/logs/adventure.travel.com.au-error_log
/usr/local/apache/logs/bargain.travel.com.au-access_log
/usr/local/apache/logs/bargain.travel.com.au-error_log
/usr/local/apache/logs/biz.travel.com.au-access_log
/usr/local/apache/logs/biz.travel.com.au-error_log
...and others 60 files in total.

I'm trying to execute the tar command in the following way:

# tar -cvPf /dev/nst0 -T ./selectedbkup > ./OldALogs.log 2>&1

Checking the output file OldALogs.log shows the following ...
Code:
tar: Cannot add file /usr/local/apache/logs/adventure.travel.com.au-access_log
                                : No such file or directory
tar: Cannot add file /usr/local/apache/logs/adventure.travel.com.au-error_log
                                : No such file or directory
tar: Cannot add file /usr/local/apache/logs/bargain.travel.com.au-access_log
                                : No such file or directory
tar: Cannot add file /usr/local/apache/logs/bargain.travel.com.au-error_log
                                : No such file or directory
tar: Cannot add file /usr/local/apache/logs/biz.travel.com.au-access_log
                                : No such file or directory
tar: Cannot add file /usr/local/apache/logs/biz.travel.com.au-error_log
                        : No such file or directory

Any suggestions??
# 2  
Old 07-01-2002
Has anyone (?) any suggestions regarding this?
# 3  
Old 07-16-2002
is your pwd .... root ?

if it is then try

tar -cvf /dev/xxx0 'cat<filename>'
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Backup script with selective file types only

i am looking for a backup script to be run in ssh which can move all *.php files only to a archive Eg. a folder has 5 sub folders with different file types, which can be mix of PDF, jpeg, gif etc etc. but the archive generated should only include the *.php files without breaking the directory... (3 Replies)
Discussion started by: netatma
3 Replies

2. Red Hat

Backup and restore using tar

This will be covered elsewhere im sure but i just cant seem to find my exact issue. I want to backup my systems using tar, command is: tar -cjpf /backup /bin /etc /home /opt /root /sbin /usr /var /bootWhen i include the / directory it also tar's the /lib /sys /proc /dev filesystems too (and... (8 Replies)
Discussion started by: Tommyk
8 Replies

3. Shell Programming and Scripting

File Backup - TAR help

Hi, Another rookie here. I have a script I am developing to backup files from various directories onto a windows machine. Script description: - mv files from various directories - tar all files in that directory - export to windows server for safe keeping, external backups. The... (5 Replies)
Discussion started by: mcclunyboy
5 Replies

4. UNIX for Dummies Questions & Answers

Tar differential backup

I am backing up some data to an NTFS formatted backup drive. I have to preserve the Unix permissions of the data being backed up and therfore use backup into a tar file. I would like to backup the differnential data in the tar file similiar to how Rsync works so as to save on backup time as it... (1 Reply)
Discussion started by: jelloir
1 Replies

5. UNIX for Dummies Questions & Answers

Backup with tar

Hi friends, I am planning to backup my Solaris Servers to SAN storage using tar. Also palnning to automate the job using Crontab. Can anyone advise how to make the date change automatically everyday for backup. Pls correct me if I am wrong. Thanks (7 Replies)
Discussion started by: solaris5.10
7 Replies

6. Shell Programming and Scripting

tar - incremental backup

Hello everyone! I'm trying to make incremental tar archives of a folder for an example. On the box I use is UNIX AIX installed. I tried some sample codes I found on several web pages but with no success. Don't know what I'm doing wrong. Please write some sample code to make incremental tar... (0 Replies)
Discussion started by: Funky_ass
0 Replies

7. UNIX for Dummies Questions & Answers

Tar backup

I am trying to do a full system backup using tar. It then after maybe 12 or so hours comes up with tar: write error: unexpected EOF. I have thoroughly cleaned the drive and tried to use a different drive but it still gives me this error. Can someone help. I am on solaris 8. (1 Reply)
Discussion started by: TMashie
1 Replies

8. UNIX for Dummies Questions & Answers

tar backup problems

Im trying to use tar to backup the os directories. I have a file called bdirs which contains a list of the directories that im trying to backup: /bin /dev /devices /etc /export /home /kernel /lib /local /mnt /opt /platform /proc /sbin start /usr /var /vol (3 Replies)
Discussion started by: blakmk
3 Replies

9. UNIX for Advanced & Expert Users

selective tar image and dir perms

Hi, I'm creating a tar image containing selected files held in a manifest file thus: cat <manifest file> | xargs tar -cvpf tar.out I need to preserve the directory as well as the file perms. When my list contains no separate directory lines, the directory is created implicitly when the... (4 Replies)
Discussion started by: gfarley
4 Replies

10. UNIX for Advanced & Expert Users

tar backup

Hi all, I would like to append list of files to already taken tar backup file. can anybody help? last month backup : cd /accounts/11 tar -cvf monthback.tar * Now I want to add /accounts/12 to monthback.tar is it possible? Krishna (1 Reply)
Discussion started by: krishna
1 Replies
Login or Register to Ask a Question