18 lines
502 B
Markdown
18 lines
502 B
Markdown
---
|
|
created: 2025-07-20T17:22
|
|
updated: 2025-07-20T17:22
|
|
---
|
|
# 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)
|
|
|
|
```
|
|
### Mounten eines NFS Shares
|
|
|
|
mount gaus.bar.com:/usr /mnt
|
|
|
|
|
|
|