Last active
September 12, 2021 14:54
-
-
Save NickCrews/a457912f494f69aeee8be06819a5399a to your computer and use it in GitHub Desktop.
Useful for mounting a .img file (eg so you can modify the root or boot filesystems of a Raspberry Pi image)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Useful for mounting a .img file (eg for a raspberrypi OS image | |
# so you can modify the root or boot filesystems). | |
if [ -z "$1" ] ; then | |
echo "usage: $0 IMG_FILE MOUNT_POINT PARTITION_NUMBER" | |
exit 1 | |
fi | |
IMG_FILE=$1 | |
if [ -z "$2" ] ; then | |
echo "usage: $0 IMG_FILE MOUNT_POINT PARTITION_NUMBER" | |
exit 1 | |
fi | |
MOUNT_POINT=$2 | |
if [ -z "$3" ] ; then | |
echo "usage: $0 IMG_FILE MOUNT_POINT PARTITION_NUMBER" | |
exit 1 | |
fi | |
PARTITION_NUMBER=$3 | |
echo "Mounting partition ${PARTITION_NUMBER} of ${IMG_FILE} at ${MOUNT_POINT}" | |
START=$(fdisk -l -o Start ${IMG_FILE} | tail -n +9 | head -n${PARTITION_NUMBER} | tail -n1) | |
OFFSET=$(expr ${START} \* 512) | |
mount -o loop,offset=${OFFSET} ${IMG_FILE} ${MOUNT_POINT} | |
echo "Use 'umount ${MOUNT_POINT}' to unmount" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment