Copy/move files between Windows and FreeBSD

2007-03-26 Thread Nagy László Zsolt


 Hi,

I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and we 
were using SSH2 for this kind of task. Under windows, I could not find 
the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program but 
sometimes they freeze and then I have to kill and restart the whole 
thing. I'm looking for a more reliable tool that can do SCP in batch 
mode. Do you have any suggestions?


Thanks,

  Laszlo


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Ivan Voras

Nagy László Zsolt wrote:


 Hi,

I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and we 
were using SSH2 for this kind of task. Under windows, I could not find 
the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program but 
sometimes they freeze and then I have to kill and restart the whole 
thing. I'm looking for a more reliable tool that can do SCP in batch 
mode. Do you have any suggestions?


Have you tried cygwin?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Chris Slothouber

Hi Laszlo,

I use Unison to run automated file copying (synchronization) from 
Windows servers to FreeBSD.  This program might work for you.  It is 
open source and cross-platform.  It is also in the ports collection. 
Perhaps it will work for you.  Here is the link:


http://www.cis.upenn.edu/%7Ebcpierce/unison/

Nagy László Zsolt wrote:


 Hi,
I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and we 
were using SSH2 for this kind of task. Under windows, I could not find 
the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program but 
sometimes they freeze and then I have to kill and restart the whole 
thing. I'm looking for a more reliable tool that can do SCP in batch 
mode. Do you have any suggestions?

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Gerard Seibert
On Mon, 26 Mar 2007 13:19:53 +0200
Nagy László Zsolt [EMAIL PROTECTED] wrote:

 I need to copy,move and delete files across two machines. They are 
 located far away from each other. I have other FreeBSD machines and
 we were using SSH2 for this kind of task. Under windows, I could not
 find the right software. This is an automated task, and it is not 
 complicated: copy/move all files from one computer to another. I was 
 using putty and plink/pscp but it is not reliable. I could not start 
 them from a win32 service. I could run them from a scheduled program
 but sometimes they freeze and then I have to kill and restart the
 whole thing. I'm looking for a more reliable tool that can do SCP in
 batch mode. Do you have any suggestions?

Have you tried: SyncToy v1.4 available at:

http://www.microsoft.com/downloads/details.aspx?familyid=E0FC1154-C975-4814-9649-CCE41AF06EB7displaylang=en

I have used it with success on Windows machines connected to FreeBSD.


-- 
Gerard

It takes all kinds to fill the freeways.

Crazy Charlie


signature.asc
Description: PGP signature


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Laszlo Nagy

Ivan Voras írta:

Nagy László Zsolt wrote:


 Hi,

I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and 
we were using SSH2 for this kind of task. Under windows, I could not 
find the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program 
but sometimes they freeze and then I have to kill and restart the 
whole thing. I'm looking for a more reliable tool that can do SCP in 
batch mode. Do you have any suggestions?


Have you tried cygwin?

Thanks, this is the first I'll try. Since I was using pscp, it will be
the less pain to use scp from openssh for windows. I hope it will work.

  Laszlo


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Lowell Gilbert
Laszlo Nagy [EMAIL PROTECTED] writes:

 Ivan Voras írta:
 Nagy László Zsolt wrote:

  Hi,

 I need to copy,move and delete files across two machines. They are
 located far away from each other. I have other FreeBSD machines and
 we were using SSH2 for this kind of task. Under windows, I could
 not find the right software. This is an automated task, and it is
 not complicated: copy/move all files from one computer to
 another. I was using putty and plink/pscp but it is not reliable. I
 could not start them from a win32 service. I could run them from a
 scheduled program but sometimes they freeze and then I have to kill
 and restart the whole thing. I'm looking for a more reliable tool
 that can do SCP in batch mode. Do you have any suggestions?

 Have you tried cygwin?
 Thanks, this is the first I'll try. Since I was using pscp, it will be
 the less pain to use scp from openssh for windows. I hope it will work.

Cygwin also seems to include rsync; running that over ssh will be a
lot easier in the long run.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Kurt Buff

Nagy László Zsolt wrote:


 Hi,

I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and we 
were using SSH2 for this kind of task. Under windows, I could not find 
the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program but 
sometimes they freeze and then I have to kill and restart the whole 
thing. I'm looking for a more reliable tool that can do SCP in batch 
mode. Do you have any suggestions?


Thanks,

  Laszlo


You might try WinSCP.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Copy/move files between Windows and FreeBSD

2007-03-26 Thread Roger Olofsson

Hello Laszlo,

Going off on a tangent here, may I suggest that you try rsync (FreeBSD) 
with cwRsync (Windows) for this? It can use ssh and be fully automated. 
You will need rsync as client on both machines and to create the 
appropriate keys on respective machines.


Rsync is in ports and cwRsync is at http://itefix.no/cwrsync/ .

Good luck!





Nagy László Zsolt skrev:


 Hi,

I need to copy,move and delete files across two machines. They are 
located far away from each other. I have other FreeBSD machines and we 
were using SSH2 for this kind of task. Under windows, I could not find 
the right software. This is an automated task, and it is not 
complicated: copy/move all files from one computer to another. I was 
using putty and plink/pscp but it is not reliable. I could not start 
them from a win32 service. I could run them from a scheduled program but 
sometimes they freeze and then I have to kill and restart the whole 
thing. I'm looking for a more reliable tool that can do SCP in batch 
mode. Do you have any suggestions?


Thanks,

  Laszlo


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]




___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]