SlackwareThis Forum is for the discussion of Slackware Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
when i try mount one gmail partition here, it show:
-----
root@host:~# mount -t gmailfs /usr/local/bin/gmailfs.py /mnt/gmailfs/ -o
Username=XXXX,Password=XXXX,Fsname=XXXX
root@host:~# Traceback (most recent call last):
File "/usr/local/bin/gmailfs.py", line 21, in ?
from fuse import Fuse
File "/usr/lib/python2.4/site-packages/fuse.py", line 24, in ?
from _fuse import main, FuseGetContext, FuseInvalidate
ImportError: libfuse.so.2: cannot open shared object file: No such file or directory
-----
but, if i run "mount", it show:
--
gmailfs on /mnt/gmailfs type fuse (rw,nosuid,nodev)
--
so, when i type....
--
root@host:~# ls /mnt/gmailfs
ls: /mnt/gmailfs: Transport endpoint is not connected
--
ImportError: libfuse.so.2: cannot open shared object file: No such file or directory
Is libfuse installed? Look in /usr/lib for libfuse*. You may be abler to resolve the issue by making a symbolic link between the existing libfuse shared library and libfuse.so.2.
You seem to be missing fsname= argument acording to that link:
Code:
mount -t gmailfs /usr/local/bin/gmailfs.py /path/of/mount/point -o username=gmailuser, password=gmailpass, fsname=zOlRRa
Quote:
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.
PS: There are rules in the forum, bumping a thread before 24 hours without answers is not allowed.
It uses gmail as well. And provide you with a web interface to upload and download whatever you want to put into gmail.
I personally prefer to do it manually (including splitting files larger then 10mbytes) and use the email contents as meta data. So, using the search function on gmail web interface works like spotlight in Mac Os X.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.