diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-11-23 12:37:22 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-11-23 12:37:22 -0200 |
commit | a327229e134db69e07111fd5010e13e5fb7832f5 (patch) | |
tree | 91a87304bef2f9d75b11c794baf531c8b8d8a090 | |
parent | 092ef396af69c15d44e8456c915b4d29e5070b2e (diff) | |
download | utils-cdrecord-a327229e134db69e07111fd5010e13e5fb7832f5.tar.gz utils-cdrecord-a327229e134db69e07111fd5010e13e5fb7832f5.tar.bz2 |
Mass-ripper: mounting read-only
-rwxr-xr-x | mass-ripper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mass-ripper b/mass-ripper index 781380c..2f0b414 100755 --- a/mass-ripper +++ b/mass-ripper @@ -42,7 +42,7 @@ while true; do else echo "Got it! Mounting..." mkdir -p cdrom || exit 1 - $sudo mount $DRIVE $MOUNT || exit 1 + $sudo mount -r $DRIVE $MOUNT || exit 1 #mkdir -p $ITERATION || exit 1 echo "Copying data..." |