Difference between revisions of "Gmailfs"


From Knoppix Documentation Wiki
Jump to: navigation, search
(link to gmailfs page)
m (Installing)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
Using your Gmail account as extra storage space
+
Using your Gmail account as extra storage space.  These notes are for using Knoppix 3.8.2.
 +
 
 +
= Installing =
 +
* The hard way (on hold - found the gmailfs package)
 +
<pre><nowiki>apt-get update
 +
apt-get install python2.3 python2.3-dev
 +
apt-get install libfuse2 fuse-utils
 +
apt-get install
 +
 
 +
</nowiki></pre>
 +
 
 +
* The easy way (sort of - having issues with unionfs)
 +
<pre><nowiki># as root
 +
apt-get update
 +
apt-get install gmailfs
 +
# use the defaults when prompted
 +
usermod -g $(id -g knoppix) -G $(id -G knoppix |tr ' ' ','),fuse knoppix
 +
 
 +
# become user knoppix
 +
sudo su - knoppix
 +
mkdir gmailfs
 +
 
 +
 
 +
</nowiki></pre>
 +
 
 +
= Using =
 +
 
 +
= Links =
 
* [http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html gmailfs]
 
* [http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html gmailfs]
 +
* [http://sourceforge.net/projects/fuse/ fuse]
 +
* [http://sourceforge.net/projects/libgmail/ libgmail]
 +
* [http://richard.jones.name/google-hacks/gmail-filesystem/fuse-python.tar.gz fuse python bindings]
 +
* [http://richard.jones.name/google-hacks/gmail-filesystem/gmailfs-0.4.tar.gz gmailfs source]

Latest revision as of 04:44, 1 September 2005

Using your Gmail account as extra storage space. These notes are for using Knoppix 3.8.2.

Installing

  • The hard way (on hold - found the gmailfs package)
apt-get update
apt-get install python2.3 python2.3-dev
apt-get install libfuse2 fuse-utils
apt-get install 

  • The easy way (sort of - having issues with unionfs)
# as root
apt-get update
apt-get install gmailfs
# use the defaults when prompted
usermod -g $(id -g knoppix) -G $(id -G knoppix |tr ' ' ','),fuse knoppix

# become user knoppix
sudo su - knoppix
mkdir gmailfs


Using

Links