I'm installing arch Linux and I typed in the command
grub-mkconfig -o /boot/grub/grub.cfg
And it responded with
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
What do I do?
I'm installing arch Linux and I typed in the command
grub-mkconfig -o /boot/grub/grub.cfg
And it responded with
WARNING: Failed to connect to lvmetad. Falling back to device scanning.
What do I do?
This worried me as well. From some digging about on the GRUB Arch Wiki page:
Warning when installing in chroot
When installing GRUB on a LVM system in a chroot environment (e.g. during system installation), you may receive warnings like
/run/lvm/lvmetad.socket: connect failed: No such file or directory
or
WARNING: failed to connect to lvmetad: No such file or directory. Falling back to internal scanning.
This is because /run is not available inside the chroot. These warnings will not prevent the system from booting, provided that everything has been done correctly, so you may continue with the installation.
So looks like there's no need to worry.
It doesn't matter, you can ignore it.
It just because lvmetad is not running when you boot your arch from live cd.
/etc/lvm/lvm.conf
and setuse_lvmetad = 0
– GAD3R Dec 24 '16 at 17:27