dd: opening `/dev/sdb': Permission denied

Guillermo Parada picture Guillermo Parada · Sep 20, 2012 · Viewed 23.3k times · Source

I'm trying to write a linux image in a CF card, as is shown in *:

When I do:

sudo bzcat debian-for-alix-cf2g.img.bz2 | dd of=/dev/sdb bs=16k

I get:

dd: opening `/dev/sdb': Permission denied

I can see in mtab that /dev/sdb corresponds to the target CF conected to an USB port.

The line in the mtab file is

/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 executing

sudo bzcat debian-for-alix-cf2g.img.bz2 | dd of=/dev/sdb bs=16k

I unmounted the device with

umount /media/2020-2020

Why can't I write to /dev/sdb ?

Answer

Blender picture Blender · Sep 20, 2012

Try running it as root:

user ~ $ sudo -s
Password: 
root ~ # bzcat debian-for-alix-cf2g.img.bz2 | dd of=/dev/sdb bs=16k

The way you tried doesn't work probably because prepending sudo runs bzcat as root, but not dd.