Remix.run Logo
ilikepi 3 days ago

Ok I gotta ask...why of=/dev/zero and not of=/dev/null ?

jauntywundrkind 2 days ago | parent [-]

That's probably much better, oops!

gruez 2 days ago | parent [-]

You don't even need dd since you're reading the whole file end to end. Something like

    cat /dev/nvme0n1 > /dev/null
would suffice.