NFS (Network File System)


NFS (Network File System) : il fonctionne avec 2049/udp, c'est un service qui permet de partgaer les dossiers entre les systèmes Linux/Linux.

1-Installation des packages portmap :
[root@khalid khalid]# rpm -ivh portmap-...

2-création d'un répertoire :
[root@khalid khalid]# mkdir /root/2tri
[root@khalid khalid]# chmod 777 /root/2tri

3-fichier de configuration /etc/exports :
[root@khalid khalid]# vi /etc/exports
/root/2tri  *(rw)

4-démarrage des services :
[root@khalid khalid]# service nfs start
[root@khalid khalid]# service portmap start

5-sous la machine client :
[root@khalid khalid]# mount -t nfs l'@_du_serveur:/root/2tri /root/partage1(monter le dossier /root/2tri sur cette machine)

6-création des fichiers sous la machine serveur (/root/2tri/fich)

7-sur la machine client : ls /root/partage1.

0 Commentaires