Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. rootdir=/opt/image_mounts/curler.rpi;
  3. fsdir=$rootdir/curler.fs;
  4. image=~/images/rpi_working.img;
  5. mkdir -p $fsdir;
  6. umount $fsdir;
  7. mount -o loop,offset=$((98304*512)) $image $fsdir;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement