.DD

Файл DD

Raw Disk / Forensic Image (dd image)
Задать вопрос
БЫСТРЫЙ ОТВЕТ

A DD file is a raw disk image made with the Unix 'dd' command or a forensic imaging tool - a sector-by-sector copy of a disk, partition, USB stick, or memory card. To access the files inside, mount it with OSFMount on Windows, 'mount -o loop' on Linux, or 'hdiutil attach' on macOS, or open it in FTK Imager or 7-Zip. Writing it back to physical media with 'dd' or balenaEtcher erases the target device completely, so verify the device name first.

Разработчик: No single owner - output of the Unix 'dd' command and forensic imaging tools Категория: Файлы образов дисков Открыть стандартное MIME: application/octet-stream
ОТКРЫВАЕТСЯ НА Windows macOS Linux
Связанные: .BIN · .ISO · .MDF · .DMG

На этой странице

Проиндексировано расширений: 19k+
Последняя проверка: Aug 3, 2026

Не знаете, что это за файл?

Перетащите любой файл в наш идентификатор - мы прочитаем первые байты, чтобы определить формат.

Идентифицировать файл

Что такое формат файла DD?

The .dd file is a raw disk image - a bit-for-bit copy of every sector on a disk, partition, flash card or other storage medium. It is the direct output of the Unix dd command and of dedicated forensic imaging tools such as dcfldd and dc3dd. Because it captures everything on the source - including boot sectors, partition tables, unallocated space and deleted-file remnants - .dd is a standard format in data recovery and digital forensics.

A .dd image has no container or header of its own; the file begins at offset zero with the exact bytes from the source medium. A whole-disk image starts with an MBR or GPT partition table; a partition image starts with a filesystem boot sector. Identifying the content requires reading embedded structures: the FAT/NTFS signature 55 AA at offset 510, the GPT magic EFI PART at offset 512, or an ext4 superblock magic 0x53EF at offset 0x438 within a partition.

The .dd format is interchangeable with .img and .raw - most imaging and forensic tools treat them identically. When compression or chain-of-custody metadata are needed, images are typically compressed with gzip or converted to the E01 forensic container, which embeds MD5/SHA-256 hashes and case notes alongside the raw data.

Note: the .dd extension was also historically used by Doodle!, a raster graphics program for the Commodore 64. That legacy picture format is entirely unrelated to disk imaging.

Безопасность и защита

РИСК: MEDIUM

A .dd is passive raw data and won't run on its own, but it carries real cautions. First, it can contain anything the source disk did - including malware and, in forensic images, sensitive personal data and deleted-file remnants - so mount it READ-ONLY (and ideally in an isolated environment) and handle it carefully. Second, WRITING a .dd back to a disk with 'dd' or balenaEtcher overwrites the entire target device, so a wrong device name wipes the wrong disk. Third, when imaging for evidence, hash the image (MD5/SHA-256) and use a write blocker so the copy is provably unaltered. Download forensic tools (FTK Imager, Autopsy, Sleuth Kit) only from their official vendors.

Детали формата

в двух словах
ПОЛНОЕ НАЗВАНИЕRaw Disk / Forensic Image (dd image)также известен как dd image, raw image
РАЗРАБОТЧИКNo single owner - output of the Unix 'dd' command and forensic imaging toolsс The 'dd' utility dates to early Unix (1970s); raw imaging is a long-standing convention
MIME-ТИПapplication/octet-stream
ТИПRaw, sector-by-sector image of a disk/partition (binary, no container or metadata)
СТАНДАРТОткрытый · без роялти
СВЯЗАННЫЕ.bin.iso.mdf.dmg
Это расширение также используется в…
  • Doodle (Commodore 64) image - A rare 1980s C64 hi-res bitmap (typically 9026 bytes, often actually named 'dd' as a filename prefix); only relevant to retro/emulator users, not modern disk images.
  • DiskDoubler compressed file (classic Mac OS) - Symantec's DiskDoubler used .dd for compressed files on classic Mac OS; obsolete, opened only by The Unarchiver/old Mac tools.

Программы, открывающие файлы DD

Windows4 apps
7-Zip Открытый код Right-click > 7-Zip > Open archive to browse and extract files from many .dd images without mounting.
FTK Imager Бесплатно File > Add Evidence Item > Image File, select the .dd, then browse and export files from the embedded filesystems. The standard free forensic viewer.
OSFMount / Arsenal Image Mounter Бесплатно Mount the .dd as a read-only virtual disk and browse it in Explorer like a normal drive.
Autopsy (The Sleuth Kit) Открытый код Create a case and add the .dd as a data source for full forensic analysis (file carving, timelines, deleted files).
macOS2 apps
hdiutil / Disk Utility (built-in) Встроенная Attach the raw image: 'hdiutil attach -imagekey diskimage-class=CRawDiskImage disk.dd' (read-only) to mount and browse it.
The Sleuth Kit / Autopsy Открытый код Use TSK command-line tools (fls, icat) or Autopsy to examine the .dd image and extract files.
Linux3 apps
mount (loop device, built-in) Встроенная For a partition image: 'sudo mount -o loop,ro disk.dd /mnt'. For a whole-disk image, attach with 'losetup -fP disk.dd' then mount the partition (e.g. /dev/loop0p1).
The Sleuth Kit / Autopsy / Guymager Открытый код Examine with TSK (fls/icat) or Autopsy; create/verify raw images with Guymager or 'dd'/'dcfldd'.
dd / dcfldd (CLI) Открытый код Create: 'dd if=/dev/sdX of=disk.dd bs=4M'. Restore: 'dd if=disk.dd of=/dev/sdX bs=4M' (the target is overwritten - choose the device carefully).

