Secure Platform Independent File Transfer

Secure Platform Independent File Transfer

Post just about everything that isn't directly related to Spring here!

Moderator: Moderators

Post Reply
User avatar
Prominence
Posts: 97
Joined: 24 Jun 2008, 07:21

Secure Platform Independent File Transfer

Post by Prominence »

What are some good tools for securely transferring files between devices of different platform?
User avatar
SinbadEV
Posts: 6475
Joined: 02 May 2005, 03:56

Re: Secure Platform Independent File Transfer

Post by SinbadEV »

I suspect you are a spammer but, just in case, "sftp" is the correct answer to this question.

windows: Putty has a tool called PSFTP
http://www.chiark.greenend.org.uk/~sgta ... nload.html

http://filezilla-project.org/ should help there too.

Pretty much every Linux flavour has it built in, and you should be able to find client and server software for mac, android and iOS
User avatar
AF
AI Developer
Posts: 20687
Joined: 14 Sep 2004, 11:32

Re: Secure Platform Independent File Transfer

Post by AF »

ssh + rsync
or
ssh + ftp aka sftp

pretty much SSH + pipe/transfer program will do the job, pretty standard method

If you like, use git bash or cygwin and you'll be able to use the same commands everywhere. e.g.:

Code: Select all

rsync -aHS username@server:remotepath/ localpath/
User avatar
Prominence
Posts: 97
Joined: 24 Jun 2008, 07:21

Re: Secure Platform Independent File Transfer

Post by Prominence »

The thing that I was looking for were cost effective hardware implementations of 2 to 4 bays file server or NAS with RAID 0 and 1. Something that is quiet and consume little power, yet something that doesn't spin down the disk. Diskless recommendations are fine too.

I currently use SSH software that came from SSH Comm. Sec. to do SFTP. Perhaps I should give filezilla a try.
Post Reply

Return to “Off Topic Discussion”