NFS Mount
En el caso de Windows 10 hay que habilitar el Cliente NFS. De forma predeterminada viene deshabilitado, principalmente por los problemas de seguridad que comentábamos. Es común que protocolos antiguos como este no vengan activos de forma predeterminada.
Para habilitarlo tenemos que ir a Inicio, entramos en el Panel de control, vamos a Programas y Activar o desactivar características de Windows.

Una vez aquí tenemos que pinchar en Servicios para NFS y marcar la casilla. Posteriormente le damos a Aceptar.

Cuando tengamos habilitado el Cliente NFS en Windows, ya podremos montar una unidad. En este caso tendremos que ir al Símbolo del sistema o línea de comandos y ejecutar el siguiente comando:
mount -o anon 130.30.26.80:/home K:
Opción con Powershell:
Or you can use PowerShell to install the NFS client and management snap-in:
Install-WindowsFeature NFS-Client, RSAT-NFS-Admin
If you are running Windows 10 or 11, run the following to install the NFS client:
Enable-WindowsOptionalFeature -FeatureName ServicesForNFS-ClientOnly, ClientForNFS-Infrastructure -Online -NoRestart
The Windows NFS client supports NFSv2 and NFSv3 protocol verions.
Now you can mount the NFS share using PowerShell:
New-PSdrive -PSProvider FileSystem -Name M -Root \\192.168.0.211\mnt\hyperv -Persist
Persist option allows to connect NFS shares automatically after a system reboot.
With CMD:
mount -o anon nolock \\192.168.0.211\mnt\hyperv M:
You can also mount an NFS directory from the File Explorer GUI.
In order to disconnect NFS share, run:
Umount M:
Or:
Remove-PSdrive -Name M
Last updated
Was this helpful?