
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

Advanced File and User Management in Linux
0 Comments

Basic Terminal Commands and Usage in Linux
0 Comments
Comments ()
No comments yet. Be the first to comment!