How to tar a directory in AIX?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to tar a directory in AIX?
# 1  
Old 04-25-2014
How to tar a directory in AIX?

Hi

i want to tar a directory.. i have tried few command but it is not working .
please let me know how to tar and untar a directory

below are the error which i am getting
Code:
 
 tar -zxvf tl11cp01_042414_071123.tar.gz
tar: Not a recognized flag: z
 
tar -zxvf tl11cp01_042414_071123.tar.gz tl11cp01_042414_071123
tar: Not a recognized flag: z
 
tl11cp01> tar -xvf tl11cp01_042414_071123.tar.gz tl11cp01_042414_071123
tar: tl11cp01_042414_071123.tar.gz: A file or directory in the path name does not exist.

# 2  
Old 04-25-2014
try with this :-
for tar
Code:
tar -cvf tarfile.tar  tarfile

for untar
Code:
tar -xvf tarfile.tar

for tar and compress
Code:
tar -cvf - tarfile | gzip -c > tarfile.tar.gz

for untar and decompress
Code:
gzip -dc tarfile.tar.gz |tar -xvf -

# 3  
Old 04-25-2014
Make sure you cd to the appropriate directory before tarring. Do not specify an absolute path for the directory.
You can also do it in two stages

Code:
tar cvf dir.tar dir
gzip dir.tar

Or if your tar supports it (but you need GNU tar for that, maybe there is gtar on your system ? )
Code:
gtar zcvf dir.tar.gz dir



---
@sayami00, you probably mean directory, rather than tarfile, no?

Last edited by Scrutinizer; 04-25-2014 at 03:46 AM..
# 4  
Old 04-25-2014
it will work for both file and directory .

Code:
>ls -altr
total 8
drwxr-x---   12 abc      123           4096 Apr 25 12:31 ..
-rw-r-----    1 abc      123              0 Apr 25 12:31 tarfile.txt
drwxr-x---    2 abc      123            256 Apr 25 12:31 tardir
drwxr-x---    3 abc      123            256 Apr 25 12:31 .
>tar -cvf - tarfile.txt | gzip -c > tarfile.tar.gz
a tarfile.txt 0 blocks
>tar -cvf - tardir | gzip -c > tardir.tar.gz
a tardir
>ls -altr
total 24
drwxr-x---   12 abc      123           4096 Apr 25 12:31 ..
-rw-r-----    1 abc      123              0 Apr 25 12:31 tarfile.txt
drwxr-x---    2 abc      123            256 Apr 25 12:31 tardir
-rw-r-----    1 abc      123            400 Apr 25 12:31 tarfile.tar.gz
-rw-r-----    1 abc      123            398 Apr 25 12:32 tardir.tar.gz
drwxr-x---    3 abc      123            256 Apr 25 12:32 .

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Samba 3.6 on AIX 7.1 - Windows 10 Access to AIX file shares using Active Directory authentication

I am running AIX 7.1 and currently we have samba 3.6.25 installed on the server. As it stands some AIX folders are shared that can be accessed by certain Windows users. The problem is that since Windows 10 the guest feature no longer works so users have to manually type in their Windows login/pwd... (14 Replies)
Discussion started by: linuxsnake
14 Replies

2. AIX

GNU TAR vs NATIVE AIX TAR

Hello, Getting this very strange error, made tar/zip through gnu tar GNU Tar ( successful tar and zip without any errors ) /opt/freeware/bin/tar cvf - /oraapp| gzip > /backup/bkp_15_6_16_oraapp.tgz GNU unTar error root@test8:/>gunzip < /config1/bkp_15_6_16_oraapp.tgz |... (5 Replies)
Discussion started by: filosophizer
5 Replies

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

4. Shell Programming and Scripting

Tar of directory

i have a 10 directory in my path i have to take a tar of 7 directory without link files and also have to exclude those 3 directory. tar -cvzf /path/file_name.tar.gz directoryname please help!! facing problem in excluding links file (4 Replies)
Discussion started by: joy lobo
4 Replies

5. UNIX for Advanced & Expert Users

How to rsync or tar directory trees, with hidden directory, but without files?

I want to backup all the directory tress, including hidden directories, without copying any files. find . -type d gives the perfect list. When I tried tar, it won't work for me because it tars all the files. find . -type d | xargs tar -cvf a.tar So i tried rsync. On my own test box, the... (4 Replies)
Discussion started by: fld2007
4 Replies

6. UNIX for Dummies Questions & Answers

tar directory -C

I m new to unix and trying to use tar command with -C option - tar -cf /tmp/Test_shell/ZipTestFolder/archive10.tar -C /tmp/Test_shell/ZipTestFolder/ . It creates one more folder no_name inside the tar file. any suggestions how to remove it. I m using aix 5.3 (8 Replies)
Discussion started by: abhishek1.618
8 Replies

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

8. Shell Programming and Scripting

tar the entire directory except one directory

Hi All, I need to tar the entire directory except one directory inside that. I have used the below command tar -cvfX test.tar bin/perl bin/ I need to tar all the directories inside the bindirectory except the perl directory Please help me in solving this :b: Regards, Kalai (4 Replies)
Discussion started by: kalpeer
4 Replies

9. AIX

AIX 4.2: tar using compression ?

Hi, is there a way to use compression on the TAR command running on a AIX 4.2 ? I did a "man tar" but did not see mentions of using compression, nor how to even find out the tar version. I want to look into ways of reducing the amount of time to do backups. One backup is dumping database... (9 Replies)
Discussion started by: Browser_ice
9 Replies

10. UNIX for Dummies Questions & Answers

tar directory

Hello I try to tar a directory but I get this message # tar cvfb my directory prox.tar tar: invalid blocksize "prox.tar". What Im doing wrong. Solaris 5.6 And other question change this command with another version of solaris Thanks in advance (1 Reply)
Discussion started by: lo-lp-kl
1 Replies
Login or Register to Ask a Question