rcp between windows and unix


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users rcp between windows and unix
# 1  
Old 10-05-2007
rcp between windows and unix

Anyone experience with using rcp to copy data between windows and Unix (AIX)?
# 2  
Old 10-07-2007
It is possible. What is your question?
# 3  
Old 10-07-2007
if you are in unix system,

then the command syntax is :

rcp {source path with the hostname (servername) } { destination path with hostname }

syntax is almost same as cp command in unix

if u want to copy /tmp/tmp_file from current host to a hostname say server1 then the command would be

rcp /tmp/tmp_file server1:/tmp

then the file will get copied to tmp directory in the server1 host
# 4  
Old 10-07-2007
An alternative is to use "scp", on Windows you could either use Cygwin's or Putty's version.
# 5  
Old 10-08-2007
Thanks, rcp is installed by default on windows so no changes are needed on the Windows server.

I noticed that on the AIX system I need to have the exact same user account and password I'm executing the rcp command with on Windows.
# 6  
Old 10-08-2007
Have you used hosts.equiv or anything similar?
# 7  
Old 10-08-2007
I've used hosts.equiv and added the name of the server I'm connecting from.

I also used the .rhosts file in the user home with the name of the server I'm connecting from and the user name I'm connecting with on Windows. The rcp program then logs in on the AIX server but only when I set the password the same on both systems. rcp doesn't ask for a password.

rcp -b -h -r \dir hostname:

This copies the windows directory to a AIX directory.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Needed SFTP script from windows to UNIX server and from UNIX to windows server(reverse SFTP)

hi guys, i need a script to sftp the file from windows to unix server ....(before that i have to check whether the file exists in the windows server or not and again i have to reverse sftp the files from unix to windows server..... regards, Vasa Saikumar. (13 Replies)
Discussion started by: hemanthsaikumar
13 Replies

2. Shell Programming and Scripting

Using RCP to copy and delete the files from Windows Drive

Hi, I have a requirement to copy the files from C drive on Windows to UNIX, once the files are copied I need to delete them from that drive (C:). A drive is also on same network as my unix, so I was asked to use RCP for copying the files. Can any one have the syntax to copy the files from... (0 Replies)
Discussion started by: Raamc
0 Replies

3. Shell Programming and Scripting

RCP for copying the files from one drive to other on Windows

Hi, I have a requirement to move the files between two drives in windows machine from Korn sheel. I came to know that It can be done through RCP. Can any one help me with syntax for connecting to Windows machine and moving the files with RCP in KSH? Thanks in advance. Double post.... (0 Replies)
Discussion started by: Raamc
0 Replies

4. AIX

Do I need to configure my local windows to FTP files from local windows to a UNIX AIX server?

Hi Friends, I have this script for ftping files from AIX server to local windows xp. #!/bin/sh HOST='localsystem.net' USER='myid_onlocal' PASSWD='mypwd_onlocal' FILE='file.txt' ##This is a file on server(AIX) ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE... (1 Reply)
Discussion started by: rajsharma
1 Replies

5. UNIX for Dummies Questions & Answers

Changing windows server alias name on windows or unix?

My situation is that we have production unix scripts that ftp files over to a windows server. I'm not sure if its a 2000 or 2003 server as I dont work on server, more on the unix side. It turns out that they are changing servers on the network. So they are migrating our data over from say Server 1... (1 Reply)
Discussion started by: NycUnxer
1 Replies

6. Windows & DOS: Issues & Discussions

RCP from Sco Unix to Win XP

Hello, Native XP rcp does not have a password prompt as far as I can see. I require a rcp.exe to copy a file from Sco to my XP pc. I did have this program that was part of pcnfs a few years ago. I need to run a scheduled batch job from a command line being. rcp.exe 192.168.5.33 -user root... (0 Replies)
Discussion started by: phil martin
0 Replies

7. UNIX for Advanced & Expert Users

rcp between two unix machine

rcp user@hostname:sourcefile destfile when i use the above command i get the followin error: remshd:login incorrect. i have taken care of entries in .rhosts and hosts.equiv. the userid on both the system is the same. is there any thing i have missed out please help me (4 Replies)
Discussion started by: nvg_hal
4 Replies

8. UNIX for Dummies Questions & Answers

rcp from Linux/Unix to Win2kserver

I am attempting to use "rcp" to transfer files from a linux box(redhat) to a windows 2000 server box and keep getting a "connection refused" message. Are there any special services/daemons on either side that I need running or any special ports I need open to do this? How about files? I read... (1 Reply)
Discussion started by: mcrouch_2003
1 Replies

9. IP Networking

rcp from winnt to unix

I try an RCP command from winnt to unix and it works only with 2 pc but with the two others it dosen't work....? MS-DOS return this error msg : 0826-826 The host name for your address is not known. What can I do to resolve my probleme ? Dimitri Geneva - Switzerland (2 Replies)
Discussion started by: dfrangidis
2 Replies

10. Cybersecurity

About rcp at Windows NT OS.

Now I want to copy a directry from Sco Unix at Windows NT 4.0 with Sp6. But I always meet the Permision Refuse error. I need your help. GOD Thank you very much. (1 Reply)
Discussion started by: livic
1 Replies
Login or Register to Ask a Question