Proxmox使用ZFS间歇性无法引导,提示:
Failed to import pool 'rpool' Manually import the pool and exit.
原因是内核启动时太快,还没加载好文件导致加载不了ZFS池。解决方法如下:
参考官方文档:https://pve.proxmox.com/wiki/ZFS:_Tips_and_Tricks
1.开机进入boot选项后,按”e”键,进入编辑模式,在quiet前加入”rootdelay=10″,再按”ctrl+x”键进入。
2.进入系统后,可以修改grub在quiet前加入rootdelay=10,修改后长期有效
例:
nano /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="rootdelay=10 quiet"
Ctrl+O再按回车保存,Ctrl+X退出
更新grub:
update-grub