vote up 1 vote down star

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?

flag

11 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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/

link|flag
vote up 1 vote down

IIRC

  • Samba lets you access windows shares from Linux
  • SFU would let the windows side present an NFS interface
  • I haven't found any I lake but there are free and not free FTP servers for windows
  • I once a long time ago ran SSH on a windows box so it can be done.
link|flag
vote up 0 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag
vote up 10 vote down

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.

link|flag
+1 - assuming you're on a local network, this is a reasonable approach; not so much if you're looking for a remote transfer – kdgregory Jan 5 at 19:11
+1. If you use smbfs, you can mount the remote Windows share as a file system on Linux; then, you can just copy files back and forth. – Brian Clapper Jan 11 at 19:09
vote up 5 vote down

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.

link|flag
vote up 1 vote down

You could also pull the file with PSCP.

link|flag
vote up 0 vote down
  1. Start samba on the Linux box. This is if the 2 are in the same lan.
  2. Start a ftp server on the Linux box.
  3. Start sshd on server and copy with winscp from the linux box.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.