Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winnfsd/winnfsd
https://github.com/winnfsd/winnfsd
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/winnfsd/winnfsd
- Owner: winnfsd
- Created: 2015-07-21T13:48:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-30T02:25:18.000Z (over 3 years ago)
- Last Synced: 2024-08-01T05:20:04.454Z (3 months ago)
- Language: C++
- Size: 230 KB
- Stars: 449
- Watchers: 29
- Forks: 112
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- jimsghstars - winnfsd/winnfsd - (C++)
README
# WinNFSd
[![Build status](https://ci.appveyor.com/api/projects/status/github/winnfsd/winnfsd?svg=true)](https://ci.appveyor.com/project/MarcHarding/winnfsd-6y1xi/branch/master)
Introduction
------------
* Fork of WinNFSd_edited by ZeWarden(http://github.com/ZeWaren/WinNFSd_edited), based on WinNFSd by vincentgao (http://sourceforge.net/projects/winnfsd/).
* License: GPL.
* Runs on all major versions of Windows.Description
--------------------
WinNFSd is a Network File System V3 (NFS) server for Windows.You can use any NFS client to mount a directory of Windows and read/write files via NFS v3 protocol. It is useful when you usually access files of Windows on Linux and for especially for virtual machines, since it is much faster than shared folders.
You can also export any folder with an additional alias.
The export of multiple folders is also possible. Just put the shared foldes and an optional alias into a simple text file:
```
C:\path\to\a\mount > /alias
C:\path\to\another\mount > /another-alias
```Then start winnfsd.exe like this:
`WinNFSd.exe -pathFile C:\path\to\your\pathfile`Usage
-------------------
```
=====================================================
WinNFSd 2.2.0
Network File System server for Windows
Copyright (C) 2005 Ming-Yang Kao
Edited in 2011 by ZeWaren
Edited in 2013 by Alexander Schneider (Jankowfsky AG)
Edited in 2014 2015 by Yann Schepens
Edited in 2016 by Peter Philipp (Cando Image GmbH), Marc Harding
=====================================================Usage: WinNFSd.exe [-id ] [-log on | off] [-pathFile ] [-addr ] [export path] [alias path]
At least a file or a path is needed
For example:
On Windows> WinNFSd.exe d:\work
On Linux> mount -t nfs 192.168.12.34:/d/work mountFor another example:
On Windows> WinNFSd.exe d:\work /exports
On Linux> mount -t nfs 192.168.12.34:/exportsAnother example where WinNFSd is only bound to a specific interface:
On Windows> WinNFSd.exe -addr 192.168.12.34 d:\work /exports
On Linux> mount - t nfs 192.168.12.34: / exportsUse "." to export the current directory (works also for -filePath):
On Windows> WinNFSd.exe . /exports
```