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 55 56 57 58 59 60 61 62 63 64
|
WikipediaFS
===========
View and edit Wikipedia articles as if they were real files.
Requirements
------------
Python 2.4 http://www.python.org
Fuse 2.6.3 http://fuse.sourceforge.net
Fuse-python 0.2 http://fuse.sourceforge.net/wiki/index.php/FusePython
Install
-------
($ su)
# python setup.py install
Manual
------
$ man mount.wikipediafs
The manual page describes in details the configuration file, mount/umount and
sample usage. It is also available as HTML in doc/.
Troubleshooting
---------------
** I get the "fuse: reading device: Bad file descriptor" error
The fuse module is probably not loaded:
To test if it is loaded:
# lsmod | grep fuse
To load it:
# modprobe fuse
Add fuse to /etc/modules if you want this module to be loaded at boot.
** I get the "mount: unknown filesystem type 'wikipediafs'" error
Try this:
# ln -s /usr/bin/mount.wikipediafs /sbin/mount.wikipediafs
** Other
The FAQ available on the official Fuse website is probably worth reading.
URL : http://fuse.sourceforge.net/
License
-------
WikipediaFS is distributed under the terms of the GNU General Public
License. See the COPYING file for more information.
Related projects
----------------
WikipediaFS emacs mode:
http://www.emacswiki.org/emacs/WikipediaFs
|