Find the answer to your Linux question:
Results 1 to 8 of 8
Hi, There is gmail drive for windows platform where the person can access his gmail storage space as a drive. Do we have something similar on Linux? Means is there ...
  1. #1
    Just Joined!
    Join Date
    Aug 2005
    Posts
    39

    Gmail drive on linux?

    Hi,

    There is gmail drive for windows platform where the person can access his gmail storage space as a drive.
    Do we have something similar on Linux? Means is there any software that will allow the person to 'mount' the gmail storage and say 'copy/paste' from his system to the gmail account?

    ~A.

  2. #2
    Just Joined!
    Join Date
    Aug 2005
    Location
    INDIA/AP/Hyd
    Posts
    42

    http://linux.softpedia.com/get/Communications/Email/Php-Gmail-Drive-3095.shtml

    Try this one....I didnot browse the total content.


    http://linux.softpedia.com/get/Commu...ive-3095.shtml


    I think there shld be some download on this page.

  3. #3
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    Funny you should ask, the gmail drive was developed on linux first and ported to Windows...
    ...Anyway here's a link that may help...

  4. #4
    Linux Guru Vergil83's Avatar
    Join Date
    Mar 2004
    Posts
    2,408
    Code:
    apt-get install gmailfs
    done

    Debian Package Search
    Brilliant Mediocrity - Making Failure Look Good

  5. #5
    Just Joined!
    Join Date
    Jun 2008
    Posts
    2

    Question What Next?

    @Vergil83:

    Code:
    apt-get install gmailfs
    done
    After doing that, how do you use the program?

  6. #6
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    It is a fuse driver, you can mount it manually or add it to fstab. Check out this link

  7. #7
    Just Joined!
    Join Date
    Jun 2008
    Posts
    2
    bigtomrodney, Thanks for the quick reply
    I first did
    Code:
    sudo apt-get install gmailfs
    , then I went here. I tried the command line based mount, using:
    Code:
    mount -t gmailfs /usr/local/bin/gmailfs.py /path/of/mount/point -o username=gmailuser,password=gmailpass,fsname=zOlRRa
    and replaced "gmailuser" with my gmail name and "gmailpass" with my password, and I made "/path/of/mount/point" "/media/gmail", then it tells me only root can do that so I did the command prefaced by sudo. It returned the following:

    Traceback (most recent call last):
    File "/sbin/mount.gmailfs", line 17, in <module>
    import gmailfs
    File "/usr/lib/python2.5/site-packages/gmailfs.py", line 32, in <module>
    import libgmail
    File "/usr/local/lib/python2.5/site-packages/libgmail.py", line 36, in <module>
    import ClientCookie
    ImportError: No module named ClientCookie

    What is the problem? How can I fix it?

  8. #8
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    Looks like you need python-clientcookie. All you need to do is install that:-
    Code:
    apt-get install python-clientcookie
    Rerun the mount command after and see how you get on.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •