LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-10-2010, 03:09 PM   #1
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Rep: Reputation: 1
Best Free Software to Securely Send Large File To Friend Over the Net


Hi,

I am looking for good free software to send large files to a friend. I have tried Skype, but it was too slow, so I am looking for something that basically only uses the two PCs, some software, and no third party or server. We can figure out our IPs, if that would be a step to eliminating a 3rd party or service.

I have searched the internet for terms like P2P, private P2P, F2F, SFTP, etc., and I'm just more confused! What's free and rocks? It's not for music or multiple users, just for 2 users and big documents.


Software Requirements:

* Secure
* Free or open source
* Both Linux (for me) and Windows versions (for my friend)
* Good GUI, easy to use (no command line)


Thank you for your help,
NewKubuntuGuy

Last edited by NewKubuntuGuy; 03-10-2010 at 03:11 PM.
 
Old 03-10-2010, 03:36 PM   #2
rweaver
Senior Member
 
Registered: Dec 2008
Location: Louisville, OH
Distribution: Debian, CentOS, Slackware, RHEL, Gentoo
Posts: 1,833

Rep: Reputation: 167Reputation: 167
Well I would suggest using ssh/scp. There are graphical windows clients (winscp is great) and servers (several, cli and gui) and in linux if you have ssh open and haven't disabled it its already setup server wise and then you can use just about any client (filezilla, and even knoq, dolphin, etc if memory serves me.)

I'd note even doing this commandline is trivial--

push to host
Code:
scp filename username@hostname:/path/where/you/want/it/remotely
pull from host
Code:
scp username@hostname:/path/to/filename.ext /path/to/where/you/want/it/locally

Last edited by rweaver; 03-10-2010 at 03:44 PM.
 
1 members found this post helpful.
Old 03-10-2010, 05:51 PM   #3
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Original Poster
Rep: Reputation: 1
I appreciate your reply. It still sounds complicated. I can go with a big popular service if the speed is OK. I do like open source stuff and linux though.
 
Old 03-10-2010, 08:39 PM   #4
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,997

Rep: Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628
You have a number of options. One is a secure connection. Another is to encrypt the files and not care so much.

Secure connections tend to be based a bit on the transfer method. Like one might make a https server and secure connection that way or ssh to a ftp share or some other vpn to some transfer means.


PGP and GPG and KGPG are ways to encrypt files along with more simple means. It will be faster most likely if you have encrypted the files first if you demand transfer speed as sole reason. All vpn's tend to have some overhead.
 
1 members found this post helpful.
Old 03-10-2010, 09:34 PM   #5
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
Hi,

As far as I know most modern filebrowsers have built in scp/rsync functionality. You will just need to set up an ssh server (just install the package: probably called openssh-server in ubuntu), then as long as you have an account and know the IP address of the remote machine running the ssh server you can copy the files in much the same way you copy local files in the filebrowser.

Cheers,

Evo2.

PS. Please don't ask me for detailed instructions on how to use your file browser: I dislike and don't use file browsers.
PPS. Your post says you don't want to use a server: that is asking the impossible, any program that accepts connections in the fashion that you want, is - by definition - a server.
 
Old 03-11-2010, 05:36 AM   #6
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by jefro View Post
You have a number of options. One is a secure connection. Another is to encrypt the files and not care so much.
That may be simplest for me, since my friend is not very advanced beyond Windows basics and he's very busy. I have used TrueCrypt and I think it's awesome. Anyone reading this, I highly recommend it. Great simple program.

So, if I encrypt first, it would simpler, but then: How to send large files? Should I use a web service or server? Usually they're not so big, but occasionally it would be nice to send a video without using youtube or whatever to do it.
 
Old 03-11-2010, 05:50 AM   #7
pierre2
Member
 
Registered: May 2009
Location: Perth, AU
Distribution: LinuxMint
Posts: 388
Blog Entries: 9

Rep: Reputation: 88
Have thought of using Opera Unite ?.

in the latest version of Opera, V10, you simply setup a link to the file or photo to share,
& send the link to your friend.
They can use any O/S or browser to get the file(s).

it's secure, as only the person who knows that url link can grab the file(s).
you can even pwd the link.

http://unite.opera.com/support/

Last edited by pierre2; 03-11-2010 at 05:54 AM.
 
Old 03-11-2010, 07:30 AM   #8
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Original Poster
Rep: Reputation: 1
I found this list:

