Google Docs To Host Any File Type
ezabi writes "According to a post on the official Google blog, in the coming weeks Google Docs will offer to host all file types with a limit of 250 MB, which as they say is larger than the current limit for email attachments. This will have its consequences: paid file sharing will die, more shared pirated material, newer vulnerabilities and malware distribution channels..."
Microsoft is moving into the ad-supported online hosting biz with SkyDrive. Looking at my SkyDrive right now, it tells me I have 24.99GB available space (I'm not really using it for anything). Among other uses, once Office 2010 ships, SkyDrive will be a portal to the Office 2010 Web Apps. If you upload Office documents to your SkyDrive, you will be able to click on them and view/edit them in your browser, without owning your own copy of Office.
Breakfast served all day!
Zip, Rar or some of file compression program will split files will work also.
They cost money because it costs money to share data. Or did you think bandwidth, servers, and storage were free?
250mb is pretty paltry by their standards
It's not 250MB total storage space. It's 250MB maximum per file. It's probably true that most e-mail clients/servers do a poor job of handling 250MB attachments. In that sense, this is probably a good thing; we've all complained about the coworker who sends out a 15MB movie of their kids playing with the dog to a mailing list, but what option do most average users have? Even if they know what FTP is, they don't own any servers. If Google is going to handhold consumers through the process of storing big files in the Web instead of sending them as attachments, I say bravo.
Breakfast served all day!
Except 1/8th the size?
I'm not sure if you've noticed: rampant file sharers think EVERYTHING is free. At least for them.
Fixed that for you. ;)
It doesn't seem that anyone else commenting on the article has noticed this yet, but if you click through to the Google Docs blog it has the pricing info:
http://googledocs.blogspot.com/2010/01/upload-and-store-your-files-in-cloud.html
Instead of emailing files to yourself, which is particularly difficult with large files, you can upload to Google Docs any file up to 250 MB. You'll have 1 GB of free storage for files you don't convert into one of the Google Docs formats (i.e. Google documents, spreadsheets, and presentations), and if you need more space, you can buy additional storage for $0.25 per GB per year. This makes it easy to backup more of your key files online, from large graphics and raw photos to unedited home videos taken on your smartphone. You might even be able to replace the USB drive you reserved for those files that are too big to send over email.
Combined with shared folders, you can store, organize, and collaborate on files more easily using Google Docs. For example, if you are in a club or PTA working on large graphic files for posters or a newsletter, you can upload them to a shared folder for collaborators to view, download, and print.
Again, after the 1gb limit, that $0.25 per gb-yr. By comparison, Amazon S3 is $0.15*12=$1.80 per gb-yr, almost an order of magnitude more expensive.
> For that matter, how would a Linux user put it together? dd?
man cat
Warning: this article may contain humor, sarcasm, parody, and perhaps even irony. Read at your own risk.
Presumably the "Premier Edition" part means you'll have to pay. So for the majority of applications where you have this much data, Google will give you convenience or zero cost, but not both.
Premier Edition is $50 USD per user per year.
For a site about things like basic rights, Slashdot users sure do like to censor "dissent".
assuming that you are in an empty directory:
split -a 5 -b 250000000 sourcedir/bigfile
cat * > bigfile
in Windows:
type * > bigfile
Gzipped version:
tar -zc sourcedir/bigfile | split -a 5 -b 250000000 -
cat * | tar -zt 1> bigfile
P.S. I use -a 5 to backup entire disk images in 50MB files, -a 2 is usually the default. 2 will support up to 26*26 = 676 files in your archive.
Everything I write is lies, read between the lines.
Why are browsers so horribly unfriendly for uploads?
Perhaps Google could put some money into fixing Firefox:
https://bugzilla.mozilla.org/show_bug.cgi?id=249338
or improving it
https://bugzilla.mozilla.org/show_bug.cgi?id=243468
Does Chrome have a decent upload UI? I can't recall ...
For every expert, there is an equal and opposite expert. - Arthur C. Clarke