-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (84 loc) · 2.79 KB
/
index.html
File metadata and controls
101 lines (84 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<html>
<head>
<title>CBFS Downloads</title>
<script type="text/javascript" src="/monitor/jquery.min.js"></script>
<script type="text/javascript" src="/monitor/d3.v2.min.js"></script>
<script type="text/javascript" src="/monitor/monitor.js"></script>
<style type="text/css">
#bubbles {
position: absolute;
top: 0;
right: 0;
width: 500px;
font-size: 10px;
}
</style>
</head>
<body>
<h1>Download CBFS</h1>
<ul>
<li><a href="cbfs.mac.gz">MacOS X</a></li>
<li><a href="cbfs.win32.exe.gz">Windows (32-bit)</a> (or
<a href="cbfs.win64.exe.gz">64-bit</a>)</li>
<li><a href="cbfs.lin64.gz">Linux (64-bit)</a></li>
<li><a href="cbfs.lin32.gz">Linux (32-bit)</a></li>
<li><a href="cbfs.arm.gz">Linux (arm)</a>
(or <a href="cbfs.arm5.gz">arm5</a>)
</li>
<li><a href="cbfs.fbsd.gz">FreeBSD (64-bit)</a>
(<a href="cbfs.fbsd32.gz">32-bit</a>)</li>
</ul>
<h2>Usage</h2>
<p>
Make some space, find a couchbase server. Point an instance to
it. Enjoy.
</p>
<pre>
mkdir /tmp/cbfs
./cbfs -bucket=cbfs -couchbase=http://mango.hq.northscale.net:8091/ \
-root=/tmp/cbfs -cachePercent=10 -nodeID=YOURNAMEHERE3
</pre>
<h2>Client</h2>
<p>
If you want to do cool client stuff, you'll need <tt>cbfsclient</tt>.
</p>
<ul>
<li><a href="cbfsclient.mac.gz">MacOS X</a></li>
<li><a href="cbfsclient.win32.exe.gz">Windows (32-bit)</a> (or
<a href="cbfsclient.win64.exe.gz">64-bit</a>)</li>
<li><a href="cbfsclient.lin64.gz">Linux (64-bit)</a></li>
<li><a href="cbfsclient.lin32.gz">Linux (32-bit)</a></li>
<li><a href="cbfsclient.arm.gz">Linux (arm)</a>
(or <a href="cbfsclient.arm5.gz">arm5</a>)
</li>
<li><a href="cbfsclient.fbsd.gz">FreeBSD (64-bit)</a>
(<a href="cbfsclient.fbsd32.gz">32-bit</a>)</li>
</ul>
<h2>Admin Tool</h2>
<p>
General server parameters and maintenance tasks may be performed
with <tt>cbfsadm</tt>.
</p>
<ul>
<li><a href="cbfsadm.mac.gz">MacOS X</a></li>
<li><a href="cbfsadm.win32.exe.gz">Windows (32-bit)</a> (or
<a href="cbfsadm.win64.exe.gz">64-bit</a>)</li>
<li><a href="cbfsadm.lin64.gz">Linux (64-bit)</a></li>
<li><a href="cbfsadm.lin32.gz">Linux (32-bit)</a></li>
<li><a href="cbfsadm.arm.gz">Linux (arm)</a>
(or <a href="cbfsadm.arm5.gz">arm5</a>)
</li>
<li><a href="cbfsadm.fbsd.gz">FreeBSD (64-bit)</a>
(<a href="cbfsadm.fbsd32.gz">32-bit</a>)</li>
</ul>
<div id="bubbles">
</div>
</body>
<script type="text/javascript">
$(function() {
d3.json("/.cbfs/nodes/", function(d) {
drawBubbles(d, 500);
} );
});
</script>
</html>