You are not logged in.
I am trying to do a dual boot with windows 10 and arch Linux . there are four partitions /dev/sda1 is system reserved , /dev/sda2 is windows , /dev/sda3 in swap , /dev/sda4 is Linux . Then I did the install and I always get an error saying " failed connect to lvmetad " when I try to generate grub.cfg . I used grub-bios and os-prober package to install the bootloader
Last edited by machackerx86 (2017-05-26 07:04:31)
Offline
post fdisk -l (that's a small lima) please.
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
the problem was with os-prober it was not working so i installed arch without os-prober and then manually added the windows entry . here is a work around
1) lets assume that system reserved partition is on /dev/sda1 and windows is on /dev/sda2 and so on . we need the uuid of /dev/sda1 , run the following command and note down the uuid
lsblk -f
2) now we have to modify the grub boot menu and create a menu for windows 10 and point it to /dev/sda1 .
nano /etc/grub.d/40_custom
3)now type in the following code and replace "hd0,msdos1" and "1234567890123456" to your respective values . For example /dev/sda1 = hd0,msdos1 , /dev/sdb2 = hd1,msdos2 and so on .1234567890123456 is your uuid of /dev/sda1 aka system reserved code can be found here
4) for some reason there is a problem with os-prober package it causes lvmetad errors every time i try to install
Offline