"Updates"

This commit is contained in:
2026-01-28 16:46:36 +01:00
parent 677655c669
commit 8d300e0995

View File

@@ -225,3 +225,22 @@ sudo mount /nfs/<folder>
sudo systemctl daemon-reload
```
### Monitoring NFS Server
```bash
sudo apt install -y nfswatch
```
Add these aliases to your .bashrc file:
```bash
# NFS watch clients
alias nfsw='nfswatch -allif -clients -usage 2>/dev/null'
# NFS watch users
alias nfsu='nfswatch -allif -auth -usage 2>/dev/null'
```
```bash
source ~/.bashrc
```