public
Description: A Fuse filesystem for your friends' files on Pownce
Homepage: http://rcrowley.org/2008/03/22/powncefs/
Clone URL: git://github.com/rcrowley/powncefs.git
powncefs / README
100644 78 lines (56 sloc) 1.96 kb
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
NAME
powncefs -- A Fuse filesystem for your friends' files on Pownce
 
SYNOPSIS
 
Linux, as root:
 
./powncefs.py <mountpoint>
ls -l <mountpoint>
fusermount -u <mountpoint>
 
Mac:
 
./powncefs.py <mountpoint>
ls -l <mountpoint>
umount python2.5@fuse0
 
DESCRIPTION
Creates a directory for each of your friends on Pownce containing
all of the files they've uploaded to the site.
 
DEPENDENCIES
The short list:
FUSE or Fuse or fuse, the Filesystem in USEr space
Leah's OAuth Python library
 
Verbositized:
 
Linux (Ubuntu, at least):
 
$ sudo apt-get install python-fuse python-json
 
$ cd /usr/lib/python2.5/site-packages/
$ sudo svn co http://oauth.googlecode.com/svn/code/python/oauth
 
Mac OS X Leopard:
 
Install Xcode from http://developer.apple.com/tools/download/
Install MacPorts 1.6 from http://www.macports.org/install.php
$ export PATH="/opt/local/bin:~/bin:$PATH"
$ export MANPATH="/opt/local/share/man:$MANPATH"
$ sudo port selfupdate
 
$ sudo port install macfuse fuse-bindings-python25
This will fail, so edit the fuse-bindings-python and
fuse-bindings-python25 Portfiles, replacing dependencies on fusefs
and libfuse with dependencies on macfuse
$ sudo port install macfuse fuse-bindings-python25
 
$ sudo port install py25-hashlib
$ cd /opt/local/lib/python2.5/site-packages/
$ sudo port install wget
$ sudo wget \
http://internap.dl.sourceforge.net/sourceforge/json-py/json-py-3_4.zip
$ sudo unzip json-py-3_4.zip \*.py
$ sudo rm json-py-3_4.zip
 
$ cd /opt/local/lib/python2.5/site-packages/
$ sudo svn co http://oauth.googlecode.com/svn/code/python/oauth
 
VERSION
0.2
 
DATE
2008-06-03
 
AUTHOR
Richard Crowley <r@rcrowley.org>
 
SEE ALSO
<http://rcrowley.org/2008/03/22/powncefs/>
<http://randomfoo.net/blog/id/4158>
 
LICENSE
This work is licensed under a Creative Commons
Attribution-Noncommercial-Share Alike 3.0 Unported License
<http://creativecommons.org/licenses/by-nc-sa/3.0/>