Diferencia entre revisiones de «NFS»
De Guifi.net - Wiki Hispano
m (5 revisiones: Artículos técnicos) |
|||
(No se muestran 2 ediciones intermedias realizadas por 2 usuarios) | |||
Línea 11: | Línea 11: | ||
mount -t nfs 192.168.1.225:/home/mldonkey /mnt/mediateca | mount -t nfs 192.168.1.225:/home/mldonkey /mnt/mediateca | ||
+ | == Referencias == | ||
+ | [http://debianhelp.co.uk/nfs.htm Network File System (NFS) Configuration in Debian] | ||
+ | |||
+ | [[Categoría:Servicio de Blogx Populi]] | ||
[[Categoría:Servidor]] | [[Categoría:Servidor]] |
Última revisión de 23:35 11 ene 2014
Servidor
apt-get install nfs-kernel-server nfs-common
En el archivo /etc/exports
añadir las líneas para cada una de las particiones y directorios que queráis montar:
/home/mldonkey 192.168.1.0/24 (sync,rw,no_root_squash)
Releer el archivo /etc/exports
:
exportfs -a
Cliente
mount -t nfs 192.168.1.225:/home/mldonkey /mnt/mediateca