I want to write a .raw file to the first partition of my external drive. I tried:
dd if=file of=/dev/sdb3 but it didn't give me a bootable drive since the correct command should had been: dd if=file of=/dev/sdb.
My question is would this command destroy data on the other two partitions that I have on the drive, or only on the first partition?