Mounting individual partitions from disk dumps
Last modified on July 24, 2026 • 2 min read • 250 wordsYou can make disk dumps from individual partitions or from a hard drive that contains more than one partition.
jeltsch@Michael:~$ sudo parted /home/backup/diskdump.img GNU Parted 2.3Using /home/backup/diskdump.imgWelcome to GNU Parted! Type 'help' to view a list of commands.(parted) unit Unit? [compact]? B (parted) print Model: (file)Disk /home/backup/diskdump.img: 160041885696BSector size (logical/physical): 512B/512BPartition Table: msdosNumber Start End Size Type File system Flags 1 1048576B 524287999B 523239424B primary ntfs boot 2 524288000B 80282124287B 79757836288B primary ntfs 3 80283171840B 160041009151B 79757837312B extended 5 80283172864B 122626684415B 42343511552B logical ext4 7 122626768896B 157924769279B 35298000384B logical ext4 6 157932322816B 160041009151B 2108686336B logical linux-swap(v1)(parted)Then you just mount the image as a loop device with the additional parameter offset using the start boundary of the partition you want to mount:sudo mount -o loop,ro,offset=524288000 /home/backup/diskdump.img /mnt