NFS Quick Install: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 October 2023

  • curprev 17:1417:14, 24 October 2023Admin talk contribs 455 bytes +455 Created page with "Quick installation of a NFS Server on Debian 12 =Server= apt-get install rpcbind nfs-kernel-server mkdir -p /srv/nfs/storage chown -R 777 /srv/nfs/storage *Edit /etc/exports exportfs -ra *Restart systemctl restart nfs-server.service *Enable systemctl enable nfs-kernel-server systemctl restart nfs-kernel-server =Client= apt-get install rpcbind nfs-common *Edit /etc/hosts.deny rpcbind : ALL *Mount: mount -t nfs x.x.x.x:/srv/nfs/storage /mnt/"