ftp transfer


 
Thread Tools Search this Thread
Operating Systems Solaris ftp transfer
# 1  
Old 01-22-2007
ftp transfer

Hi ....I'm trying to ftp 2 pkgs SUNWqlc & SUNWqlcx since they were accidentally deleted from my servers. For one reaseon or the other my server is not loading the cdrom, so I mounted the cdrom on a differernt server & ftp's to it.

I tried to get this pkg using the bin & I get an error message :not a plain file.
I also tried using ascii & I stll got the same error message. Does anybody know why this is happening.

Really appreciated.
Thanks,
Remi




ftp> ascii
200 Type set to A.
ftp> get SUNWqlc
200 PORT command successful.
550 SUNWqlc: not a plain file.
ftp> bin
200 Type set to I.
ftp> get SUNWqlc
200 PORT command successful.
550 SUNWqlc: not a plain file.
ftp>
# 2  
Old 01-22-2007
"Not a plain file" means that the file in question is not a plain file. That is, it is a directory, FIFO, special file, socket, etc.
# 3  
Old 01-24-2007
If you are having problems ftp'ing a directory the easiest way to do this would be the following

goto the server with the pkgs you need.. Tar up the folders and SCP them to the other server


tar -cvf Foldername.tar.gz Foldername
tar -cvf Foldername2.tar.gz Foldername

scp Foldername.tar.gz root@serverIP(destination):/location/to/put/file/.
scp Foldername2.tar.gz root@serverIP(destination):/location/to/put/file/.


goto your server where you just put the files and untar them

tar -xvf Foldername.tar.gz
tar -xvf Foldername2.tar.gz
# 4  
Old 01-24-2007
Quote:
Originally Posted by Create
If you are having problems ftp'ing a directory the easiest way to do this would be the following

goto the server with the pkgs you need.. Tar up the folders and SCP them to the other server


tar -cvf Foldername.tar.gz Foldername
tar -cvf Foldername2.tar.gz Foldername

scp Foldername.tar.gz root@serverIP(destination):/location/to/put/file/.
scp Foldername2.tar.gz root@serverIP(destination):/location/to/put/file/.


goto your server where you just put the files and untar them

tar -xvf Foldername.tar.gz
tar -xvf Foldername2.tar.gz
Or just use a NFS mount if the packages are on a disk.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to see the status of all the ftp put & get files logs and curent ftp transfer status ?

How to see the status of all the ftp put & get files logs and curent ftp transfer status if any active ftp running in the background ? (2 Replies)
Discussion started by: i4ismail
2 Replies

2. Windows & DOS: Issues & Discussions

FTP: Can not listing and can not transfer file

Hi All, My PC with Windows XP SP2 has some problem with ftp service. FTP Server is : Windows Server 2003 Standard R2 The condition is I can log in and also can change ftp server directory, But I can not listing the file and can not get or put any file. It will hang and nothing happen until... (4 Replies)
Discussion started by: wilsonSurya
4 Replies

3. UNIX for Dummies Questions & Answers

Help with FTP Variable Transfer

Hey all, I'm trying to upload a file to my ftp server through an automated batch program. I will be uploading a file that's name changes according to you IP Address, so I am using the variable %ip% to represent the file's name. The problem occurs when it transfers over to the ftp portion of the... (2 Replies)
Discussion started by: piking
2 Replies

4. Shell Programming and Scripting

ftp transfer in a for loop

Frdz, i have scenorio like i have to open ftp connection in a for loop and connect to the other server and upload the file again and again till the for loop ends but i am getting problem when i use the following code. for i in `ls ${SOURCE_DIR}/` do FOLDER_NAME=`basename $i` for j in `ls... (4 Replies)
Discussion started by: KiranKumarKarre
4 Replies

5. Shell Programming and Scripting

FTP (File Transfer)

I am going to transfer file from UNIX directory to remote windows location and i wrote the script but i am getting the error as 'FTP: not found' or i am getting this error 'The file path is not found'. Please help me to resolve this problem as early as possible.(urgent). my script is, ... (6 Replies)
Discussion started by: praka
6 Replies

6. Shell Programming and Scripting

File Transfer through FTP

Hi Guys, I wanted to transfer files from FTP machine to Linux Machine. In this, I need to create a batch file that will connect to the Linux Machine and Transfer the files specified as the parameter to the files. Ex : transferfiles Product Time Geography Here transferfiles shld contain... (4 Replies)
Discussion started by: Swapna173
4 Replies

7. Shell Programming and Scripting

file transfer using Ftp

Hi All, I am very new to shell scripting,I have some doubts how we can do a file transfer using ftp I wanted to transfer files using non_secure ftp and secure ftp(sftp) mode, for secure ftp i am using following code verbose="verbose" ftp="/usr/bin/ftp" user="ABC" pass="123"... (1 Reply)
Discussion started by: sudhi
1 Replies

8. Shell Programming and Scripting

FTP Transfer error

Hi ! I created a similar script as shown below to automate an FTP transfer and encountered errors. Appreciate any advice to resolve this issue. The script: #!/usr/bin/ksh ftp 'IP ADD' << cmd user 'user' 'pass' lcd /home/data get 'FileA' FileB quit cmd Connected to 'IP_ADD'.... (3 Replies)
Discussion started by: cosec
3 Replies

9. Shell Programming and Scripting

FTP fail during file transfer

Please help me out. it is very urgent. when transfering the files from one server to other server if it is failed how to trace the status. i am using two commands: cd $SOURCE_FILE_PATH ftp -niv $SRVR_NAME >> $LOG_PATH/$LOG_FILE << END_FTP user $USER_ID $PASSWORD bin cd $REMOTE_FILE_PATH ! ... (0 Replies)
Discussion started by: ramana
0 Replies

10. Shell Programming and Scripting

FTP Transfer Success

Hi I'm using Shell script which will ftp (download) a file from a host. I need to check whether the file has been transfered completley or not. Can anyone tell me how to do that? Thanks Ben (1 Reply)
Discussion started by: abrd600
1 Replies
Login or Register to Ask a Question