Sponsored Content
Full Discussion: Tar and un-tar issue
Top Forums Shell Programming and Scripting Tar and un-tar issue Post 302918857 by migurus on Thursday 25th of September 2014 09:29:10 PM
Old 09-25-2014
I am a little confused by your showing /lms and then some subdirectories originated in /lms. So, you do not want ALL files in /lms directory? If this is the case then I'd do following:

Code:
 cd /lms
 tar cvf your_tarball_file_name \
 w_standard \
d_admin \
b_common \
b_prodbus \
d_prod \
d_prod/ccldir \
d_prod/ccluserdir \
d_prod/config \
d_prod/data \
d_prod/log \
d_prod/ocd \
d_prod/print \
d_prod/temp \
reg \
w_standard/prod_wh

This command will place all files from subdirectories specified into a tarball. Copy it to the target machine and extract from it as follows:
Code:
 cd /your/target/folder
 tar xvf your_tarball_file_name

 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Does tar do crc checking on a tape or tar file?

Trying to answer a question about whether tar table-of-contents is a good tool for verifying tape data. (1 Reply)
Discussion started by: tjlst15
1 Replies

2. UNIX for Advanced & Expert Users

Tar utility (untar a .tar file) on VxWorks

Hi All Can someone pls guide me if there any utility to compress file on windows & uncompress on vxworks I tried as - - compressed some folders on windows ... i created .tar ( to maintain directory structure ) and compressed to .gz format. - on VxWorks i have uncompressed it to .tar... (1 Reply)
Discussion started by: uday_01
1 Replies

3. UNIX for Advanced & Expert Users

How to create a Tar of multiple Files in Unix and FTP the tar to Windows.

Hi, On my Unix Server in my directory, I have 70 files distributed in the following directories (which have several other files too). These files include C Source Files, Shell Script Source Files, Binary Files, Object Files. a) /usr/users/oracle/bin b) /usr/users/oracle... (1 Reply)
Discussion started by: marconi
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. 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

6. 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

7. UNIX for Dummies Questions & Answers

Do I need to extract the entire tar file to confirm the tar folder is fine?

I would like to confirm my file.tar is been tar-ed correctly before I remove them. But I have very limited disc space to untar it. Can I just do the listing instead of actual extract it? Can I say confirm folder integrity if the listing is sucessful without problem? tar tvf file1.tar ... (1 Reply)
Discussion started by: vivien_chu
1 Replies

8. AIX

Making Tar of directory and tar file is going to be placed

Quick question, is it possible to make a Tar of completely directory and placing the tar file in it (will this cause even the tar file to tarred ?) sample: /opt/freeware/bin/tar -cvf - /oracle | gzip > /oracle/backup.tgz will the tar file backup.tgz also include backup.tgz ? i tried... (5 Replies)
Discussion started by: filosophizer
5 Replies

9. AIX

Tar - pre-checking before making the Tar file

Coming from this thread, just wondering if there is an option to check if the Tar of the files/directory will be without any file-errors without actually making the tar. Scenario: Let's say you have a directory of 20GB, but you don't have the space to make Tar file at the moment, and you want... (14 Replies)
Discussion started by: filosophizer
14 Replies
Archive::Tar::Wrapper(3pm)				User Contributed Perl Documentation				Archive::Tar::Wrapper(3pm)

