我的 zfs 挂载点在重启时消失,但导入后可以恢复。请给我建议解决方案?
root@mfsbsd:~ # zpool import edjstorage
root@mfsbsd:~ # zfs list
NAME USED AVAIL REFER MOUNTPOINT
edjstorage 621M 12.5G 24K /edjstorage
edjstorage/boot 621M 12.5G 621M /
edjstorage/conf 24K 12.5G 24K /conf
edjstorage/storage 24K 12.5G 24K /storage
答案1
检查canmount
文件系统的属性,如zfs get canmount edjstorage/boot
。它应该设置为on
,我猜你的设置为noauto
。将其更改为on
,zfs set canmount=on edjstorage/boot
并对你想要自动挂载的所有文件系统执行此操作。
答案2
# systemctl enable zfs-import-cache
# systemctl enable zfs-mount
# systemctl enable zfs-import.target