¿Cómo montar una imagen ddrescue si no se reconoce ninguna partición?

¿Cómo montar una imagen ddrescue si no se reconoce ninguna partición?

En macOS Ventura 13.1, rescaté con éxito un disco corrupto que no se puede montar (Mac OS Extended (Journaled)) a través de ddrescue:

ddrescue -v -f -n /dev/disk3s2 /Volumes/emptyhd/hd.dmg ~/logfile.log

Después de algunos días, recibí el mensaje "terminado" en la terminal:

Current status
     ipos:  654704 kB, non-trimmed:        0 B,  current rate:       0 B/s
     opos:  654704 kB, non-scraped:    35840 B,  average rate:  14775 kB/s
non-tried:        0 B,  bad-sector:     1024 B,    error rate:     512 B/s
  rescued:   11999 GB,   bad areas:        2,        run time:  8d  1h 55m
pct rescued:    0.00%, read errors:        2,  remaining time:         n/a
                              time since last successful read:          0s
Finished       

Hacer doble clic en el DMG no funcionó (ventana emergente con "no reconocido"). También intenté montar la imagen con esto: hdiutil attach -imagekey diskimage-class=CRawDiskImage /Volumes/emptyhd/hd.dmg --> no funcionó.

Luego usé el comando para adjuntar el archivo de imagen: hdiutil attach -nomount /Volumes/emptyhd/hd.dmg

Luego diskutil list salida

/dev/disk3 (disk image):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:                                                   +12.0 TB    disk3

Información de imagen con hdiutil imageinfo /Volumes/emptyhd/hd.dmgsalida:

Class Name: CRawDiskImage
Size Information:
    Total Bytes: 11999760071680
    Compressed Ratio: 1
    Sector Count: 23437031390
    Total Non-Empty Bytes: 11999760071680
    Compressed Bytes: 11999760071680
    Total Empty Bytes: 0
Checksum Type: none
Format: UDRW
partitions:
    partition-scheme: none
    block-size: 512
    appendable: false
    partitions:
        0:
            partition-name: whole disk
            partition-start: 0
            partition-synthesized: true
            partition-length: 23437031390
            partition-hint: unknown partition
    burnable: false
Format Description: raw read/write
Checksum Value: 
Properties:
    Encrypted: false
    Kernel Compatible: true
    Checksummed: false
    Software License Agreement: false
    Partitioned: false
    Compressed: no
Segments:
    0: /Volumes/DATA16TB/movies.dmg
Backing Store Information:
    URL: file:///Volumes/DATA16TB/movies.dmg
    Name: movies.dmg
    Class Name: CBSDBackingStore
Resize limits (per hdiutil resize -limits):
 min     cur     max 
23437031390 23437031390 23437031390

Entonces, ¿cómo puedo proceder desde aquí para acceder a los datos en mi dd IMG?

información relacionada