rwx/sh/cmd/mount.sh

7 lines
115 B
Bash
Raw Normal View History

2023-05-14 21:12:22 +00:00
# remount read-only medium in read-write
2024-11-16 15:45:07 +00:00
remount() {
mount \
-o "remount,rw" \
"/usr/lib/live/mount/medium"
}