Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 10-09-2004, 03:03 PM   #1 (permalink)
Insane
 
gmail website?

Lately i've been seeing programs online allowing gMail account (1gb) to be used as extra harddrive space. If this can be accomplished i was wondering how hard it would be to turn a gmail webaccount into server space to build and store and store as a webpage. does this sound practical or doable? thanks.
__________________
Lovely party Geoffery, but theres a turd in the punch bowl.
-George Carlin
cockmonger is offline  
Old 10-09-2004, 03:08 PM   #2 (permalink)
Upright
 
Location: Sydney Australia
Quote:
Originally Posted by cockmonger
Lately i've been seeing programs online allowing gMail account (1gb) to be used as extra harddrive space. If this can be accomplished i was wondering how hard it would be to turn a gmail webaccount into server space to build and store and store as a webpage. does this sound practical or doable? thanks.
"Shit" said the king and a 1,000 loyal arse-holes glistened in the sun.
fearless_leader is offline  
Old 10-09-2004, 03:18 PM   #3 (permalink)
Loves my girl in thongs
 
arch13's Avatar
 
Location: North of Mexico, South of Canada
I want to see the proof of concept of this!
I'm sure it violates Gmail's TOS, but just the proof that it could be done would be slashdot and possible AP fodder!
In otherwords Cockmonger, do it and there will be a white paper on you
__________________
Seen on an employer evaluation:

"The wheel is turning but the hamsters dead"
____________________________
Is arch13 really a porn diety ? find out after the film at 11.
-Nanofever
arch13 is offline  
Old 10-09-2004, 03:25 PM   #4 (permalink)
*edited for content*
 
Irishsean's Avatar
 
Location: Austin, TX
Anyone else heard of this, be very interesting if its true... Hell, I don't even care about the webserver part. If someone could make a program that made my account appear to be a hard drive I could back stuff up to it to take to a friends house and that would be a lot easier than burning CDs everytime I want to take over a 10 meg file.
__________________
There are no absolute rules of conduct, either in peace or war. Everything depends on circumstances.
Leon Trotsky
Irishsean is offline  
Old 10-09-2004, 03:46 PM   #5 (permalink)
Tilted F*ckhead
 
Church's Avatar
 
Location: New Jersey
Quote:
Originally Posted by Irishsean
Anyone else heard of this, be very interesting if its true... Hell, I don't even care about the webserver part. If someone could make a program that made my account appear to be a hard drive I could back stuff up to it to take to a friends house and that would be a lot easier than burning CDs everytime I want to take over a 10 meg file.
Or you could buy a jump drive?
__________________
Through counter-intelligence, it should be possible to pinpoint potential trouble makers, and neutralize them.
Church is offline  
Old 10-09-2004, 05:21 PM   #6 (permalink)
I am not permanent.
 
glytch's Avatar
 
Location: Tennessee
I'm not sure about using it as a webserver, (actually, I'm almost positive this isn't possible), but there have been ways to use Gmail as mountable storage under Linux, if that helps any.

Actually, there is a Windows program that does this as well. Check out <a href="http://www.viksoe.dk/code/gmail.htm">GMail Drive.
__________________
If you're flammable and have legs, you are never blocking a fire exit. - Mitch Hedberg
glytch is offline  
Old 10-09-2004, 05:49 PM   #7 (permalink)
Psycho
 
shadowalker's Avatar
 
Location: Firefox yourself and change the world!
I personially use 2 of my gmail accounts as a gmail drive, its nice to be able to access files on the road, when i know i'm going out and i may need access to some i upload them to my gmail drive, and then i can pick the off another system when i get there, I do keep Gmail Drive on my usb drive so i can have access later on other systems if thay have something i want.
__________________
I'll make ya famous!
shadowalker is offline  
Old 10-09-2004, 07:43 PM   #8 (permalink)
Professional Loafer
 
bendsley's Avatar
 
Location: texas
GmailFS provides a mountable Linux filesystem which uses your Gmail account as its storage medium. GmailFS is a Python application and uses the FUSE userland filesystem infrastructure to help provide the filesystem, and libgmail to communicate with Gmail.

GmailFS supports most file operations such as read, write, open, close, stat, symlink, link, unlink, truncate and rename. This means that you can use all your favourite unix command line tools to operate on files stored on Gmail (e.g. cp, ls, mv, rm, ln, grep etc. etc.).

Here is an image for the proof-of-concept.

--------------------------------------------------------------------------
Installing GmailFS:
-----------------
1) Make sure you have Python 2.3 installed. Most Linux distributions will have their own package for this (you'll also need the appropriate python2.3-dev packages).

2) Install version 1.3 of FUSE. Some Linux distributions (such as Debian) come with a package. If your distro doesn't, you can find the source at FUSE's SourceForge download page.

