backup : files being modified while tarring


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers backup : files being modified while tarring
# 1  
Old 10-12-2001
backup : files being modified while tarring

I would like to back up several directories weekly using a cronjob.

I'm not experienced in UNIX, but I would start like this:

tar -cvf backup.tar dir1 dir2 dir3

Now if a file is being modified in the process it will result in an error.

How can I prevent this from happening and how can I determine if the backup has been succesful ?

Last edited by jamesbond; 10-12-2001 at 07:16 PM..
# 2  
Old 10-14-2001
Hi

I don't think if a file is being modified while the filesystem backup is going on, it will give you an error, But yes it will result in an inconsistent backup of the filesystem. For this either you have to confirm that the file backup starts late at night when no one modifies the files or The most recommended option is to bring the system in the single user mode and then start the filesystem backup.

Smilie
# 3  
Old 10-14-2001
kapliv is correct in saying that the best
way to do a backup is in single user mode.

You can in fact get an error if a file that
tar is in the process of reading gets modified
by another process. You can use the...
--ignore-failed-read
...option and tar should just continue with the
next file. Check your man page carefully.
# 4  
Old 10-14-2001
Thank you both for your information!

One more question though:

Would it be possible to switch to 'single user mode' and back without rebooting?
If so, how is this done?
(I've searched the internet for info on this, but no luck)

I'm running freebsd 4.1
# 5  
Old 10-15-2001
Hi

Quote:
Originally posted by rwb1959
kapliv is correct in saying that the best
way to do a backup is in single user mode.

You can in fact get an error if a file that
tar is in the process of reading gets modified
by another process. You can use the...
--ignore-failed-read
...option and tar should just continue with the
next file. Check your man page carefully.
I tried the tar -cvf filename pathname, and at the same time i was modifying a file in the same folder of which i am forming the tar file. But it didn't give me an error, also i could retrive the file successfully. SO when does it give an error ? Am i missing out something ?
# 6  
Old 10-15-2001
If you want to try to "get" the error you
must be writing the exact same file (not just
the directory) as tar just opened for reading.
Note that I have only experienced this problem
3 times in 2 years and it has been when
developers are working late (in the middle of the
night when the backups run) and makeing changes
to several source files in the CVS tree. It's
really hit or miss (especially with small files).
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Tarring files to remote server

Hi, I need to tar some files in a directory to a remote server. I need to exclude some file from this directory and then tar it over. This is the command suggested by one article (tarring in the same server) : tar -zcvf /tmp/mybackup.tar.gz -X exclude.txt /home/me However it does not... (9 Replies)
Discussion started by: anaigini45
9 Replies

2. UNIX for Dummies Questions & Answers

Copy files from one drive to another, keeping most recently modified files

Hi all, I am a bit of a beginner with shell scripting.. What I want to do is merge two drives, for example moving all data from X to Y. If a file in X doesn't exist in Y, it will be moved there. If a file in X also exists in Y, the most recently modified file will be moved to (or kept) in... (5 Replies)
Discussion started by: apocolapse
5 Replies

3. UNIX for Dummies Questions & Answers

Tarring files up to four days old

Hi I need help in tarring files up to four days old. I have been doing this: find . -mtime -4|xargs tar -cvf mar4.tar However, it seems like it's tarring everything but leaving those that are 4 days old and newer (which I want tarred and everything else not) ---------- Post updated at... (1 Reply)
Discussion started by: MIA651
1 Replies

4. Shell Programming and Scripting

Tarring problem.

We execute script to tarr files as normal user. Normal user doesn't have permission to append file to existing tarr file, since tarr files are owned by root user. Even though script is creating tar file and is executed by normal user, It shows that tar file is created by root. I ran script for... (3 Replies)
Discussion started by: Nagaraja Akkiva
3 Replies

5. Shell Programming and Scripting

Delete all files except last modified

Hello All, I need to delete all the files with a particular naming format at a fixed path except the latest 1. Please help. example: At path /tmp, I have 3 files viz: log1, log2 and log3. file log2 was the one that was modified most recently. So I need to find and delete log1 and log3... (2 Replies)
Discussion started by: mystition
2 Replies

6. Shell Programming and Scripting

Bash Tarring not un Tarring correctly

HI All, Im encountering behaviour that is not correct for my requirements when I untar a file. Im using the below command to tar up files from various folders to the ARCHIVE folder as below... tar -cvf "$ARCHIVE_PATH"/"$dte_tar_filename" "$LOG_PATH" "$PROCESSED_PATH2" "$ERROR_PATH" ... (5 Replies)
Discussion started by: satnamx
5 Replies

7. Shell Programming and Scripting

tarring/compressing files in Unix directory

hi guys, i'm totally new with Unix sripting and no idea how to do the scripting at all. My problem is that my boss asked me to do this: 1.) create a script that will tar or gzip the files in particular directory eg: i'm on my home directory and I need to tar/gzip the file in.. assuming... (1 Reply)
Discussion started by: montski
1 Replies

8. UNIX for Dummies Questions & Answers

tarring large no. of files

dears, I have a folder containing huge no. of files, some of them are created on AUG 16, AUG 17 and AUG 18, for example. All I want to do is tarring all the files created on a certain date, say AUG 18, in one tar file, only in one command line. So, how to feed all the files created on a certain... (4 Replies)
Discussion started by: marwan
4 Replies

9. UNIX for Dummies Questions & Answers

how to retrieve original contents of a modified file (modified using vi)

Made changes to a file using vi editor and saved those changes now realised that the changes are not required How can I get the previous version of the file.i.e the one which was there on which I had made changes (3 Replies)
Discussion started by: novice100
3 Replies

10. UNIX for Dummies Questions & Answers

tarring and gzipping dump files

Say I want to transfer several dump files from a Solaris machine onto a Win2k machine for storage. It was suggested that I tar and gzip the dump files before doing so. Is it completely necessary to use both of these utilities, or is it sufficient to compress multiple dump files into one gzip... (4 Replies)
Discussion started by: PSC
4 Replies
Login or Register to Ask a Question