rwx/sh/cmd/mount.sh
2024-11-18 16:10:14 +01:00

6 lines
115 B
Bash

# remount read-only medium in read-write
remount() {
mount \
-o "remount,rw" \
"/usr/lib/live/mount/medium"
}