Welcome, Guest. Please login or register.

Author Topic: Best app for creating disk images?  (Read 4760 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline Thomas

Re: Best app for creating disk images?
« on: January 27, 2021, 03:08:48 PM »
Can diskimage mount the output ?

Generally speaking yes. But if you work on harddisk partitions, it might depend on the file system used. SFS partitions for example become NDOS if the start sector changes. So if you make a single-partition HDF of an SFS partition, it won't mount because the start sector changes from whatever it was to 0.

Offline Thomas

Re: Best app for creating disk images?
« Reply #1 on: January 28, 2021, 10:24:58 AM »
Imagine you have an 8 GB harddrive with two partitions. The layout might look like this:

Code: [Select]
0  2016              3904992                                          15624000
+--+--------------------+----------------------------------------------------+
|PT|  System-Partition  |                Work-Partition                      |
+--+--------------------+----------------------------------------------------+
PT = Partiton Table


If you only image the System partition the image file will contain this:

Code: [Select]
0              3902976
+--------------------+
|  System-Partition  |
+--------------------+

And if you image only the Work partition the image file will be like this:

Code: [Select]
0                                             11719008
+----------------------------------------------------+
|                Work-Partition                      |
+----------------------------------------------------+


On the harddrive the partitions started at sector 2016 resp. 3904992. In the image files they start at the beginning of each file.

« Last Edit: January 28, 2021, 10:52:41 AM by Thomas »
 
The following users thanked this post: Pat the Cat