Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

dd: unknown operand

Writer Matthew Harrington
sudo dd if=/Macintosh HD/Users/nickzieno/Downloads/ubuntu-14.04.1-desktop-amd64.img of=/dev/rdiskN bs-1m

I'm now getting this after I enter all of that

dd: unknown operand HD/Users/nickzieno/Downloads/ubuntu-14.04.1-desktop-amd64.iso

1 Answer

Your input file name contains a space character so you need to use quotes. And it has to be bs=1m instead of bs-1m:

sudo dd if='/Macintosh HD/Users/nickzieno/Downloads/ubuntu-14.04.1-desktop-amd64.img' of=/dev/rdiskN bs=1m

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy