Skip to content

john-peterson/nfs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nfs: Allegro NFS Server for Microsoft Windows in Common Lisp

Table of contents

  • Description
  • Author
  • Author comments
  • Documentation
  • Platforms
  • Dependencies
  • Installation
  • Configuration
  • Licence
  • Notes
  • Examples
  • Franz Inc. Open Source Info

Description

Allegro NFS Server for Microsoft Windows in Common Lisp

Author

Ahmon Dancy, Franz Inc.

Author comments

Allegro® NFS Server for Windows® was inspired by our dissatisfaction with current free and commercial NFS Servers available on the market and the incredible technical difficulties we faced in configuring them on Windows 2000.

Platforms

Microsoft Windows 2000 and newer (including Vista).

Dependencies

Gnu make via cygwin for the Makefile. Allegro Common Lisp 8.1.

Installation

To build nfs:

make all

To install it:

make install

The install step expects that cygwin has C:\ mounted as /c. It is also possible to build an installer via:

make installer

This will produce an nsi file that can be used to install nfs.

Configuration

See the nfs documentation for more information on how to configure nfs.

Documentation

Once your exports are configured it's possible to mount them. Please consult your platforms documentation on how to mount remote nfs partitions.

Debugging

Interactive debugging of server:

:ld loadem

Then, for debugging:

(debugmain) ;; main.cl

Or, without debugging:

(setf configfile "nfs.cfg") (read-nfs-cfg configfile) (startem)


:cd d:/src/nfs50/ (load "loadem") (setf configfile "nfs.cfg") (read-nfs-cfg configfile) (startem)

(prof:start-profiler)

(prof:stop-profiler) (defun doit (file) (with-open-file (standard-output file :direction :output :if-exists :supersede) (prof:show-flat-profile) (prof:show-call-graph) #+ignore (prof:disassemble-profile 'excl::g-read-vector-2))) (doit "y:/nfs.82brc5") (doit "y:/nfs.81")

(prof:show-flat-profile) (prof:show-call-graph)

License

The nfs source code is licensed under the terms of the Lisp Lesser GNU Public License, known as the LLGPL. The LLGPL consists of a preamble and the LGPL. Where these conflict, the preamble takes precedence. This project is referenced in the preamble as the LIBRARY.

Notes

See the following files that are part of this project:

  • access-control.txt - info on controlling access to the nfs server
  • notes.txt - implementation notes
  • release-notes.txt - info about past and present nfs releases.
  • rfc1014.txt - XDR: External Data Representation Standard.
  • rfc1050.txt - rpc: Remote Procedure Call.
  • rfc1094.txt - NFS: Network File System Protocol Specification
  • rfc1813.txt - nfs version 3 protocol standard.
  • rfc1833.txt - Binding Protocols for ONC RPC Version 2
  • TODO.txt - old and new todo information.

Examples and Information

It is possible to stress test the nfs server by

make hammernfs

and then executing the hammernfs.exe executable.

Franz Open Source Info

This project's homepage is http://opensource.franz.com. There is an informal community support and development mailing list opensource@franz.com for these open source projects. We encourage you to take advantage by subscribing to the list. Once you're subscribed, email to opensource@franz.com with your questions, comments, suggestions, and patches.

About

Allegro NFS Server for Microsoft Windows, written in Common Lisp

Resources

License

Unknown and 3 other licenses found

Licenses found

Unknown
license.txt
Unknown
license.readme
Unknown
license-demo.txt
Unknown
license-paid.txt

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 98.3%
  • Other 1.7%