forked from jcline/fuse-google-drive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
50 lines (41 loc) · 1.65 KB
/
README
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
fuse-google-drive is a fuse filesystem wrapper for Google Drive released under GPLv2
Currently in alpha stages. Do not trust this for anything important.
Status:
read() works, cache not freed until unmount, should detect file updates
directory listing works, no heirarchy
incorrect stat() info, filesize is correct, fails (as it should) on nonexistant files
redirecturi is now hardcoded -- you do not need the file
clientsecrets and client id should now be in $XDG_CONFIG_HOME/fuse-google-drive/
Discussion:
#fuse-google-drive on irc.freenode.net
Dependencies:
fuse
libcurl
json-c aka libjson
libxml2
Build Dependencies:
autotools
make
If you are on one of the systems that does not include development files with
packages, then make sure you install the development packages for each of the
dependencies.
Compilation:
$ ./autogen.sh
$ ./configure
$ make
Usage:
Right now you need to go to http://code.google.com/apis/console and create
a new app and generate a client id and client secret for an install application.
The clientid value and clientsecrets value should each go into:
$XDG_CONFIG_HOME/fuse-google-drive/clientid
$XDG_CONFIG_HOME/fuse-google-drive/clientsecrets
resepectively. You should `chmod 700 $XDG_CONFIG_HOME/fuse-google-drive` as well.
If the folder does not exist at runtime, a helpful message is printed and the
directory is created with the correct permissions if possible.
Note: If $XDG_CONFIG_HOME is unset on your system, it defaults to ~/.config/.
$ mkdir mountpoint
$ ./fuse-google-drive mountpoint
Thanks to:
http://www.cs.nmsu.edu/~pfeiffer/fuse-tutorial/
https://www.ibm.com/developerworks/linux/library/l-fuse/
Gregor on FreeNode