View this PageEdit this PageUploads to this PageVersions of this PageHomeRecent ChangesSearchHelp Guide

Configuración del servidor NFS en Linux

  • Para instalar el demonio NFS en un equipo con Debian Linux:
    • apt-get install nfs-user-server nfs-common portmap

  • Exportar el directorio /home/metro/ControlId por NFS a todo el mundo. Esto se hace añadiendo esta línea al fichero /etc/exports.
    • /home/metro/ControlId *(rw,sync,insecure,no_subtree_check)

  • Después de modificar el exports hay que hacer
    • exportfs -a

  • Reiniciar el servidor NFS
    • /etc/init.d/nfs-user-server restart
    • /etc/init.d/nfs-kernel-server restart

  • Para comprobar si el servidor NFS arranca correctamente:
    • rpcinfo -p
    • chkconfig --list|grep rpc
    • chkconfig --list|grep nfs
    • showmount -e



Link to this Page