I am trying to write a Linux image on a CF card, as shown in * :
When I do this:
sudo bzcat debian-for-alix-cf2g.img.bz2 | dd of=/dev/sdb bs=16k
I get:
dd: opening `/dev/sdb': Permission denied
In mtab, I see that / dev / sdb matches the target CF connected to the USB port.
Line in mtab file
/dev/sdb1 /media/2020-2020 vfat rw,nosuid,nodev,uhelper=udisks,uid=1000,gid=1000,shortname=mixed,dmask=0077,utf8=1,showexec,flush 0 0
Before doing
sudo bzcat debian-for-alix-cf2g.img.bz2 | dd of=/dev/sdb bs=16k
I turned off the device using
umount /media/2020-2020
Why can't I write to / dev / sdb?
source
share