LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 09-01-2016, 01:13 AM   #1
patrick295767
Member
 
Registered: Feb 2006
Distribution: FreeBSD, Linux, Slackware, LFS, Gparted
Posts: 664

Rep: Reputation: 138Reputation: 138
How to send a large file by email (~50mb) with Windows/Linux/Mac?


Hi,

Regularly one can hear this classical question:
- how to send a large file by email (~50mb)?

However, at the age of dropbox, google drive, etc, there are still few that want to use email.

Would you know a good method, with a nice howto, to allow this?

First results of "send large file by email" on google results in 'Google drive'.
Maybe you've got some howto. Ideally, I guess, portable apps might a way to think for Windows.

Best regards
 
Old 09-01-2016, 03:26 AM   #2
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,112
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
What I use. No how to needed.

https://www.sendspace.com/

Works in Windows, Linux, Mac, BSD, IOS, Android.
 
Old 09-01-2016, 04:02 AM   #3
Teufel
Member
 
Registered: Apr 2012
Distribution: Gentoo
Posts: 616

Rep: Reputation: 142Reputation: 142
split a file into few parts with archiver.
 
Old 09-01-2016, 04:35 AM   #4
TenTenths
Senior Member
 
Registered: Aug 2011
Location: Dublin
Distribution: Centos 5 / 6 / 7
Posts: 3,475

Rep: Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553Reputation: 1553
This issue is not SENDING a 50Mb attachment, the problem is the other side RECEIVING a 50Mb attachment.

Most (I'd even go so far as to say ALL) companies and mail services have limits to the maximum size of an attachment.

GMAIL, which many companies also use commercially, has a limit of 25Mb on a mail message size, so given encoding overheads that's realistically an ~18Mb attachment.
 
Old 09-01-2016, 08:52 AM   #5
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941
Actually, there's also the issue of handling the file along the way.

With an object of this size, I would use another protocol such as FTP to move the file to some location that can store it. Then, e-mail the FTP address to the recipient.

This technique also eliminates the wasteful encoding of the binary data which is necessary to transfer the data using the SMTP protocol.
 
Old 09-01-2016, 08:53 AM   #6
smallpond
Senior Member
 
Registered: Feb 2011
Location: Massachusetts, USA
Distribution: Fedora
Posts: 4,140

Rep: Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263Reputation: 1263
Use sftp or scp to copy the file directly. Get Winscp for Windows.
 
Old 09-01-2016, 09:19 AM   #7
kernel-of-truth
LQ Newbie
 
Registered: Sep 2016
Distribution: 80% rhel/centos, 20% ubuntu server
Posts: 4

Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by rokytnji View Post
What I use. No how to needed.

https://www.sendspace.com/

Works in Windows, Linux, Mac, BSD, IOS, Android.
Nice ... Thanks for sharing.

L
 
Old 09-01-2016, 09:19 AM   #8
IsaacKuo
Senior Member
 
Registered: Apr 2004
Location: Baton Rouge, Louisiana, USA
Distribution: Debian Stable
Posts: 2,546
Blog Entries: 8

Rep: Reputation: 465Reputation: 465Reputation: 465Reputation: 465Reputation: 465
Well, to keep the file size under 18Mb, you could e-mail a self downloading "archive" file. Write the download script in vb script for maximum Windows compatibility, and give it a nice user friendly file name like LOVE-LETTER-FOR-YOU.txt.vbs
 
Old 09-01-2016, 09:35 AM   #9
kuser:)
Member
 
Registered: Sep 2005
Location: Olsztyn, Poland
Distribution: Slackware 14.1
Posts: 168

Rep: Reputation: 99
Quote:
Originally Posted by smallpond View Post
Use sftp or scp to copy the file directly. Get Winscp for Windows.
Stealing smallpond's idea...
Nah - just adding the info:
http://www.tecmint.com/sftp-command-examples/
https://winscp.net/eng/docs/guides
 
Old 09-01-2016, 09:58 AM   #10
Habitual
LQ Veteran
 
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Blog Entries: 37

Rep: Reputation: Disabled
Quote:
Originally Posted by IsaacKuo View Post
for maximum Windows compatibility, file name like LOVE-LETTER-FOR-YOU.txt.vbs
Man, I was Soooooooo busy that weekend.
 
Old 09-01-2016, 12:33 PM   #11
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,882
Blog Entries: 13

Rep: Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930Reputation: 4930
Quote:
Originally Posted by TenTenths View Post
This issue is not SENDING a 50Mb attachment, the problem is the other side RECEIVING a 50Mb attachment.

Most (I'd even go so far as to say ALL) companies and mail services have limits to the maximum size of an attachment.

GMAIL, which many companies also use commercially, has a limit of 25Mb on a mail message size, so given encoding overheads that's realistically an ~18Mb attachment.
Quote:
Originally Posted by sundialsvcs View Post
Actually, there's also the issue of handling the file along the way.

With an object of this size, I would use another protocol such as FTP to move the file to some location that can store it. Then, e-mail the FTP address to the recipient.

This technique also eliminates the wasteful encoding of the binary data which is necessary to transfer the data using the SMTP protocol.
Both of the above.

@patrick295767 what are you really trying to do?
 
Old 09-02-2016, 01:29 AM   #12
patrick295767
Member
 
Registered: Feb 2006
Distribution: FreeBSD, Linux, Slackware, LFS, Gparted
Posts: 664

Original Poster
Rep: Reputation: 138Reputation: 138
Quote:
Originally Posted by rokytnji View Post
What I use. No how to needed.

https://www.sendspace.com/

Works in Windows, Linux, Mac, BSD, IOS, Android.
what about security/conf. of yours docs?
 
Old 09-02-2016, 01:51 AM   #13
pan64
LQ Addict
 
Registered: Mar 2012
Location: Hungary
Distribution: debian/ubuntu/suse ...
Posts: 21,850

Rep: Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309Reputation: 7309
compress it with a password first and noone will see the content.
 
Old 09-04-2016, 01:17 AM   #14
patrick295767
Member
 
Registered: Feb 2006
Distribution: FreeBSD, Linux, Slackware, LFS, Gparted
Posts: 664

Original Poster
Rep: Reputation: 138Reputation: 138
Quote:
Originally Posted by pan64 View Post
compress it with a password first and noone will see the content.
Any rar, zip, 7z,... archives are not a problem today.
 
Old 09-09-2016, 01:46 PM   #15
dave@burn-it.co.uk
Member
 
Registered: Sep 2011
Distribution: Puppy
Posts: 601

Rep: Reputation: 172Reputation: 172
It is far faster and safer to use FTP and send email the link.
Email was not designed for the transfer of large amounts of data and is extremely inefficient.
 
  


Reply



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
seeking HOWTO -- send email to large list of folks SaintDanBert Linux - Desktop 4 11-15-2010 03:20 AM
Best Free Software to Securely Send Large File To Friend Over the Net NewKubuntuGuy Linux - Software 16 10-31-2010 12:08 PM
LXer: Review: Top 5 Email Client For Linux, Mac OS X, and Windows Users LXer Syndicated Linux News 0 08-17-2009 01:00 PM
looking for tools to send large email attachments bayonetblaha Linux - Software 3 02-13-2008 10:39 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 10:41 AM.

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