m,remount
This commit is contained in:
parent
c68598931b
commit
bd4fe3656e
1 changed files with 9 additions and 8 deletions
|
@ -1,10 +1,11 @@
|
|||
alias m="\
|
||||
mount \
|
||||
"
|
||||
m() {
|
||||
mount \
|
||||
"${@}"
|
||||
}
|
||||
|
||||
# remount read-only medium in read-write
|
||||
alias remount="\
|
||||
mount \
|
||||
-o \"remount,rw\" \
|
||||
\"/usr/lib/live/mount/medium\" \
|
||||
"
|
||||
remount() {
|
||||
mount \
|
||||
-o "remount,rw" \
|
||||
"/usr/lib/live/mount/medium"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue