you need to mount the device first, you can't pull it directly from the raw block device.
So say...
Code:
mkdir /mnt/usb
mount /dev/sdb1 /mnt/usb
cp /mnt/usb/nzedb ~/
once done remember to unmount it and clean up.
Code:
umount /mnt/usb
rmdir /mnt/usb