How to send large file through E-mail IN Unix AIX

hI ALL,

I am newbie to Unix.There are 2 GB files in UNIX that should be sent to one of my friend who is working on Windows Environment.Is there any way to send these file to him? By Compressing like that?

Can anyone help on this?

With thanks,
Aravindh

Dropbox - Simplify your life

2GB is two thousand times larger than the maximum size I consider 'polite' to send over email -- 1 megabyte. Even these days I doubt it would fit in a lot of people's inboxes, and many email servers would rather time out than wait hours on end for the file to get uploaded and downloaded.

How well the file compresses depends on what it is. Text can compress very well, but the compression you get for anything else are unpredictable. Unless you get extremely efficient compression, it's not going to help a lot since you have to beat the 25+% overhead base64 email encoding uses to send binary files.

There's three ways I'd usually handle this:

  1. Set up a file server on the UNIX server(http, ftp, sftp, things like that) Windows needs to retrieve the file from, so the Windows user can download the file at their leisure. What kind of server depends on what features you need, what programs have to use it, and what kind of security is necessary.
  2. Set up a file server on the Windows machine(usually FTP) so the UNIX machine can upload the file automatically to the Windows one.
  3. Find a smarter way to bundle up the necessary data. Do they really need the entire 2-gigabyte monolith, every single time?

Hi Corona,

Actually the file is text file.It is data Exports taken from Hyperion Cubes.Thanks for the suggestions.

Hi,

You can compress your file before puting in FTP with the command

compress <name_fic>

Regards
jmc0031