0
votes

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.

1
offset=$offset,sizelimit=$sizelimit why don't you want partprobe or leave the kernel detecting what partitions there are? Check you scripts with shellcheck.netKamilCuk
My image file has a partition table and several partitions. Using mount without offset/sizelimit won't work, at least to my knowledge.paladin

1 Answers

1
votes

Consider a different approach that doesn't need to take some offset calculations. Let's first create a sample file with DOS partition table:

truncate -s 20M file.img
printf "%s\n" o n p 1 '' +10M n p 2 '' '' p w | fdisk ./file.img

then you can:

loopf="$(sudo losetup -f)"      # ie. /dev/loop0 for example
sudo losetup "$loopf" ./file.img
sudo partprobe "$loopf"

then I'll get:

$ ls /dev/loop0*
/dev/loop0  /dev/loop0p1  /dev/loop0p2

and you can use p1 and p2 as normal partitions, as you would normally:

for i in "$loopf"p*; do
    sudo mount "$i"  "somwheere/$(basename "$i")"
done

after you're done, umount all directories and disconnect loop device with:

sudo losetup -d "$loopf"