When installing a new FreeBSD 11.0 with zfs root, the installer creates 2 zfs pools and puts the contents of /boot in zfs:bootpool/boot. /boot is a symlink pointing to /bootpool/boot
Normal boot process then does not mount bootpool (nice little security extra there) so the /boot symlink points to a nonexistent dir.
/etc/defaults/rc.conf sets:
my question:
Better to set
Is this a bug?
Normal boot process then does not mount bootpool (nice little security extra there) so the /boot symlink points to a nonexistent dir.
/etc/defaults/rc.conf sets:
entropy_boot_file="/boot/entropy"
which is used by /etc/rc.d/random so it fails with the error "no such file or directory."my question:
Better to set
entropy_boot_file
to something like /var/db/entropy or just touch /bootpool/boot/entropy sometime when bootpool is not mounted?Is this a bug?