-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (88 loc) · 3.32 KB
/
index.html
File metadata and controls
110 lines (88 loc) · 3.32 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
102
103
104
105
106
107
108
109
110
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html>
<head>
<title>UNFS3 Homepage</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link rel="stylesheet" href="index.css" />
</head>
<body>
<table id="container">
<tr>
<td id="menu">
<div>
<img id="logo" src="images/logo/white-on-blue.png" alt="UNFS3 logo">
<br><br>
<div class="menuitem">Download</div>
<div>
<ul>
<li>
<a href="https://github.com/unfs3/unfs3/releases">
Releases</a>
</li>
</ul>
</div>
<br>
<div class="menuitem">Links</div>
<div>
<ul>
<li><a href="https://github.com/unfs3">
GitHub page</a>
</li>
<li><a href="https://github.com/unfs3/unfs3/issues">
Report an issue</a>
</li>
<li><a href="https://github.com/unfs3/unfs3">
View code repo</a>
</li>
</ul>
</div>
</div>
</td>
<td id="content">
<table><tr><td>
<h1>User-space NFSv3 Server</h1>
UNFS3 is a user-space implementation of the NFSv3 server
specification. It provides a daemon for the MOUNT and NFS
protocols, which are used by NFS clients for accessing files on
the server.
<br><br>
The goals of the UNFS3 project are, in order of importance:<br>
<ul>
<li><b>Correctness:</b> it should implement the semantics of
NFSv3 as closely as possible. It should also detect races with
local file system activity on the server.
</ul><ul>
<li><b>Portability:</b> it should run on any Unix-like operating
system. So far, it is known to work on Linux and
SunOS/Solaris.</li>
</ul><ul>
<li><b>Completeness:</b> it should support all aspects of the
NFSv3 specification, within the limits possible from user-
space.
</ul><ul>
<li><b>Performance:</b> it should be as fast as possible. It is
impossible to outmatch in-kernel NFS servers from user-space,
but UNFS3 should not lag too far behind.
</ul>
<br>
So far, UNFS3 passes the basic and general tests of the
Connectathon 2004 NFS testsuite and survives fsx stress testing.
The tests were run on Linux using the in-kernel NFS client.
<br><br>
You can use the links on the left to download the latest version
of UNFS3 from GitHub. Please visit the
<a href="https://github.com/unfs3/unfs3">
GitHub project page</a>
for more information about the project.
<br><br>
The
<a href="https://github.com/unfs3/unfs3">
unfs3 git repository</a>
is hosted on GitHub.
</td></tr></table>
</td>
</tr>
</table>
</body>
</html>