I am working with an external HDD and trying to backup a logical partition within an extended partition using dd like this:
sudo dd if=/dev/sdb6 of=partition6.dd
it returns:
dd: opening `/dev/sdb6': No such file or directory
I used the exact same method to backup a different partition (primary) with no issues
sudo dd if=/dev/sdb1 of=partition1.dd
Both GParted and cfdisk show sdb6 but it seems dd can't see it.
How can I backup /dev/sdb6?