I'm trying to write a small bash script which shall mount all partitions from a given disk image file. I know that this works, because I did this already in the very past, but I can't remember anymore. Maybe I was using somehow /dev/mapper
but I can't remember. I'm using for the sizelimit parameter the actual size of the partition and not the absolute sector end of the partition.
Sorry for my bad English.
#!/bin/bash
source=$1
destination=$2
if !(fdisk $source -l); then
exit 1
fi
echo ""
partdata=$(fdisk $source -l|grep $source|tail -n +2)
offset=0
sizelimit=0
while [ "$partdata" != "" ]; do
read -ra ARRAY <<< "$partdata"
echo "ARRAY: ${ARRAY[0]} ${ARRAY[1]} ${ARRAY[2]} ${ARRAY[3]}" #echo for debugging
mkdir $destination"/"${ARRAY[0]}
((offset=512*${ARRAY[1]}))
((sizelimit=512*${ARRAY[3]}))
echo "#mount -v -o ro,loop,offset=$offset,sizelimit=$sizelimit -t auto $source $destination/${ARRAY[0]}" #echo for debugging
mount -v -o ro,loop,offset=$offset,sizelimit=$sizelimit -t auto $source $destination"/"${ARRAY[0]}
echo ""
partdata=$(echo "$partdata"|tail -n +2)
done
exit 0
EDIT: translated error-message:
mount: /mnt/raspi_qr_prototype_test_sample.img2: Wrong file system type, invalid options, the superblock of /dev/loop1 is corrupted, missing encoding page, or some other error.
offset=$offset,sizelimit=$sizelimit
why don't you wantpartprobe
or leave the kernel detecting what partitions there are? Check you scripts with shellcheck.net – KamilCuk