May 10, 2025 - 10:51
Installing NFS Server on Ubuntu (Let’s Build a Backup Server) Image
Linux

Installing NFS Server on Ubuntu (Let’s Build a Backup Server)

Comments

How can we link folders between two Linux servers? How can we create a backup space?

Video Tutorial:

[embed]https://youtu.be/-4MJVT1lROE[/embed]

USED COMMANDS:

GENEL
sudo apt install nfs-kernel-server
mkdir -p /nfs/dosyalar
chown nobody:nogroup /nfs/dosyalar
chmod 0777 /nfs/dosyalar
nano /etc/exports

Lines added inside the file:

GENEL
/nfs/dosyalar/ 192.168.1.38(rw,sync,no_subtree_check)

To activate the changes made:

GENEL
exportfs -a

To view shared folders (detailed):

GENEL
exportfs -v

To see shared folders on the server side:

GENEL
showmount -e

Related Articles

Comments ()

No comments yet. Be the first to comment!

Leave a Comment