❤️💕💕CS自学指南,大学教育无论是深度还是广度都没有办法支撑我们的职业素养,这个板块算是自己在CS学习中额外补充和记录的。个人博客:http://nsddd.top
[TOC]
On December 21, 2022, it was reported that the Network File System (NFS) provides a solution for sharing files for enterprises with heterogeneous environments, including Windows.
On June 26, 2018, instructions were given on how to install the NFS client (services for NFS) on Windows. The user needs to open the "Programs and Features" section, click on "Turn Windows features on or off," and select the NFS client option.
On October 16, 2018, it was suggested that to enable the NFS client, users can use the Programs and Components management tool, "appwiz.cpl." The NFS client option can be found under the list of "components."
To mount NFS on Windows 10, you need to follow these steps:
- Install the NFS Client on your Windows 10 computer. You can do this by going to "Programs and Features" and selecting "Turn Windows Features on or off". Then select "Services for NFS" and click "OK" to install the NFS Client.
- After installing the NFS Client, open the "Command Prompt" as an administrator.
- Use the "mount" command to mount the NFS share. For example, if the NFS server IP address is 192.168.1.100 and the NFS share is located at /mnt/data, use the following command:
mount -o anon \\192.168.1.100\mnt\data X:
In the above command, "X:" is the local drive letter you want to use to access the NFS share. You can choose any available drive letter.
Once you have successfully mounted the NFS share, you can access it using the local drive letter you assigned in the previous step.
Note: You may need to configure the NFS server to allow access from your Windows 10 computer. Also, make sure you have the necessary permissions to access the NFS share.
Network File System (NFS) is one of the file systems supported by FreeBSD. It allows computers on a network to share resources over the TCP/IP network. In NFS applications, local NFS client applications can read and write files on the remote NFS server transparently, just like accessing local files.
The following are the benefits of NFS:
-
Save local storage space. If common data is stored on an NFS server and accessible over the network, local terminals can reduce their storage space usage.
-
You do not need to have a Home directory on each machine on the network. The Home directory can be stored on the NFS server and can be accessed on the network.
-
Some storage devices such as floppy drives, CdroMs, and Zip (a type of disk drive and disk with high storage density) can be used by other machines on the network. This can reduce the number of removable media devices on the entire network.
- 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.
PS C:\Users\smile> scoop.cmd search nfs
Results from local buckets...
Name Version Source Binaries
---- ------- ------ --------
winnfsd 2.4.0 main
PS C:\Users\smile> scoop.cmd install winnfsd
Installing 'winnfsd' (2.4.0) [64bit] from main bucket
WinNFSd.exe (268.5 KB) [==========================] 100%
Checking hash of WinNFSd.exe ... ok.
Linking ~\scoop\apps\winnfsd\current => ~\scoop\apps\winnfsd\2.4.0
Creating shim for 'WinNFSd'.
'winnfsd' (2.4.0) was installed successfully!
PS C:\Users\smile> winnfsd.exe
=====================================================
WinNFSd 2.4.0 [5f7f224]
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 <uid> <gid>] [-log on | off] [-pathFile <file>] [-addr <ip>] [export path] [alias path]
At least a file or a path is needed
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
reference data:
- Обзор NFS - Windows Server - Microsoft Learn
- Как подключить NFS каталог в Windows 10
- Использование клиента NFS в Windows 10 ред
- Использование клиента NFS в Windows 10 редакции ...
- How to Mount an NFS Share Using a Windows 10 Machine
- Mounting Unix Shares with a Windows NFS Cli