Transfert ftp. server


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Transfert ftp. server
# 1  
Old 07-14-2005
Transfert ftp. server

How do I transfert data after connection to a ftp.server?

Thanks for your help.
# 2  
Old 07-14-2005
When you say data, I suppose you want to transfer files.

After you are connected, say you want to transfer fileA from your local machine to the host machine, issue

put fileA

It will put fileA in the host machine in the directory to which you have connected.

If you have many files (say) with the .txt extension then issue

mput *.txt

Similarly, you can get the files from the host machine to your local machine by issuing get and mget in a similiar manner.

If this is not what you are looking for, tell us more.

Vino
# 3  
Old 07-14-2005
load file to server

Thanks for your answer,

Ok, I can put the command but I get a problem with the issue.

put file:Users/michaseidenberg/Desktop/MARTA1

When I give this command he answers

No such file or directory

Why is the issue false?

Sorry to give you those questions but I don't have any experience with UNIX. Smilie
# 4  
Old 07-14-2005
This is what I can think of

1. The file does not exist. i.e. Users/michaseidenberg/Desktop/MARTA1 from the path you have started the ftp transaction.

I am sure that file must be existing in your system. The path to that file must be wrong. Either provide the right relative path or the absolute path.

As a reminder, file names are case sensitive. So be careful regarding that as well.

vino
# 5  
Old 07-14-2005
thanks a lot


Smilie
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Update/Download file from FTP server to UNIX Server

HI Guys, I want to download files from FTP Server to my Unix server. I have tried , buy No Luck . Below Command i have tried. 1-Wget - Error "wget' not found" 2.ftp -n $HOST ...Not Working. 3.scp -i ftp://user:passowrd@hostname:21/ran/on/test.txt Any Suggestion (2 Replies)
Discussion started by: pareshkp
2 Replies

2. Red Hat

Implement FTP server on RHEL server without using FTP client

We have RHEL 5.8 in our environment, I had a query whether we can implement an FTP server using vsftpd package and Linux configurations like setsebool without using any external FTP clients like FileZilla etc. I am very confused on this. The FTP functionalities that should be present are download &... (3 Replies)
Discussion started by: RHCE
3 Replies

3. Linux

Generate public key to connect from one ftp server to other server

How to generate public key to connect from one ftp server to other server to use in scripting. (0 Replies)
Discussion started by: sridhardwh
0 Replies

4. HP-UX

[Solved] Unable to rename file in ftp server .Net:FTP perl

Hello All, I am trying to connect to ftp server and get the files. Also i need to rename the file in other ftp dir. rename method is not allowing me to rename the file in other dir. When i tried copy command by using net::FTP:FILE then perl says it is not installed. Can some body help me to... (2 Replies)
Discussion started by: krsnadasa
2 Replies

5. Windows & DOS: Issues & Discussions

Office server => laptop =>client server ...a lengthy and laborious ftp procedure

Hi All, I need your expertise in finding a way to solve my problem.Please excuse if this is not the right forum to ask this question and guide me to the correct forum,if possible. I am a DBA and on a daily basis i have to ftp huge dump files from my company server to my laptop and then... (3 Replies)
Discussion started by: kunwar
3 Replies

6. Red Hat

when users ftp to server the timezone reflected is UTC but the server is set to TZ in localtime

Guys, Need your help coz my server runs in local time GMT +8, but when client use ftp and login, the resulting timestamp seen in each file is in UTC format. We need to set that the time should be the same as GMT +8 when in ftp session. I am using RHEL 5.3. root@]# ll total 1740... (2 Replies)
Discussion started by: shtobias
2 Replies

7. Shell Programming and Scripting

preserving the timestamp of a file when copied from remote server to local server using ftp

Hi, I need to copy few files from remote server to local server. I write a shell script to connect to the remote server using ftp and go to that path. Now i need to copy those files in the remote directory to my local server with the timestamp of all those files shouldnt be changed. ... (5 Replies)
Discussion started by: arunkumarmc
5 Replies

8. Shell Programming and Scripting

ftp script not able to connect to ftp server.

I have the following ftp script to get files from a remote location. However, on running the script I find that I am not even able to connect to ftp server. I am able to connect to ftp server using other GUI ftp tools like WS_FTP using the same IP. IP used here is a dummy IP. What can go... (3 Replies)
Discussion started by: gram77
3 Replies

9. Shell Programming and Scripting

Dowloading a File from FTP Server to a local Server where User Id's are different

Hi, The Setup is like this. I'm connecting to Unix machine from my local machine. After connecting to Unix M/c, i need to connect FTP server. Am successful in connecting to FTP server, but am not able to download the file from the ftp server to my local machine. I have different user id's and... (1 Reply)
Discussion started by: ranjith_taurean
1 Replies

10. Shell Programming and Scripting

How to transfert special fonts in ksh script

Hello, I have a script in ksh who I make a move from a File who is transfered from a another System. So when I read this file under Unix HP , I cannot read the character ö or Ö . A litlle Example : I must can read Östereich but I read s^tereich Can Anyone help me if there is a Unix... (3 Replies)
Discussion started by: steiner
3 Replies
Login or Register to Ask a Question