0

I am on a unix box with Sun OS 5.0. Now I have a shared folder on a Windows server on my LAN. I have some files on Windows to be copied into my unix by running a script on unix itself. So windows box will not push any thing on its own and only unix has to copy from there.

I used FTP and it is successfully working. But is there any possible way which does not require FTP and you can directly copy from the windows shared folder as we do in windows to windows copying. I am asking this because we feel FTP is slower for the size of data we have to copy and history tells it is not so secure. I am ready to install and try tools on unix but my organization doesnt allow to install on windows server. If any tool which can be installed on Windows and adds value then I am ready to convince my authorities.

Please advice on any tools or methods which can be used for this cross platform copying which can make it fast. I tried googling but donno which tool will be faster.

Enjoy coding
  • 101
  • 3

2 Answers2

4

Did you had a look at rsync? http://www.samba.org/rsync/

pvledoux
  • 261
  • 1
  • 2
  • 9
  • +1, A Windows rsync client/server is DeltaCopy: http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp – Chris S Aug 05 '10 at 12:31
2

If you do decide to go the route of adding value to the Windows server, Microsoft has a free offering to improve compatibility with Unix. It's called Windows Services for Unix, and it would allow you to offer the shared folder via NFS, which you can then mount on the Unix machine.

You can also setup SAMBA on the Unix server and mount the smb share on the Unix machine. There are various guides for that available online, though most are aimed at Linux. If it works the same way, the command is:

mount -t smbfs -o username=share-username,password=share-password ⁄⁄{windows-box}⁄{share-name} ⁄mnt⁄{mount-point-directory-name}

dpflug
  • 158
  • 5