How do I push a file from a Linux box to a Windows Box? Which versions of Windows have a built-in SSH server that a Linux box can "scp" (secure copy/ssh) to.
I'm looking at freesshd right now. Any more ideas?
How do I push a file from a Linux box to a Windows Box? Which versions of Windows have a built-in SSH server that a Linux box can "scp" (secure copy/ssh) to.
I'm looking at freesshd right now. Any more ideas?
I don't think any version of windows has built in SSH server. You can take a look at FileZilla for easily setting up a SFTP server.
I'm not to much skilled, but, instead of setting up a ssh server on windows, i suggest you to share a windows folder and then using samba, just copy the file to this shared folder. To a LAN a think this is a easier solution.
Check out Cygwin. It contains an implementation of an SSH Server for Windows (OpenSSH sshd server). It works with Windows 200, XP and 2003 (with a few caveats). Here's a good installation guide. Once it is installed and working, it works like a champ and gives you some level of standardization across servers.
If you need something fast, setup an FTP server. I recommend FileZilla. If you plan on doing this a lot, setup SAMBA so you can share drives between a Linux and Windows machine.
You can use smbclient to transfer a file via SMB (Windows file sharing).
A sample command to upload a file:
smbclient \\172.16.1.3\c$ -U jwhittal -Tc backup.995.tar pdf995/
You know, working with Linux/BSD/OS X systems for so long now, you sometimes take for granted the simplest and commonest of things that you just don't get out of the box on Windows (or easily installed for that matter), like ssh/scp/rsync/etc.
Having tried many things, The best choice seems to be to favor the remote machine, since you can't easily fiddle with settings from there. From a windows machine to a unix/linux machine, always use a SCP client to their SSH, and from unix/linux, use smb/cifs client to connect and upload to the Windows File Sharing already present there.
I'm surprised this wasn't mentioned yet, but Dropbox is an instant and very pain-free way of doing it. Works on mac, Windows, and Linux across networks.