MyFirstBrain/Technik/Linux-Nfs.md

18 lines
502 B
Markdown
Raw Normal View History

2025-07-27 19:00:52 +02:00
---
created: 2025-07-20T17:22
updated: 2025-07-20T17:22
---
2024-10-25 10:32:28 +02:00
# NFS Freigaben auf einem Server
hier mal eine Beispiel einer /etc/expotrs Datei :
```bash
/volume3/Nextcloud 192.168.132.14/32(rw,async,no_wdelay,crossmnt,insecure,all_squash,insecure_locks,sec=sys,anonuid=33,anongid=33)/volume1/Nextcloud-backup 192.168.132.14(rw,async,no_wdelay,crossmnt,insecure,no_root_squash,insecure_locks,sec=sys,anonuid=1025,anongid=100)
```
2024-10-25 10:38:45 +02:00
### Mounten eines NFS Shares
mount gaus.bar.com:/usr /mnt
2024-10-25 10:32:28 +02:00