Untar problems


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Untar problems
# 1  
Old 11-08-2007
Untar problems

Hi,

I am new to unix scripting. I have written a java program which will initialize a sftp connection and copy a unix script from my machine to a remote server. Then i initalized an ssh connection and i executed the script. This script contains a sequnece of commands and one of them is to untar a tar file using tar xvf command. The tar file is huge and it takes 20 seconds to untar. Before the tar finishes its job the other commands continue their execution. When i see the untar output it contains only very few files. How to wait for tar to complete its action.

I tried the following :

1. Run the script in backgroup
2. Used && for sequential execution
3. Used sleep
# 2  
Old 11-08-2007
Unless you are doing something odd or deliberately using "&" or "|" then all commands in a script will execute in sequence.

I suggest you post the script you are using.

BTW, you don't need to send the script, you can just provide ssh with the commands as stdin.
# 3  
Old 11-09-2007
I solved the tar file problem. Thanks for your suggestion. That was a brilliant idea. I didn't know that i can use stdin for SSH ...

<Vinoth>
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to untar the below file?

I need to extract the below file. could you please let me know how to extract by using unix command. manfucture.today.1678.tar.gz (5 Replies)
Discussion started by: ramkumar15
5 Replies

2. UNIX for Dummies Questions & Answers

Not able to untar a file in HP UX!

Hi, I have been trying to untar this file hello.tar which consists of 3 files but nothing happens: eux750{root}# tar -xvf hello.tar x /hello, 8405 bytes, 17 tape blocks Why am I not able to see the untarred files.:wall: Thanks to help! (2 Replies)
Discussion started by: terminator
2 Replies

3. Solaris

Unable to Untar

Hello, bash-2.05# tar -xvf sunos.tar tar: directory checksum error bash-2.05# file sunos.tar sunos.tar: data bash-2.05# Can someone please help me untar this. This is a Solaris 9 box. (5 Replies)
Discussion started by: zigi_p5
5 Replies

4. Shell Programming and Scripting

Not able to untar file

Hello Experts, I have requirement in which a file is present in the folder_test. In that folder there is file called Test.tar.gz.20111102. Now my requirement is i have to rename this file to someother format and untar it.... folder_test Test.tar.gz.20111102 I am using the below... (5 Replies)
Discussion started by: aks_1902
5 Replies

5. AIX

untar

Hi, How can i untar a set of files in to different directory. This is content tar -tvf samba.tar drwxrwxrwx 0 0 0 Nov 28 18:35:41 2008 samba/ -rw-r--r-- 0 0 0 Nov 18 15:12:40 2008 samba/b.txt -rw-r--r-- 0 0 0 Nov 18 15:12:40 2008 samba/c.txt -rw-r--r-- 0... (4 Replies)
Discussion started by: allwin
4 Replies

6. UNIX for Advanced & Expert Users

untar

i have try to untar the file in same location. But it gave the error # tar -xvf TSMSRVAIX5220.tar x tivoli.tsm.devices.acsls, 757760 bytes, 1480 media blocks. tar: 0511-169 A directory checksum error on media; 4011 not equal to 8222. How can i rectify this prob. Thanks in advance ... (2 Replies)
Discussion started by: prakash96453
2 Replies

7. UNIX for Dummies Questions & Answers

untar to a specified file

I have file1.tar and want to untar it under /server/file2. If I do tar -xvf file1.tar, the files will be deployed under file1. How to specify the destination folder?? thx (3 Replies)
Discussion started by: melanie_pfefer
3 Replies

8. UNIX for Advanced & Expert Users

Urgent....untar!!!

HI UNIX GURUS... I am facing the a similar problem which malaymaru has posted earlier raegarding untaring a file in some other specified directory.But the solution by UNIX DAEMON "Perderabo" seems little difficult to understand.(USING #pax -r -s '=^/opt/abc=/tmp=' < tarfile) So plz explain... (4 Replies)
Discussion started by: rahul26
4 Replies

9. UNIX for Advanced & Expert Users

Untar to different location

Hi, I'm facing problem of untar'ing the tar contents with absolute pathnames to a different directory. Please provide me some hint on how to resolve it. Regards, Pradeep (1 Reply)
Discussion started by: pradeep_desh
1 Replies

10. UNIX for Advanced & Expert Users

Untar to different location

I have a tar file where the files have been tar'd along with the location of the file i.e /opt/abc/file.txt /opt/abc/file2.txt I am trying to untar this file on a different server where /opt/abc does not exist. How do I untar these files without the tar trying to create the structure... (3 Replies)
Discussion started by: handak9
3 Replies
Login or Register to Ask a Question