As in topic, relevant data below. # grep zfs_enable /etc/rc.conf zfs_enable=YES # swapinfo Device 1K-blocks Used Avail Capacity # zfs get org.freebsd:swap local/SWAP NAME PROPERTY VALUE SOURCE local/SWAP org.freebsd:swap on local # service -e | grep zvol /etc/rc.d/zvol # /etc/rc.d/zvol start # swapinfo Device 1K-blocks Used Avail Capacity /dev/zvol/local/SWAP 4194304 0 4194304 0% Regards.
Try running > rcorder /etc/rc.d/* /usr/local/etc/rc.d/* Check if there is anything in stderr. Check if zvol is listed in stdout.
(In reply to Andriy Gapon from comment #1) > Check if there is anything in stderr. # rcorder /etc/rc.d/* /usr/local/etc/rc.d/* 1> /dev/null # (none) > Check if zvol is listed in stdout. # rcorder /etc/rc.d/* /usr/local/etc/rc.d/* | grep zvol /etc/rc.d/zvol # (yes it is) I assumed that this is enought to show that 'zvol' script is enabled: > # service -e | grep zvol > /etc/rc.d/zvol Regards.