Технические подробности

глубокая спецификация
ContainerNone - raw binary sectors with no wrapper, header or metadata of any kind
EncodingBinary (byte-for-byte copy of the source medium)
File sizeMirrors the source exactly - from a few KB for small partitions to multiple TB for whole disks
Magic bytesNone intrinsic; whole-disk images expose an MBR signature 55 AA at offset 510 or GPT "EFI PART" at offset 512
CompressionNone embedded; commonly archived post-capture with gzip, bzip2 or zstd (producing .dd.gz, .dd.bz2, etc.)
EncryptionNone at the image level; source volumes may contain BitLocker, LUKS or FileVault data
IntegrityNo built-in checksum; forensic practice stores a separate MD5 or SHA-256 hash of the image file alongside it
MIME typeapplication/octet-stream
MountabilityMountable as a loop device on Linux (losetup / mount); via OSFMount or Arsenal Image Mounter on Windows; via hdiutil on macOS
Captured scopeEvery byte of the source - filesystem structures, boot sectors, slack space, unallocated space and deleted-file artefacts
Create commanddd if=/dev/sdX of=image.dd bs=4M status=progress
Primary useDigital forensics, data recovery, disk cloning and virtual machine provisioning
InterchangeabilityFunctionally identical to .img and .raw; most imaging and forensic tools treat all three as the same format
Forensic variantsdcfldd and dc3dd add on-the-fly MD5/SHA-256 hashing during acquisition; EWF/E01 wraps the same raw data with embedded hashes and case metadata
ВыпущенThe 'dd' utility dates to early Unix (1970s); raw imaging is a long-standing convention
Последняя версияNo format version - a .dd is just raw bytes; tooling evolves (GNU coreutils dd, dcfldd, dc3dd, ewfacquire)
Открыть стандартноеДа · без роялти
Спецификацияen.wikipedia.org

Конвертации DD

Вопросы и ответы сообщества

спрошено пользователями
Задать быстрый вопрос
Получите помощь от людей, работающих с файлами DD. Будьте конкретны - укажите вашу систему и версию ПО.
Аккаунт не нужен · ответы обычно в течение дня

Вопросов пока нет - станьте первым, кто спросит о файлах DD.

Часто задаваемые вопросы

What is a DD file?
Almost always a raw disk image - a bit-for-bit copy of a disk, partition, USB stick or card made with the Unix 'dd' command or a forensic imaging tool. It's the same as a raw .img/.raw and is standard in data recovery and digital forensics.
How do I open or mount a DD file?
On Linux: 'sudo mount -o loop,ro disk.dd /mnt' (or 'losetup -fP' for a whole-disk image). On Windows: mount it with OSFMount/Arsenal Image Mounter, or browse it with FTK Imager or 7-Zip. On macOS: 'hdiutil attach' with the raw-disk image class.
What's the difference between a .dd and a .img file?
Essentially none - both are raw, sector-by-sector images. '.dd' just signals it came from the 'dd' command or a forensic imager. Most tools read them interchangeably; you can often just rename one to the other.
How do I extract files from a .dd image?
Mount it read-only and copy files out, or open it in a forensic tool: FTK Imager and Autopsy/The Sleuth Kit let you browse the embedded filesystem and export files - including recovering deleted ones from unallocated space.
How do I write a .dd image back to a disk or USB stick?
Use 'dd if=disk.dd of=/dev/sdX bs=4M' on Linux/macOS, or balenaEtcher on any OS. The target device is completely erased, so double-check the device name before you start.
Is a .dd file a picture (Doodle C64)?
Almost never today. The .dd extension was used decades ago for a Commodore 64 'Doodle' bitmap and for classic-Mac DiskDoubler files, but in modern use a .dd is a raw disk/forensic image. What it is depends on where the file came from.

Ссылки

1Wikipedia - Disk image (raw / dd images)en.wikipedia.org
2GNU coreutils - dd manualwww.gnu.org

Узнать больше

по всей базе данных

Популярные расширения на этой неделе

1.AQQAQQ Instant Messenger File
2.MDMarkdown Document
3.CRDOWNLOADChrome Partial Download File
4.BINCD/DVD Disc Image (BIN/CUE)
5.PARTPartial Download File
6.NOMEDIAAndroid No-Media Marker File
7.RPMSGRestricted Permission Message
8.EXEWindows Executable (Portable Executable)
9.AVIFAV1 Image File Format (AVIF)
10.ICSiCalendar data file

Похожие расширения

.BINCD/DVD Disc Image (BIN/CUE)
.ISOISO disc image (ISO 9660 / UDF)
.MDFMedia Descriptor File (Alcohol 120% / DAEMON Tools disc image)
.DMGApple Disk Image
.NRGNero Burning ROM Disc Image
.TIBAcronis True Image Backup

Бесплатные инструменты для файлов

Идентификатор файлов и конвертер изображений в браузере - все работает на вашем устройстве.

Открыть инструменты

Обзор расширений файлов A-Z