LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 05-05-2002, 01:20 PM   #1
J_Szucs
Senior Member
 
Registered: Nov 2001
Location: Budapest, Hungary
Distribution: SuSE 6.4-11.3, Dsl linux, FreeBSD 4.3-6.2, Mandrake 8.2, Redhat, UHU, Debian Etch
Posts: 1,126

Rep: Reputation: 58
How to backup directories used by several users?


I would like to prepare an archive of directories used in common by many users, including root on a server.
The archive should be prepared by crontab and zip, if possible (I used these for the backup of the user's home directories).
My questions are:
- does this archive have to be prepared by su? (I suppose even root could not read all files there)
- if so, how can I prepare the superuser's crontab? (I already know how to prepare the user's crontabs). How can I ensure that a shell have su rights?
- when su extracts files from such an archive, will the extracted files be owned by su (or root) or by the users who originally owned them? (the latter is a must)
- is it possible to keep the original access rights even when the files are in the archive, i.e.:
- each user should be enabled to extract his own files from the archive, and
- no user should be allowed to extract or read the files of other users for which he did not have at least read access rights originally?
So, is it possible to prepare such an archiving system?
 
Old 05-06-2002, 12:36 PM   #2
J_Szucs
Senior Member
 
Registered: Nov 2001
Location: Budapest, Hungary
Distribution: SuSE 6.4-11.3, Dsl linux, FreeBSD 4.3-6.2, Mandrake 8.2, Redhat, UHU, Debian Etch
Posts: 1,126

Original Poster
Rep: Reputation: 58
It is the second day that I examine this question and I begin to suspect that zip will not retain permissions, so I have to use tar + gzip.
Yet, after reading the tar and gzip manuals and info pages several times I was not able to successfully compress just one single file into tar.gz (except for those that I did not intend to).
Could anyone please tell me what command can I use to pack one directory and its subdirectories into a single, specific tar.gz file?
Moreover: (if I succeed) I will possibly have a huge archive containing thousands of files. Is it possible to update a tar.gz file with files that have changed, or the entire archive has to be re-created? This makes a great difference, since, if the archives of all users have to be recreated just because of one or two files that have changed, the whole weekend will not be enough for the work and the server will be heavily loaded.
Thank you in advance for your help.
 
Old 05-08-2002, 01:39 PM   #3
Rashkae
Member
 
Registered: May 2002
Distribution: Slackware
Posts: 125

Rep: Reputation: 15
So many questions,

Your right, you need to use Tar and Gzip... since GNU Tar shipped with most linux distros's include gzip compression, we'll just use tar.

You configure root's crontab just the same as you do a user's.. Just su to root and run crontab -e


The tar command would look something like:

tar -czf /somedir/backup.tar.gz /home/

You need not worry about the portability of your archive. Winzip will extract files and directories from a tar.gz file with no trouble.

In Unix, (and, by extension, Linux), there are no files that root cannot read or modify, regardless of ownership or permission

-c option means to create a new archive. z Specifies to use gzip compression. f instructs tar to use a file or device (as opposed to a stdin / stdout pipe)

You would extract that archive with command tar -xzf /somedir/backup.tar.gz

Cheers
 
Old 05-08-2002, 01:48 PM   #4
Rashkae
Member
 
Registered: May 2002
Distribution: Slackware
Posts: 125

Rep: Reputation: 15
More Advanced Options (to continue)

To update a tar archive with newer files.

tar -uzf /somedir/backup.tar.gz

Note: If the archive will span GB, you may need to split the output.

tar -cz /home | split (split otions that I"m too lazy to lookup at the moment)..

This would create a series of files split at a certain size. To restore from such a beast:

cat files | tar -xz

You would not be able to use the -u update option that way (I don't think).

Also note, the -u will append any new files at the end of the archive, but does not remove the old file. This does not cause problems to restore, but the archive file will continually grow in size as each update to files gets appended.

And finally, to clarify. Tar is used to pack multiple files into a single file. gzip (or bzip2) is used to compress a file. If what you want to do is compress a single file, the command is simply gzip filename
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I backup OS X (Just the system directories) Burgin Other *NIX 0 10-30-2005 11:28 AM
new directories for new users kvtournh Mandriva 1 09-07-2005 10:07 AM
Automatic backup of specified directories? Spreegem Debian 3 07-28-2005 11:08 PM
Backup system - which directories to save? geodo Linux - Newbie 2 05-27-2004 11:15 PM
Home Directories - Backup kwigibo Linux - General 1 08-23-2002 08:29 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:09 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration