Hello,
I want to create a backup of my MITEL SSD. The system is:
lsblk -f
NAME FSTYPE LABEL UUID FSAVAIL FSUSE% MOUNTPOINT
sdc
├─sdc1
│ vfat /sysro
│ 020C-0000
├─sdc2
│ vfat /db 0257-0000
├─sdc3
│ vfat /vmail
│ 02F6-0000
├─sdc4
│
├─sdc5
│ vfat /sysro
│ 036A-0000
├─sdc6
│ vfat /db 037F-0000
└─sdc7
vfat /unused
03FA-0000
I did:
$ sudo dd if=/dev/sdc of=/home/jason/SSD.dd
234441648+0 records in
234441648+0 records out
120034123776 bytes (120 GB, 112 GiB) copied, 2850.17 s, 42.1 MB/s
$ file SSD.dd
SSD.dd: DOS/MBR boot sector; partition 1 : ID=0x6, active, start-CHS (0x0,1,1), end-CHS (0x8f,254,63), startsector 63, 2313297 sectors; partition 2 : ID=0xb, start-CHS (0x90,0,1), end-CHS (0x3ea,254,63), startsector 2313360, 13799835 sectors; partition 3 : ID=0xc, start-CHS (0x3eb,0,1), end-CHS (0x3ff,254,63), startsector 16113195, 29543535 sectors; partition 4 : ID=0xf, start-CHS (0x3ff,0,1), end-CHS (0x3ff,254,63), startsector 45656730, 188784918 sectors
Then:
# dd if=/home/jason/SSD.dd of=/dev/sdc
But, device not booted. How can I clone it?
Thank you.