File Transfer from Window server to UNIX and UNIX to UNIX


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting File Transfer from Window server to UNIX and UNIX to UNIX
# 1  
Old 04-23-2013
RedHat File Transfer from Window server to UNIX and UNIX to UNIX

Dear All,

Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way.

I would request no samba client.
# 2  
Old 04-23-2013
What about sftp program?
# 3  
Old 04-23-2013
RedHat File Trasnfer from Window server to UNIX and UNIX to UNIX

Quote:
Originally Posted by hanson44
What about sftp program?
I think that would work but not yet tested

but if you have something please share
# 4  
Old 04-23-2013
For Unix to Unix, there is also rsync which I highly recommend. Smilie
# 5  
Old 06-25-2013
i think from unix to unix server file transfer can take place if you try following command:
scp loginid@server_address:/test/folder1/file.txt .
loginid=your login id to remote server
server_address=e.g 172.16.9.122

and after that give full path ....to where u want to copy

---------- Post updated at 06:01 AM ---------- Previous update was at 05:55 AM ----------

i don't have any program in unix for file transfer to windows but i can help with some thing else...hopefully it will help.

just create a batch file in windows...like following

test.bat

echo. starting ftp..

ftp -s:test.txt 172.16.9.122 >ftplog.log
pause.
-----------------------------

after that create test.txt like following

rohit
rohit
cd /itmshome2/etvib/INCOMETAX/
prompt
mget *.csv
bye
------------------

i hope this will work for u...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

SFTP files from Unix to Window Server

I have a requirement, where in we need to SFTP files from the Unix box to the Windows server. Since we are putting files...Where would we place the public/private keys from the Unix servers?? Any default path as such??? How would the sftp happen from Unix to Windows...Please help... ... (1 Reply)
Discussion started by: saggiboy10
1 Replies

2. Shell Programming and Scripting

Batch job in unix server to move the pdf file from unix to windows.

Hi Experts, I have a requirement where i need to setup a batch job which runs everymonth and move the pdf files from unix server to windows servers. Could some body provide the inputs for this. and also please provide the inputs on how to map the network dirve in the unix like that... (1 Reply)
Discussion started by: ger199901
1 Replies

3. Shell Programming and Scripting

File transfer from one server to another server in unix

Hi, Can anyone help me. I am a new user in unix. I want to transfer (ftp) a file from one unix server to another server. Kindly help me. more details: server 1 file_name a.lst path: :/temp server 2 path : /develp/temp Thanks, Raj, (2 Replies)
Discussion started by: easterraj
2 Replies

4. Shell Programming and Scripting

to transfer a file from unix to window

Hello sir/Madam, I m writing in unix prompt folllowing- >ftp <local ip> // my pc ip is 10.64.0.59 Then following message is displayed- "ftp: connect: Connection refused" Please help me to solve this problem. Thanking you. (3 Replies)
Discussion started by: Nirmal
3 Replies

5. HP-UX

File transfer between unix and windows server

hi all, I have two server(Unix tru64 and windows 2003 server). these server's live running now. The win2003server doesn't have ftp server. Also Unix server doesn't have samba. if both server's have ftp server that no problem. How to transfer file from windows server to unix by every... (2 Replies)
Discussion started by: Tlg13team
2 Replies

6. Shell Programming and Scripting

how to transfer a file from unix to window machine

I want to ftp some of the unix files to my local PC through unix shell script. I want that script should be run from unix. when i tried by using scp, came to know that connection refused (3 Replies)
Discussion started by: balireddy_77
3 Replies

7. Shell Programming and Scripting

Transfer file from local unix server to remote server

want to remove this thread. thanks (2 Replies)
Discussion started by: indira
2 Replies

8. HP-UX

Transfer file from local unix server to remote server

want to remove the thread thanks (2 Replies)
Discussion started by: indira
2 Replies

9. Shell Programming and Scripting

FTP script for sending a file from one unix directory to another unix server director

Hi, My local server is :/usr/abcd/ Remote server is :/Usr/host/test/ I want to send files from local unix directory(All files starting with O_999) to remote host unix directory. Can any body give me the Unix Shell script to do this. One more doubt: Shall we need to change the file... (1 Reply)
Discussion started by: raja_1234
1 Replies

10. UNIX for Dummies Questions & Answers

need unix to unix file transfer

I am setting up a cron to do a daily transfer of some files from one unix server to another unix server. It seems that there are a few ways to go about this (kermit, scp, etc). What is the best way to transfere large files quickly between unix machines? Thanks. (3 Replies)
Discussion started by: ejbrever
3 Replies
Login or Register to Ask a Question