Initial commit: NAS backup, NFS mount docs, NVMe fix docs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 15:51:09 +01:00
co-authored by Claude Opus 4.6
commit f223d76cbf
11 changed files with 218 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
SRC="/data/backup/"
DEST="/mnt/nas/backup/"
# Ensure NAS is mounted
if ! mountpoint -q /mnt/nas; then
echo "NAS not mounted at /mnt/nas, skipping backup" >&2
exit 1
fi
mkdir -p "$DEST"
sudo rsync -a --delete --no-group --no-perms --no-owner "$SRC" "$DEST"