Sponsored Content
Full Discussion: Tar command
Top Forums UNIX for Advanced & Expert Users Tar command Post 302078298 by satimis on Thursday 29th of June 2006 11:01:17 AM
Old 06-29-2006
Hi prashant_kr2002,

Tks for your advice.

A further question if running;
# tar jpcf backup.tar.bz2 / --exclude=/proc --exclude=/sys --exclude=/home --exclude=backup.tar.bz2 etc.

to backup an OS and it stops in the middle for whatever reason. I wonder whether it can be resumed without starting over from the begining, similar to running "rtorrent" to download files.

TIA

B.R.
satimis
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need Help with tar command

I'm new to the unix environment. I need to find out what parameters I need to use to save directory structure and the files underneath this directory AND how to restore this directory structure on another unix machine. Please Help :D (5 Replies)
Discussion started by: kmar
5 Replies

2. Shell Programming and Scripting

Tar command

I want to tar multiple folder from a environment but exclude 2 folders among them. How can I do that. Is there any exclude option in tar command. Please co-operate me. Thanking you, Chandrakant. (8 Replies)
Discussion started by: get_chandrakant
8 Replies

3. Shell Programming and Scripting

tar command

Hi all, Can anyone please say me what exactly a 'tar' command does? From what all I know, its not basically a compression tool. But I have seen many used it for compression purpose. If you have any links or any stuff which can help me better understand about 'tar', that will be greatly... (1 Reply)
Discussion started by: kripssmart
1 Replies

4. UNIX for Dummies Questions & Answers

tar -cvf test.tar `find . -mtime -1 -type f` only tar 1 file

Hi all, 4 files are returned when i issue 'find . -mtime -1 -type f -ls'. ./ora_475244.aud ./ora_671958.aud ./ora_934052.aud ./ora_934050.aud However, when I issued the below command: tar -cvf test.tar `find . -mtime -1 -type f`, the tar file only contains the 1st file -... (2 Replies)
Discussion started by: ahSher
2 Replies

5. UNIX for Advanced & Expert Users

help on tar command

Hi, I am using the following DOS command to tar my .gz file from the command prompt C:\tar\bin>tar -cf test.tar D:\Coim\*.gz but this creates a tar file under the path C:\tar\bin\test.tar but i want the tar file to be created under D:\Coim\test.tar Is there any option in tar command... (4 Replies)
Discussion started by: Codesearcher
4 Replies

6. Shell Programming and Scripting

tar command dont tar to original directory

HI, if I have a tarfile called pmapdata.tar that contains tar -tvf pmapdata.tar -rw-r--r-- 0/0 21 Oct 15 11:00 2009 /var/tmp/pmapdata/pmap4628.txt -rw-r--r-- 0/0 21 Oct 14 20:00 2009 /var/tmp/pmapdata/pmap23752.txt -rw-r--r-- 0/0 1625 Oct 13 20:00 2009... (1 Reply)
Discussion started by: borderblaster
1 Replies

7. Shell Programming and Scripting

tar command to explore multiple layers of tar and tar.gz files

Hi all, I have a tar file and inside that tar file is a folder with additional tar.gz files. What I want to do is look inside the first tar file and then find the second tar file I'm looking for, look inside that tar.gz file to find a certain directory. I'm encountering issues by trying to... (1 Reply)
Discussion started by: bashnewbee
1 Replies

8. Shell Programming and Scripting

Single command - unzip files from a tar command

I have a tar file that contains multiple .Z files. Hence I need to issue a tar command followed by a gzip command to fully extract the files. How do I do it in a single command? What I'm doing now is tar xvf a.tar (this will output 1.Z and 2.Z) gzip -d *.Z (to extract 1.Z and 2.Z) (9 Replies)
Discussion started by: ericlim
9 Replies

9. UNIX for Dummies Questions & Answers

Tar Command Help

Is it possible to untar a file so it's size reduces while it uncompresses its contents. I have limited space on my mount point and was wondering if we can untar as a stream in other words the size of tarball reduces as it uncompresses the contents. Thanks (5 Replies)
Discussion started by: sumang24
5 Replies

10. UNIX for Dummies Questions & Answers

UNIX command to check if file name ends with .tar OR if the file is a tar file

Hello Team, Would you please help me with a UNIX command that would check if file is a tar file. if we dont have that , can you help me with UNIX command that would check if file ends with .tar Thanks in advance. (10 Replies)
Discussion started by: sanjaydubey2006
10 Replies
bup-index(1)						      General Commands Manual						      bup-index(1)

NAME
bup-index - print and/or update the bup filesystem index SYNOPSIS
bup index <-p|-m|-s|-u> [-H] [-l] [-x] [--fake-valid] [--fake-invalid] [--check] [-f indexfile] [--exclude path] [--exclude-from filename] [-v] DESCRIPTION
bup index prints and/or updates the bup filesystem index, which is a cache of the filenames, attributes, and sha-1 hashes of each file and directory in the filesystem. The bup index is similar in function to the git(1) index, and can be found in ~/.bup/bupindex. Creating a backup in bup consists of two steps: updating the index with bup index, then actually backing up the files (or a subset of the files) with bup save. The separation exists for these reasons: 1. There is more than one way to generate a list of files that need to be backed up. For example, you might want to use inotify(7) or dno- tify(7). 2. Even if you back up files to multiple destinations (for added redundancy), the file names, attributes, and hashes will be the same each time. Thus, you can save the trouble of repeatedly re-generating the list of files for each backup set. 3. You may want to use the data tracked by bup index for other purposes (such as speeding up other programs that need the same informa- tion). MODES
-u, --update recursively update the index for the given filenames and their descendants. One or more filenames must be given. If no mode option is given, this is the default. -p, --print print the contents of the index. If filenames are given, shows the given entries and their descendants. If no filenames are given, shows the entries starting at the current working directory (.) . -m, --modified prints only files which are marked as modified (ie. changed since the most recent backup) in the index. Implies -p. -s, --status prepend a status code (A, M, D, or space) before each filename. Implies -p. The codes mean, respectively, that a file is marked in the index as added, modified, deleted, or unchanged since the last backup. OPTIONS
-H, --hash for each file printed, prepend the most recently recorded hash code. The hash code is normally generated by bup save. For objects which have not yet been backed up, the hash code will be 0000000000000000000000000000000000000000. Note that the hash code is printed even if the file is known to be modified or deleted in the index (ie. the file on the filesystem no longer matches the recorded hash). If this is a problem for you, use --status. -l, --long print more information about each file, in a similar format to the -l option to ls(1). -x, --xdev, --one-file-system don't cross filesystem boundaries when recursing through the filesystem. Only applicable if you're using -u. --fake-valid mark specified filenames as up-to-date even if they aren't. This can be useful for testing, or to avoid unnecessarily backing up files that you know are boring. --fake-invalid mark specified filenames as not up-to-date, forcing the next "bup save" run to re-check their contents. --check carefully check index file integrity before and after updating. Mostly useful for automated tests. -f, --indexfile=indexfile use a different index filename instead of ~/.bup/bupindex. --exclude=path a path to exclude from the backup (can be used more than once) --exclude-from=filename a file that contains exclude paths (can be used more than once) -v, --verbose increase log output during update (can be used more than once). With one -v, print each directory as it is updated; with two -v, print each file too. EXAMPLE
bup index -vux /etc /var /usr SEE ALSO
bup-save(1), bup-drecurse(1), bup-on(1) BUP
Part of the bup(1) suite. AUTHORS
Avery Pennarun <apenwarr@gmail.com>. Bup unknown- bup-index(1)
All times are GMT -4. The time now is 07:08 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy