Diferencia entre revisiones de «NFS»
De Guifi.net - Wiki Hispano
Línea 10: | Línea 10: | ||
== Cliente == | == Cliente == | ||
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:Servidor]] | [[Categoría:Servidor]] |
Revisión de 11:49 19 sep 2009
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