You need to take a step back.
What is it you're trying to do?
From the description it isn't clear. Are you trying to erase this disk? wipe the entire machine? something else?
Additionally, the volume in question appears to be a disk image, not a physical disk... by definition, a disk image appears as a file on a larger file system, so erasing the enclosing volume would automatically erase this disk image, too.
On top of that, your arguments to mount are incorrect.
In this case, /dev/disk20 represents the enclosing disk image, but the actual disk data is on typically stored on a number of partitions (or slices) within the disk image itself. They're usually denoted as disk20s1, disk20s2, etc.)
For example, here's what a disk image looks like OMM:
/dev/disk4 (disk image):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme +73.4 MB disk4
1: Apple_HFS Installer 73.4 MB disk4s1
The fact that your disk image has no slices/partitions, the fact it has no 'type' (partition or filesystem spec), tells me it isn't a valid disk image, so you may be chasing your tail.
So, again, what is it you're trying to do here?