http://en.wikipedia.org/wiki/Categor...t_replacements

http://en.wikipedia.org/wiki/Categor...aring_software

Last edited by NewKubuntuGuy; 03-11-2010 at 07:34 AM.
 
Old 03-11-2010, 08:02 AM   #9
grisu42
LQ Newbie
 
Registered: Mar 2010
Posts: 6

Rep: Reputation: 1
As already pierre2 said Opera unite is a good option.

Use GPG first if you want to encrypt the file - never tried before the windows version, but according to http://www.gnupg.org/related_softwar...tends.html#gui there should be a good windows GUI, directly integrated in the windows shell.

Alternative you can also use Skype for file sending. Or a similar chat client.
 
Old 03-11-2010, 10:54 AM   #10
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by grisu42 View Post
As already pierre2 said Opera unite is a good option.

Alternative you can also use Skype for file sending. Or a similar chat client.

Thanks for your response. My search was stimulated by the fact that I tried SKYPE and it seems so SLOW. It seems others have noticed that.

I know how to encrypt with TrueCrypt, so I guess I am wondering how to send big files easily.
 
Old 03-11-2010, 02:50 PM   #11
rweaver
Senior Member
 
Registered: Dec 2008
Location: Louisville, OH
Distribution: Debian, CentOS, Slackware, RHEL, Gentoo
Posts: 1,833

Rep: Reputation: 167Reputation: 167
A slow connection could be a result of an async network speed. You might be able to download at 1MB and upload at 50k.. so sending a big file will take forever. What kind of connection are you on?
 
Old 03-11-2010, 05:10 PM   #12
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,997

Rep: Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628Reputation: 3628
Many of the messengers can transfer files directly. As above skype might be used. Opera may be a good solution as is Acrobat.com's connectnow and maybe hamachi.

If you are using kubuntu then you may already have kgpg. http://en.wikipedia.org/wiki/KGPG http://utils.kde.org/projects/kgpg/

I agree that many home isp's offer a much slower upload speed, no matter how fast down is you can't change up speeds.

Last edited by jefro; 03-11-2010 at 05:11 PM.
 
Old 03-11-2010, 05:38 PM   #13
j1alu
Member
 
Registered: Apr 2009
Distribution: debian gnu/linux
Posts: 798

Rep: Reputation: Disabled
NewKubuntuGuy, in one of your links above dropbox is mentioned. i use it and i like it (because it is easy). you also may use it without nautilus:
http://www.zeroathome.de/wordpress/d...lus-verwenden/
(translate it online).
but from what i heard ubuntus cloud is kind of a fork of it (not sure if it works with kubuntu too).
I use it to store my config files, so if setting up a new OS i just open it in the browser and download the configs i need. as far i know you can't upload/store encrypted files (i tried with gpg).
adrive does allow upload of encrypted files. i like it too, but for me its a bit confusing.

my ISP offers a service called GigaMail ( i upload a huge file, send a mail to my pal, he may download it afterwards). as it took me a while to find out you may check if yours has got something similar).

as already said: an instant-messanger might be a choice too...
 
Old 03-11-2010, 08:49 PM   #14
NewKubuntuGuy
LQ Newbie
 
Registered: Mar 2010
Posts: 14

Original Poster
Rep: Reputation: 1
Thanks.

The connection is about

7000 kbps down
3000 kbps up

I just tried Skype with another friend and it was fast, so the one recipient may have had a crappy network path or something...
 
Old 03-11-2010, 08:58 PM   #15
catkin
LQ 5k Club
 
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
Blog Entries: 31

Rep: Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208Reputation: 1208
Quote:
Originally Posted by NewKubuntuGuy View Post
I know how to encrypt with TrueCrypt, so I guess I am wondering how to send big files easily.
Any encryption software including TrueCrypt randomises data thus making it incompressible; there is likely to be compression somewhere along whatever "damp string" connects you and your friend. Thus an encrypted file will take longer to transmit. The solution is to compress before encrypting.
 
  


Reply

Tags
files, ftp, opera, p2p, peertopeer, private, secure, skype, transfer, vpn



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
best free large-file file sharing/hosting sites? linus72 General 4 04-23-2009 05:16 AM
Is there a way to send files to a friend, similar to MSN send file protocol? pablom Linux - Networking 1 05-07-2007 10:16 PM
ftp large file - lose net connect red hat 6 steve2k Linux - Networking 0 03-10-2004 10:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:43 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration