비 lvm 디스크에서 /run/lvm/lvmetad.socket을 요청하는 아치 GRUB


18

ArchWiki 설정 절차에 따라이 스크립트를 실행하고 있습니다. GRUB 구성 단계 에서 실패

1GB 램이있는 VMware Player에서 archlinux-2013.12.01-dual.iso를 사용하고 있으며 810MB sda입니다. 또한 호스트 시스템에 CIFS 공유를 마운트했습니다.

# DEV=sda
# PART=sda1
# echo "1,,L,*" | sfdisk /dev/$DEV
# mkfs.ext3 /dev/$PART
# mount /dev/$PART /mnt
# pacstrap -i /mnt base 
# genfstab -U -p /mnt >> /mnt/etc/fstab
# arch-chroot /mnt 
# pacman -S grub
# pacman -S os-prober
# grub-mkconfig -o /boot/grub/grub.cfg

나는 얻다:

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  WARNING: Failed to connect to lvmetad: No such file or directory. Falling back to internal scanning.
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  No volume groups found
error: out of memory.
error: syntax error.
error: Incorrect command.
error: syntax error.
Syntax error at line 164
Syntax errors are detected in generated GRUB config file.
Ensure that there are no errors in /etc/default/grub
and /etc/grub.d/* files or please file a bug report with
/boot/grub/grub.cfg.new file attached.done

LVM 파티션 / 드라이브를 설치하지 않았습니다.

# fdisk -l /dev/sda

Disk /dev/sda: 819 MiB, 858783744 bytes, 1677312 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x000d5a2a

Device    Boot Start       End Blocks  Id System
/dev/sda1       2048   1677311 837632  83 Linux


# lsblk 

NAME              MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
fd0                 2:0    1     4K  0 disk 
sda                 8:0    0   819M  0 disk 
└─sda1              8:1    0   818M  0 part /mnt
sr0                11:0    1   522M  0 rom  /run/archiso/bootmnt
sr1                11:1    1    10M  0 rom  
loop0               7:0    0 224.2M  1 loop /run/archiso/sfs/root-image
loop1               7:1    0   1.4G  1 loop 
└─arch_root-image 254:0    0   1.4G  0 dm   /
loop2               7:2    0   1.4G  0 loop 
└─arch_root-image 254:0    0   1.4G  0 dm   /

/boot/grub/grub.cfg.new 입니다 :

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos 
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  9d1d349e-d061-4e0f-9312-be19ca2dcb74
else
  search --no-floppy --fs-uuid --set=root 9d1d349e-d061-4e0f-9312-be19ca2dcb74
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-9d1d349e-d061-4e0f-9312-be19ca2dcb74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos 
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  9d1d349e-d061-4e0f-9312-be19ca2dcb74
    else
      search --no-floppy --fs-uuid --set=root 9d1d349e-d061-4e0f-9312-be19ca2dcb74
    fi
    echo    'Loading Linux core repo kernel ...'
    linux   /boot/vmlinuz-linux root=UUID=9d1d349e-d061-4e0f-9312-be19ca2dcb74 rw  quiet
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-9d1d349e-d061-4e0f-9312-be19ca2dcb74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos 
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  9d1d349e-d061-4e0f-9312-be19ca2dcb74
    else
      search --no-floppy --fs-uuid --set=root 9d1d349e-d061-4e0f-9312-be19ca2dcb74
    fi
    echo    'Loading Linux core repo kernel ...'
    linux   /boot/vmlinuz-linux root=UUID=9d1d349e-d061-4e0f-9312-be19ca2dcb74 rw  quiet
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initramfs-linux-fallback.img
}
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9d1d349e-d061-4e0f-9312-be19ca2dcb74' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos 
    insmod ext2
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  9d1d349e-d061-4e0f-9312-be19ca2dcb74
    else
      search --no-floppy --fs-uuid --set=root 9d1d349e-d061-4e0f-9312-be19ca2dcb74
    fi
    echo    'Loading Linux core repo kernel ...'
    linux   /boot/vmlinuz-linux root=UUID=9d1d349e-d061-4e0f-9312-be19ca2dcb74 rw  quiet
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initramfs-linux-fallback.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-9d1d349e-d061-4e0f-9312-be19ca2dcb74' {

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###

버그처럼 보입니다- "/boot/grub/grub.cfg.new 파일이 첨부 된 버그 보고서를 제출하십시오"
Panther

1
grsec을 실행하고 있습니까? 메모리가 충분합니까?
daisy

@ warl0ck : grsecurity? archlinux-2013.12.01-dual.iso384MB 램이있는 VMware Player 내부 표준을 사용하고 있습니다 . sda810MB입니다. 보조 ISO에서 sr1Vim을 설치하고 호스트 시스템에 CIFS 공유를 마운트하는 스크립트를 실행했습니다.
안토니오

답변:


22

나는 지금 바로 같은 문제를 겪고 또 다른 해결 방법을 찾았습니다. 기본적으로 /run게스트 가 호스트 디렉토리를 사용할 수 있도록하는 것입니다.

먼저 /run게스트가 액세스 할 수있는 위치에 마운트 합니다. 설치 파티션이 마운트되어 있다고 가정합니다./mnt

mkdir /mnt/hostrun
mount --bind /run /mnt/hostrun

그런 다음 게스트로 chroot하고 게스트의 호스트를 /run/lvm게스트의/run

arch-chroot /mnt /bin/bash
mkdir /run/lvm
mount --bind /hostrun/lvm /run/lvm

그런 다음 실행 grub-mkconfig하고 grub-install있는 LVM 오류없이. 당신이 설치하는 경우 동작합니다 또한이 명령을하게 함께 무엇의 가치에 대해, LVM.

완료되면 chroot를 ing 하기 umount /run/lvm전에 기억하십시오 exit.


6

@guest에 의해 연구 된 후 grub-mkconfig헬퍼 스크립트 에 명백한 버그가 있음을 발견했습니다 /etc/grub.d/10_linux. 이로 인해 대체 initramfs GRUB 항목이 GRUB 하위 메뉴 시스템과 호환되지 않습니다. 폴백 initramfs의 사용법은 Arch 및 파생 상품에 따라 다르므로 업스트림에서 지원되지 않습니다 grub-mkconfig. 결정적인 수정이 아직 진행 중입니다. bugs.archlinux.org 에 대한 자세한 내용을 참조하십시오

따라서 임시 해결 방법은 GRUB에서 다음을 추가하여 하위 메뉴를 비활성화하는 것입니다.

GRUB_DISABLE_SUBMENU=y

/etc/default/grub.

불행히도 하위 메뉴를 비활성화하면에 의해 발생하는 두 번째 오류 만 피합니다 grub-mkconfig.

따라서,

# arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg

나는 여전히 얻는다 :

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  WARNING: Failed to connect to lvmetad: No such file or directory. Falling back to internal scanning.
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  /run/lvm/lvmetad.socket: connect failed: No such file or directory
  No volume groups found

나는 LVM 파티션 / 드라이브를 설치 한 적이 없으며, 내 질문에서 알 수 있듯이 시스템을 파티션하고 포맷했습니다. 어쨌든 GRUB 오류를 수정 한 후 두 가지를 모두 시도했습니다.

systemctl start lvmetad

systemctl start lvmetad.service

그리고 나는 pacstrap성공하지 않고 다시 달렸다 .

현재 오류는 다음과 같이 중요하지 않습니다.

arch-chroot /mnt grub-install --target=i386-pc --recheck /dev/$DEV

원활하게 이동하고에서 부팅 할 수 있습니다 $DEV.


자신의 질문에 대답하면 괜찮습니다. 커뮤니티 위키 게시물로 만들 필요가 없습니다.
terdon

1
이것이 답변 또는 다른 질문인지 알 수 없습니다
Michael Mrozek

@MichaelMrozek : 글쎄, 그것은 부분적인 대답 / 질문입니다. 두 번째 오류는 수정되었습니다. 특히, 첫 번째 오류는 이제 아치 설정에 중요하지 않은 것으로 표시됩니다. 나는 여전히 조사 중이며 희망적으로 후자가 수정되기를 바랍니다.
안토니오

3

나는 같은 문제가 있었지만 나에게 맞는 해결책을 찾았습니다 : 그냥 제거하십시오 os-prober.


1
간단한 예를 들어, 괜찮습니다. 그러나 다른 OS가 있고 멀티 부트 메뉴를 원하는 경우 수동으로 항목을 설정합니까?
안토니오

1
os-prober를 제거하지 말고 실행 비트를 비활성화 chmod -x /etc/grub.d/30_os-prober하십시오. 경고를 제거해야합니다.
NuclearPeon

이것은 실제로 해결책이 아닙니다. os-prober는 하나의 시스템 만 사용하지 않는 한 grub의 필수 부분입니다.
daboross


0

첫 번째 오류 메시지의 경우 grub이 LVM 메타 데이터 데몬에 연결할 수 없습니다. 루트로이 명령을 실행하십시오 (시작합니다).

systemctl start lvmetad

두 번째는 VM에 할당 된 RAM을 늘리고 아마도 512Mgrub을 다시 실행하십시오.


램을 최대 1GB로 설정했지만 systemctl start lvmetad(chroot 외부에서 실행) 오류 메시지가 표시되지 않습니다. 그러나 grub-mkconfig내부에서 다시 실행 arch-chroot하면 정확히 같은 오류 (mem 오류 포함)가 발생합니다.
antonio
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.