|
For some people this is obvious, for others it might be good to know that it's also a good practice to check and make sure the device after of=X, is really the device you want to write to!
Once started, some crucial data may already have been overwritten if you selected the wrong device.
I suggest checking the following with parted (or a similar program): parted /dev/sdX print
- parted /dev/sda print
- Model: ATA WDC WD1200JB-00D (scsi)
- Disk /dev/sda: 120GB
- Sector size (logical/physical): 512B/512B
- Partition Table: msdos
- Disk Flags:
- Number Start End Size Type File system Flags
- 1 32.3kB 12.6GB 12.6GB primary ntfs boot
- 2 12.6GB 120GB 107GB extended lba
- 5 12.6GB 120GB 107GB logical
Copy code
If you want to write to a uSD card of 8GB (or 16GB/32GB) and you see something like above, then you do not have the correct device.
(When partitions are already present, do know that /dev/sda1 is not the same as /dev/sda.) |
|