AIX FTP issue


 
Thread Tools Search this Thread
Operating Systems AIX AIX FTP issue
# 1  
Old 06-01-2012
[SOLVED] AIX FTP issue

Hi,
I ftpd "binary" mode into a AIX server and transferred .tar.tar files.
When i untar using "tar -xvf <filename>.tar.gz"
It shows "tar: 0511-169 A directory checksum error on media; 0 not equal to 70568."
Please Help!!

Last edited by Priya Amaresh; 06-01-2012 at 08:20 AM..
# 2  
Old 06-01-2012
Use gunzip first to unzip them then try to untar them.
# 3  
Old 06-05-2012
Thanks a ton...Smilie It works!!!!


Moderator's Comments:
Mod Comment edit by bakunin: changed thread title.

Last edited by bakunin; 06-05-2012 at 09:17 PM..
# 4  
Old 06-21-2012
untarring a tarball

You can always pipe the two commands to make life easier for yourself as well.

Code:
gunzip -c filename.tar.gz | tar -xvf -

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

AIX Forum: FTP from AIX to Mainframe

This discussion thread is an extension to what was discussed in Shell scripting section. Please refer the post for the requirement: Requirement Post - Click Here The whole thread - Click Here I would like to know how I can use NDM to transfer file from AIX to Mainframe and to verify the... (3 Replies)
Discussion started by: TechGyaann
3 Replies

2. Shell Programming and Scripting

Ftp issue

I have logged into ftp and unable to enter into the below directory. can anyone help me out to enter into the below directory. ftp> dir 200 Command PORT okay. 150 File status okay; about to open data connection. drwx------ 0 0 Dec 15 06:39 BANK ISI-Bas ftp> cd BANK... (5 Replies)
Discussion started by: ramkumar15
5 Replies

3. IP Networking

Issue with FTP?

HI Guys, Issue:: While doing bye command on ftp, it just hings as below untill you try Ctrl+C 891 bytes received in 0.0017 seconds (526.16 Kbytes/s) ftp> bye 221-You have transferred 0 bytes in 0 files. I too have tried with other commands like, close, disconnect etc but no luck. ... (1 Reply)
Discussion started by: Atp3530
1 Replies

4. Red Hat

FTP issue

Hi, I have installed RHEL 5 on Vmware. I have configured a simple FTP. I am able to transfer and receive files from the vmware-RHEL to my desktop on which vmware is installed and vice-versa. But when i try from other machine in the network it fails. (2 Replies)
Discussion started by: chetansingh23
2 Replies

5. UNIX for Dummies Questions & Answers

FTP Issue

Hi all, iam trying to connect to a ftp site in putty by using the follwing command . ftp URLname. I get the below error ftp: usftp.ABC.com: unknown host. Iam able to connect to the same site through windows commandline. Can anyone put your thoughts on what might be the issue?. ... (2 Replies)
Discussion started by: swathich
2 Replies

6. Solaris

FTP issue

Hi guys, I have a jumpserver that I connect to in order to connect to my SOLARIS boxes. I cannot connect directly. I used a remote terminal server and from there putty to the servers. That is OK. My only problem is when I need to FTP something to it. I have found no way to do that. Any... (4 Replies)
Discussion started by: 300zxmuro
4 Replies

7. Shell Programming and Scripting

Issue with ftp

Hi friends, in one of the script i am doing ftp from solaris to a windows machine. From there i wll cd to specific directory. Now, let's say the directory is not there, then the cd command will fail. So, how i wll get to know here(in the unix box) that the command has failed. Thanks (3 Replies)
Discussion started by: tarakant
3 Replies

8. IP Networking

FTP issue

Hello all, FTP times out when I transfer large files. Small files get transffered fine. small files -------- -bash-3.1$ ftp -i cldevoradb01 Connected to cldevoradb01.enterprisenet.org. 220 (vsFTPd 2.0.5) 530 Please login with USER and PASS. 530 Please login with USER and PASS.... (4 Replies)
Discussion started by: luft
4 Replies

9. Solaris

Ftp issue please help.

Hi All. I need to FTP a file say abc.dat to client server say xyz.ibm.com location /etc/passwd/ibm with user name and password. I want to make sure my script when FTP the file abc.dat of 1000kb is correctly got transfered with the same contant every time to Clients server how do I confirm... (9 Replies)
Discussion started by: Haque123
9 Replies

10. Shell Programming and Scripting

FTP Issue-Help

Hi all, I am trying to transfer files from one server to another. Following is script i wrote for this purpose. It downloads the file to the server which the script is residing and uploads it to the remote server. Main Script #!/bin/bash -x ... (2 Replies)
Discussion started by: Tuxidow
2 Replies
Login or Register to Ask a Question