3) Download the Python FUSE bindings. These are also available from FUSE's CVS page - but if you grab CVS, remember that the Python bindings don't work with the rest of CVS at the moment (as at 2004-08-26); you still need to use FUSE 1.3. Untar fuse-python.tar.gz and follow the instructions in fuse-python/INSTALL.

4) Download libgmail. After untarring, copy libgmail.py and constants.py to somewhere Python can find them (/usr/local/lib/python2.3/site-packages/ works for Debian, others may vary).

5) Download gmailfs.tar.gz. After untarring, copy gmailfs.py to somewhere easily accessible (for example, /usr/local/bin/gmailfs.py).

-- Copy mount.gmailfs to /sbin/mount.gmailfs. This is a modified version of mount.fuse distributed with FUSE 1.3.

--------------------------------------------------------------------------
Using GmailFS
-------------
You can mount your Gmail filesystem either via fstab or on the command line using mount.

To use fstab, create an entry /etc/fstab that looks something like:

/usr/local/bin/gmailfs.py /path/of/mount/point gmailfs noauto,username=gmailuser, password=gmailpass, fsname=zOlRRa
Note: If you cut and paste this entry remember to remove the spaces after the commas

The username and password fields speak for themselves. The fsname is the name of this Gmail filesystem. It is important to choose a hard-to-guess name here - because if others can guess the fsname, they can corrupt your Gmail filesystem by injecting spurious messages into your Inbox.

To mount from the command line, do:
mount -t gmailfs /usr/local/bin/gmailfs.py /path/of/mount/point -o username=gmailuser, password=gmailpass, fsname=zOlRRa
Note: If you cut and paste this entry remember to remove the spaces after the commas

Warning: both of these methods have serious security issues. If you run a multi-user system, others can easily see your Gmail username and password. If this is a problem for you then you will need to modify gmailfs.py , changing DefaultUsername,DefaultPassword and DefaultFsname as appropriate. A future version of GmailFS will load these values from config files in the user's home directory.

GmailFS also has a blocksize option. The default blocksize is 5MB. Files smaller than the minimum blocksize will only use the amount of space required to store the file, NOT the full blocksize. Note that any files created during a previous mount with a different blocksize will retain their original blocksize until deleted. For most applications you will make best use of your bandwidth by keeping the blocksize as large as possible.

When you delete files, GmailFS will place the files in the trash. libgmail does not currently support purging items from the trash, so you will have to do this manually when logged into your Gmail account.

To avoid seeing the messages created for your Gmail filesystem you probably want to create a filter which automatically archives GmailFS messages as they come into your Inbox. The best approach is probably to search for the fsname value; it'll be in the subject of all GmailFS messages.
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane."
bendsley is offline  
Old 10-09-2004, 08:47 PM   #9 (permalink)
Banned
 
Location: USA
There's a Windows version of GmailFS now. It's here: http://www.viksoe.dk/code/gmail.htm
heinousk is offline  
Old 10-09-2004, 09:21 PM   #10 (permalink)
Professional Loafer
 
bendsley's Avatar
 
Location: texas
Yeah, but.......why the hell would you want to use windows? =)
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane."
bendsley is offline  
Old 10-10-2004, 11:08 AM   #11 (permalink)
Upright
 
Location: Arizona
While we're on the topic of Gmail enhancements, I thought I should mention Gmail Wireless and gPopper just for fun.
__________________
Student Extraordinaire[/FONT]

"The only difference between God and Adolf Hitler
is that God is more proficient at genocide."
toilet_duck is offline  
Old 10-10-2004, 11:37 AM   #12 (permalink)
PIKE!
 
ibis's Avatar
 
Couldn't you set up Apache or some other kind of simular program to share from the gmailfs volume?

Last edited by ibis; 10-10-2004 at 11:39 AM..
ibis is offline  
Old 10-10-2004, 09:07 PM   #13 (permalink)
Insane
 
so illegal stealing of bandwidth is the final answer huh? worth a shot.
__________________
Lovely party Geoffery, but theres a turd in the punch bowl.
-George Carlin
cockmonger is offline  
Old 10-11-2004, 04:11 PM   #14 (permalink)
Psycho
 
jonjon42's Avatar
 
Location: inside my own mind
this actually isn't that hard since all the gmail "website" is is a big javascript that sends and recieves messages with the server. Take apart the script and you can do something like this without too much trouble, but it does take time.
__________________
A damn dirty hippie without the dirty part....
jonjon42 is offline  
 

Tags
gmail, website


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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 04:25 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54