I’m just getting started with zcash and following the instructions here.
I’m installing the client using apt-get on a whonix 14 workstation running on a virtualbox VM.
There is this line in the instructions:
echo "rpcpassword=`head -c 32 /dev/urandom | base64`" >> ~/.zcash/zcash.conf
I don’t know much anything about entropy/randomness on VMs or virtualbox in particular, but I got a little suspicious that maybe a virtualized environment might not provide “real” entropy and make that generated password less secure.
Is this a legitimate concern? Is there anything I need to do to make sure /dev/urandom
is actually random?