NAME
Archive::Tar::Wrapper - API wrapper around the 'tar' utility SYNOPSIS
use Archive::Tar::Wrapper; my $arch = Archive::Tar::Wrapper->new(); # Open a tarball, expand it into a temporary directory $arch->read("archive.tgz"); # Iterate over all entries in the archive $arch->list_reset(); # Reset Iterator # Iterate through archive while(my $entry = $arch->list_next()) { my($tar_path, $phys_path) = @$entry; print "$tar_path "; } # Get a huge list with all entries for my $entry (@{$arch->list_all()}) { my($tar_path, $real_path) = @$entry; print "Tarpath: $tar_path Tempfile: $real_path "; } # Add a new entry $arch->add($logic_path, $file_or_stringref); # Remove an entry $arch->remove($logic_path); # Find the physical location of a temporary file my($tmp_path) = $arch->locate($tar_path); # Create a tarball $arch->write($tarfile, $compress); DESCRIPTION
Archive::Tar::Wrapper is an API wrapper around the 'tar' command line utility. It never stores anything in memory, but works on temporary directory structures on disk instead. It provides a mapping between the logical paths in the tarball and the 'real' files in the temporary directory on disk. It differs from Archive::Tar in two ways: o Archive::Tar::Wrapper doesn't hold anything in memory. Everything is stored on disk. o Archive::Tar::Wrapper is 100% compliant with the platform's "tar" utility, because it uses it internally. METHODS
my $arch = Archive::Tar::Wrapper->new() Constructor for the tar wrapper class. Finds the "tar" executable by searching "PATH" and returning the first hit. In case you want to use a different tar executable, you can specify it as a parameter: my $arch = Archive::Tar::Wrapper->new(tar => '/path/to/tar'); Since "Archive::Tar::Wrapper" creates temporary directories to store tar data, the location of the temporary directory can be specified: my $arch = Archive::Tar::Wrapper->new(tmpdir => '/path/to/tmpdir'); Tremendous performance increases can be achieved if the temporary directory is located on a ram disk. Check the "Using RAM Disks" section below for details. Additional options can be passed to the "tar" command by using the "tar_read_options" and "tar_write_options" parameters. Example: my $arch = Archive::Tar::Wrapper->new( tar_read_options => "p" ); will use "tar xfp archive.tgz" to extract the tarball instead of just "tar xf archive.tgz". Gnu tar supports even more options, these can be passed in via my $arch = Archive::Tar::Wrapper->new( tar_gnu_read_options => ["--numeric-owner"], ); By default, the "list_*()" functions will return only file entries. Directories will be suppressed. To have "list_*()" return directories as well, use my $arch = Archive::Tar::Wrapper->new( dirs => 1 ); If more files are added to a tarball than the command line can handle, "Archive::Tar::Wrapper" will switch from using the command tar cfv tarfile file1 file2 file3 ... to tar cfv tarfile -T filelist where "filelist" is a file containing all file to be added. The default for this switch is 512, but it can be changed by setting the parameter "max_cmd_line_args": my $arch = Archive::Tar::Wrapper->new( max_cmd_line_args => 1024 ); $arch->read("archive.tgz") "read()" opens the given tarball, expands it into a temporary directory and returns 1 on success und "undef" on failure. The temporary directory holding the tar data gets cleaned up when $arch goes out of scope. "read" handles both compressed and uncompressed files. To find out if a file is compressed or uncompressed, it tries to guess by extension, then by checking the first couple of bytes in the tarfile. If only a limited number of files is needed from a tarball, they can be specified after the tarball name: $arch->read("archive.tgz", "path/file.dat", "path/sub/another.txt"); The file names are passed unmodified to the "tar" command, make sure that the file paths match exactly what's in the tarball, otherwise "read()" will fail. $arch->list_reset() Resets the list iterator. To be used before the first call to $arch-list_next()>. my($tar_path, $phys_path, $type) = $arch->list_next() Returns the next item in the tarfile. It returns a list of three scalars: the relative path of the item in the tarfile, the physical path to the unpacked file or directory on disk, and the type of the entry (f=file, d=directory, l=symlink). Note that by default, Archive::Tar::Wrapper won't display directories, unless the "dirs" parameter is set when running the constructor. my $items = $arch->list_all() Returns a reference to a (possibly huge) array of items in the tarfile. Each item is a reference to an array, containing two elements: the relative path of the item in the tarfile and the physical path to the unpacked file or directory on disk. To iterate over the list, the following construct can be used: # Get a huge list with all entries for my $entry (@{$arch->list_all()}) { my($tar_path, $real_path) = @$entry; print "Tarpath: $tar_path Tempfile: $real_path "; } If the list of items in the tarfile is big, use "list_reset()" and "list_next()" instead of "list_all". $arch->add($logic_path, $file_or_stringref, [$options]) Add a new file to the tarball. $logic_path is the virtual path of the file within the tarball. $file_or_stringref is either a scalar, in which case it holds the physical path of a file on disk to be transferred (i.e. copied) to the tarball. Or it is a reference to a scalar, in which case its content is interpreted to be the data of the file. If no additional parameters are given, permissions and user/group id settings of a file to be added are copied. If you want different settings, specify them in the options hash: $arch->add($logic_path, $stringref, { perm => 0755, uid => 123, gid => 10 }); If $file_or_stringref is a reference to a Unicode string, the "binmode" option has to be set to make sure the string gets written as proper UTF-8 into the tarfile: $arch->add($logic_path, $stringref, { binmode => ":utf8" }); $arch->remove($logic_path) Removes a file from the tarball. $logic_path is the virtual path of the file within the tarball. $arch->locate($logic_path) Finds the physical location of a file, specified by $logic_path, which is the virtual path of the file within the tarball. Returns a path to the temporary file "Archive::Tar::Wrapper" created to manipulate the tarball on disk. $arch->write($tarfile, $compress) Write out the tarball by tarring up all temporary files and directories and store it in $tarfile on disk. If $compress holds a true value, compression is used. $arch->tardir() Return the directory the tarball was unpacked in. This is sometimes useful to play dirty tricks on "Archive::Tar::Wrapper" by mass- manipulating unpacked files before wrapping them back up into the tarball. $arch->is_gnu() Checks if the tar executable is a GNU tar by running 'tar --version' and parsing the output for "GNU". Using RAM Disks On Linux, it's quite easy to create a RAM disk and achieve tremendous speedups while untarring or modifying a tarball. You can either create the RAM disk by hand by running # mkdir -p /mnt/myramdisk # mount -t tmpfs -o size=20m tmpfs /mnt/myramdisk and then feeding the ramdisk as a temporary directory to Archive::Tar::Wrapper, like my $tar = Archive::Tar::Wrapper->new( tmpdir => '/mnt/myramdisk' ); or using Archive::Tar::Wrapper's built-in option 'ramdisk': my $tar = Archive::Tar::Wrapper->new( ramdisk => { type => 'tmpfs', size => '20m', # 20 MB }, ); Only drawback with the latter option is that creating the RAM disk needs to be performed as root, which often isn't desirable for security reasons. For this reason, Archive::Tar::Wrapper offers a utility functions that mounts the ramdisk and returns the temporary directory it's located in: # Create new ramdisk (as root): my $tmpdir = Archive::Tar::Wrapper->ramdisk_mount( type => 'tmpfs', size => '20m', # 20 MB ); # Delete a ramdisk (as root): Archive::Tar::Wrapper->ramdisk_unmount(); Optionally, the "ramdisk_mount()" command accepts a "tmpdir" parameter pointing to a temporary directory for the ramdisk if you wish to set it yourself instead of letting Archive::Tar::Wrapper create it automatically. KNOWN LIMITATIONS
o Currently, only "tar" programs supporting the "z" option (for compressing/decompressing) are supported. Future version will use "gzip" alternatively. o Currently, you can't add empty directories to a tarball directly. You could add a temporary file within a directory, and then "remove()" the file. o If you delete a file, the empty directories it was located in stay in the tarball. You could try to "locate()" them and delete them. This will be fixed, though. o Filenames containing newlines are causing problems with the list iterators. To be fixed. BUGS
Archive::Tar::Wrapper doesn't currently handle filenames with embedded newlines. LEGALESE
Copyright 2005 by Mike Schilli, all rights reserved. This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. AUTHOR
2005, Mike Schilli <cpan@perlmeister.com> perl v5.14.2 2012-03-21 Archive::Tar::Wrapper(3pm)
All times are GMT -4. The time now is 12:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy