Bug#879793: /usr/sbin/grub-install: Missing modules for LVM+RAID

Linus Luessing linus.luessing at c0d3.blue
Thu Oct 26 01:41:05 UTC 2017


Package: grub2-common
Version: 2.02~beta3-5
Severity: important
File: /usr/sbin/grub-install

Dear Maintainer,

I just upgraded a system from Debian 8 to Debian 9. With a subsequent
"grub-install" I ended up being unable to boot and was left in a grub
rescue shell with the following error message:

~~~
error: no such device: 9f02f7d5-9061-4b8f-b5b1-860605fe1220.
error: unknown filesystem.
Entering rescue mode...
grub rescue>
~~~

The UUID is the one from the rootfs partition I'd like to boot. This rootfs
is located on an ext4 partition on an LVM volume. LVM is located on a
RAID5, consisting of 3 hard drives. Each of these drives has an MSDOS
style partition table with exactly one primary partition. This one
partition is used for the RAID.


After a few hours of debugging with the help of the grub IRC channel on
Freenode, the following workaround finally helped to boot again: Adding a
"--modules 'part_gpt part_msdos mdraid1x raid5rec lvm'" to grub-install
did the trick.

So it looks like somehow the autodetection of mandatory modules in this
setup is broken in grub-install.

I'm attaching both the grub-install verbose output from before and after
adding the --modules parameter. And I'm attaching the mdstat output
and some partially redacted LVM related output.

Let me know if you'd need any further information.

Regards, Linus


-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/raid-root / ext4 rw,relatime,errors=remount-ro,stripe=32,data=ordered 0 0
/dev/mapper/raid-home /home ext4 rw,relatime,stripe=32,data=ordered 0 0
/dev/mapper/raid-home /export/home ext4 rw,relatime,stripe=32,data=ordered 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0)	/dev/disk/by-id/raid-raid-swap
(hd4)	/dev/disk/by-id/raid-raid-home
(hd10)	/dev/disk/by-id/raid-raid-root
(hd16)	/dev/disk/by-id/ata-HITACHI_HUA7250SBSUN500G_0823JBK4ZF_GTF402P6GBK4ZF
(hd17)	/dev/disk/by-id/ata-HITACHI_HUA7250SBSUN500G_0823JBK5GF_GTF402P6GBK5GF
(hd18)	/dev/disk/by-id/ata-HITACHI_HUA7250SBSUN500G_0823JBK5PF_GTF402P6GBK5PF
*********************** END /boot/grub/device.map

*********************** BEGIN /boot/grub/grub.cfg
#
# 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 ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  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 ext2
set root='hd10'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
else
  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-f82363c4-dc31-444f-8c23-ad15ae12634c' {
	load_video
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod ext2
	set root='hd10'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
	else
	  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
	fi
	echo	'Loading Linux 4.9.0-4-amd64 ...'
	linux	/boot/vmlinuz-4.9.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initrd.img-4.9.0-4-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-f82363c4-dc31-444f-8c23-ad15ae12634c' {
	menuentry 'Debian GNU/Linux, with Linux 4.9.0-4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-4-amd64-advanced-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 4.9.0-4-amd64 ...'
		linux	/boot/vmlinuz-4.9.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.9.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 4.9.0-4-amd64 (sysvinit)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-4-amd64-init-sysvinit-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 4.9.0-4-amd64 ...'
		linux	/boot/vmlinuz-4.9.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet init=/lib/sysvinit/init
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.9.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 4.9.0-4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.9.0-4-amd64-recovery-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 4.9.0-4-amd64 ...'
		linux	/boot/vmlinuz-4.9.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.9.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-4-amd64-advanced-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.16.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.16.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.16.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (sysvinit)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-4-amd64-init-sysvinit-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.16.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.16.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet init=/lib/sysvinit/init
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.16.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-4-amd64-recovery-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.16.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.16.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.16.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.2.0-4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.2.0-4-amd64-advanced-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.2.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.2.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.2.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.2.0-4-amd64 (sysvinit)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.2.0-4-amd64-init-sysvinit-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.2.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.2.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro  quiet init=/lib/sysvinit/init
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.2.0-4-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 3.2.0-4-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.2.0-4-amd64-recovery-f82363c4-dc31-444f-8c23-ad15ae12634c' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod ext2
		set root='hd10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
		else
		  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
		fi
		echo	'Loading Linux 3.2.0-4-amd64 ...'
		linux	/boot/vmlinuz-3.2.0-4-amd64 root=UUID=f82363c4-dc31-444f-8c23-ad15ae12634c ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.2.0-4-amd64
	}
}

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

### BEGIN /etc/grub.d/20_ipxe ###
menuentry "Network boot (iPXE)" --users "" --class network {
	insmod ext2
	set root='hd10'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='hd10'  f82363c4-dc31-444f-8c23-ad15ae12634c
	else
	  search --no-floppy --fs-uuid --set=root f82363c4-dc31-444f-8c23-ad15ae12634c
	fi
	linux16 /boot/ipxe.lkrn
}
### END /etc/grub.d/20_ipxe ###

### 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/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### 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 ###
*********************** END /boot/grub/grub.cfg

*********************** BEGIN /proc/mdstat
Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] [raid10] 
md0 : active raid5 sdc1[0] sda1[2] sdb1[1]
      976508672 blocks super 1.2 level 5, 64k chunk, algorithm 2 [3/3] [UUU]
      bitmap: 1/4 pages [4KB], 65536KB chunk

unused devices: <none>
*********************** END /proc/mdstat

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Oct 23 11:13 ata-HITACHI_HUA7250SBSUN500G_0823JBK4ZF_GTF402P6GBK4ZF -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 23 11:13 ata-HITACHI_HUA7250SBSUN500G_0823JBK4ZF_GTF402P6GBK4ZF-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Oct 26 02:14 ata-HITACHI_HUA7250SBSUN500G_0823JBK5GF_GTF402P6GBK5GF -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 26 02:14 ata-HITACHI_HUA7250SBSUN500G_0823JBK5GF_GTF402P6GBK5GF-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Oct 23 11:13 ata-HITACHI_HUA7250SBSUN500G_0823JBK5PF_GTF402P6GBK5PF -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 23 11:13 ata-HITACHI_HUA7250SBSUN500G_0823JBK5PF_GTF402P6GBK5PF-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-15
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-7
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-home -> ../../dm-12
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-9
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-13
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-newroot--snap -> ../../dm-4
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-10
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-root -> ../../dm-16
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-root--old -> ../../dm-2
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-14
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-8
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-5
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-6
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-name-raid-swap -> ../../dm-0
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-name-raid-[...] -> ../../dm-11
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVI0hnZaCRFb1zm7NFnKanp6WFkcd7lUxq2 -> ../../dm-8
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVI38jPEuPKy3g8qiLGEfaFBkCw0vL0KOY2 -> ../../dm-16
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVI50G0X0sAdXoFTGLNfxrapunbQEIKdyIe -> ../../dm-12
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVI7GDy7vKNTO3RXZRccH39WdoHA1LyzG35 -> ../../dm-13
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIAthNSnWE1KpL0zxtodLeDD76x0sk4u5b -> ../../dm-15
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIGraGk3IaFOXoVsKPFp0UJq21jTtxT2qW -> ../../dm-0
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVILIBfcvpZW0FeIJSgOCf7kuuVqT84izHT -> ../../dm-5
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIM74xuKPkVjGSucsdNR1nCR6ATESLbc4e -> ../../dm-9
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIMRJe1KgaQjnxKZ1yFpr70XT8msL0iOvV -> ../../dm-6
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIPT4fr3ah7oTT7yGr5Y9Kv5susEghBedm -> ../../dm-2
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIUxAdoHMaSVHA2Etnp8OgXBJ6nddsDUrf -> ../../dm-10
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIWfpM8E0Vb2knXTh4ly8MywYR6nvL6PMQ -> ../../dm-4
lrwxrwxrwx 1 root root 10 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIXT2eIbqeHPQuSY36u6AtqTfkqywOzAr7 -> ../../dm-7
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIiMUHRKIR0e9ztLjEePdxdtxekoqHi1Z2 -> ../../dm-14
lrwxrwxrwx 1 root root 11 Oct 23 11:13 dm-uuid-LVM-2czMwmb0j7QwjjMDOy7UWJTlDwB6evVIsEgdjA86IPOjQEylsWwBabguInZCIsgu -> ../../dm-11
lrwxrwxrwx 1 root root  9 Oct 23 11:13 lvm-pv-uuid-3NFXll-HoXj-ImSN-KZZq-Jrwa-mrcl-dBk20q -> ../../md0
lrwxrwxrwx 1 root root  9 Oct 23 11:13 md-name-krtek:1 -> ../../md0
lrwxrwxrwx 1 root root  9 Oct 23 11:13 md-uuid-07bf1acb:53fbc943:09a6b51f:11c4537a -> ../../md0
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-[...] -> ../../dm-15
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-[...] -> ../../dm-7
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-home -> ../../dm-12
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-[...] -> ../../dm-9
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-[...] -> ../../dm-13
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-newroot--snap -> ../../dm-4
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-newroot--snap-cow -> ../../dm-3
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-[...] -> ../../dm-10
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-root -> ../../dm-16
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-root--old -> ../../dm-2
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-root--old-real -> ../../dm-1
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-[...] -> ../../dm-14
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-[...] -> ../../dm-8
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-[...] -> ../../dm-5
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-[...] -> ../../dm-6
lrwxrwxrwx 1 root root 10 Oct 23 11:13 raid-raid-swap -> ../../dm-0
lrwxrwxrwx 1 root root 11 Oct 23 11:13 raid-raid-[...] -> ../../dm-11
lrwxrwxrwx 1 root root  9 Oct 23 11:13 wwn-0x5000cca214c54080 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 23 11:13 wwn-0x5000cca214c54080-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Oct 26 02:14 wwn-0x5000cca214c5408f -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 26 02:14 wwn-0x5000cca214c5408f-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Oct 23 11:13 wwn-0x5000cca214c54096 -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 23 11:13 wwn-0x5000cca214c54096-part1 -> ../../sdc1
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Oct 23 11:13 192dd498-d115-482a-96be-c5f6da641285 -> ../../dm-2
lrwxrwxrwx 1 root root 11 Oct 23 11:13 6bc217d3-a5f0-4143-89bf-d3736258f6a9 -> ../../dm-12
lrwxrwxrwx 1 root root 10 Oct 23 11:13 9f02f7d5-9061-4b8f-b5b1-860605fe1220 -> ../../dm-4
lrwxrwxrwx 1 root root 10 Oct 23 11:13 ead9a8d2-1858-4faa-a9c4-a881db6db0aa -> ../../dm-0
lrwxrwxrwx 1 root root 11 Oct 23 11:13 f82363c4-dc31-444f-8c23-ad15ae12634c -> ../../dm-16
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: 9.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages grub2-common depends on:
ii  dpkg                1.18.24
ii  grub-common         2.02~beta3-5
ii  install-info        6.3.0.dfsg.1-1+b2
ii  libc6               2.24-11+deb9u1
ii  libdevmapper1.02.1  2:1.02.137-2
ii  liblzma5            5.2.2-1.2+b1

grub2-common recommends no packages.

grub2-common suggests no packages.

-- no debconf information
-------------- next part --------------
$ grub-install --verbose /dev/sdb
grub-install: info: executing modprobe efivars 2>/dev/null.
grub-install: info: Looking for /sys/firmware/efi ...
grub-install: info: ... not found. Looking for /proc/device-tree ...
grub-install: info: ... not found.
Installing for i386-pc platform.
grub-install: info: adding `hd0' -> `/dev/dm-0' from device.map.
grub-install: info: adding `hd4' -> `/dev/dm-12' from device.map.
grub-install: info: adding `hd10' -> `/dev/dm-16' from device.map.
grub-install: info: adding `hd16' -> `/dev/sda' from device.map.
grub-install: info: adding `hd17' -> `/dev/sdb' from device.map.
grub-install: info: adding `hd18' -> `/dev/sdc' from device.map.
grub-install: info: copying `/usr/lib/grub/i386-pc/fshelp.mod' -> `/boot/grub/i386-pc/fshelp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/memrw.mod' -> `/boot/grub/i386-pc/memrw.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_twofish.mod' -> `/boot/grub/i386-pc/gcry_twofish.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_ftdi.mod' -> `/boot/grub/i386-pc/usbserial_ftdi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lspci.mod' -> `/boot/grub/i386-pc/lspci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/udf.mod' -> `/boot/grub/i386-pc/udf.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/elf.mod' -> `/boot/grub/i386-pc/elf.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminfo.mod' -> `/boot/grub/i386-pc/terminfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gptsync.mod' -> `/boot/grub/i386-pc/gptsync.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_label.mod' -> `/boot/grub/i386-pc/search_label.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setpci.mod' -> `/boot/grub/i386-pc/setpci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video.mod' -> `/boot/grub/i386-pc/video.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/all_video.mod' -> `/boot/grub/i386-pc/all_video.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/exfctest.mod' -> `/boot/grub/i386-pc/exfctest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid_test.mod' -> `/boot/grub/i386-pc/xnu_uuid_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfs.mod' -> `/boot/grub/i386-pc/zfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xzio.mod' -> `/boot/grub/i386-pc/xzio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/msdospart.mod' -> `/boot/grub/i386-pc/msdospart.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxmenu.mod' -> `/boot/grub/i386-pc/gfxmenu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pci.mod' -> `/boot/grub/i386-pc/pci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/file.mod' -> `/boot/grub/i386-pc/file.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/regexp.mod' -> `/boot/grub/i386-pc/regexp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/png.mod' -> `/boot/grub/i386-pc/png.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tar.mod' -> `/boot/grub/i386-pc/tar.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap.mod' -> `/boot/grub/i386-pc/bitmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/datehook.mod' -> `/boot/grub/i386-pc/datehook.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09.mod' -> `/boot/grub/i386-pc/mdraid09.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/random.mod' -> `/boot/grub/i386-pc/random.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/test_blockarg.mod' -> `/boot/grub/i386-pc/test_blockarg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ohci.mod' -> `/boot/grub/i386-pc/ohci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix.mod' -> `/boot/grub/i386-pc/minix.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_bochs.mod' -> `/boot/grub/i386-pc/video_bochs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs2.mod' -> `/boot/grub/i386-pc/ufs2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/biosdisk.mod' -> `/boot/grub/i386-pc/biosdisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usb_keyboard.mod' -> `/boot/grub/i386-pc/usb_keyboard.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/password.mod' -> `/boot/grub/i386-pc/password.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha1.mod' -> `/boot/grub/i386-pc/gcry_sha1.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bsd.mod' -> `/boot/grub/i386-pc/bsd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/macho.mod' -> `/boot/grub/i386-pc/macho.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/exfat.mod' -> `/boot/grub/i386-pc/exfat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/nilfs2.mod' -> `/boot/grub/i386-pc/nilfs2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/afs.mod' -> `/boot/grub/i386-pc/afs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu.mod' -> `/boot/grub/i386-pc/efiemu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/915resolution.mod' -> `/boot/grub/i386-pc/915resolution.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1_be.mod' -> `/boot/grub/i386-pc/ufs1_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cs5536.mod' -> `/boot/grub/i386-pc/cs5536.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp.mod' -> `/boot/grub/i386-pc/setjmp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm.mod' -> `/boot/grub/i386-pc/gfxterm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_fb.mod' -> `/boot/grub/i386-pc/video_fb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpio_be.mod' -> `/boot/grub/i386-pc/cpio_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/morse.mod' -> `/boot/grub/i386-pc/morse.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/legacycfg.mod' -> `/boot/grub/i386-pc/legacycfg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/chain.mod' -> `/boot/grub/i386-pc/chain.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/datetime.mod' -> `/boot/grub/i386-pc/datetime.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/reboot.mod' -> `/boot/grub/i386-pc/reboot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09_be.mod' -> `/boot/grub/i386-pc/mdraid09_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/iso9660.mod' -> `/boot/grub/i386-pc/iso9660.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/extcmd.mod' -> `/boot/grub/i386-pc/extcmd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsapm.mod' -> `/boot/grub/i386-pc/lsapm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rmd160.mod' -> `/boot/grub/i386-pc/gcry_rmd160.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/offsetio.mod' -> `/boot/grub/i386-pc/offsetio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.mod' -> `/boot/grub/i386-pc/crypto.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmosdump.mod' -> `/boot/grub/i386-pc/cmosdump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/functional_test.mod' -> `/boot/grub/i386-pc/functional_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/configfile.mod' -> `/boot/grub/i386-pc/configfile.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_pl2303.mod' -> `/boot/grub/i386-pc/usbserial_pl2303.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_usbdebug.mod' -> `/boot/grub/i386-pc/usbserial_usbdebug.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/http.mod' -> `/boot/grub/i386-pc/http.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/macbless.mod' -> `/boot/grub/i386-pc/macbless.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/procfs.mod' -> `/boot/grub/i386-pc/procfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/signature_test.mod' -> `/boot/grub/i386-pc/signature_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search.mod' -> `/boot/grub/i386-pc/search.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix3.mod' -> `/boot/grub/i386-pc/minix3.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/raid6rec.mod' -> `/boot/grub/i386-pc/raid6rec.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/net.mod' -> `/boot/grub/i386-pc/net.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/halt.mod' -> `/boot/grub/i386-pc/halt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ls.mod' -> `/boot/grub/i386-pc/ls.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mul_test.mod' -> `/boot/grub/i386-pc/mul_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpio.mod' -> `/boot/grub/i386-pc/cpio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/normal.mod' -> `/boot/grub/i386-pc/normal.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_des.mod' -> `/boot/grub/i386-pc/gcry_des.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/progress.mod' -> `/boot/grub/i386-pc/progress.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/spkmodem.mod' -> `/boot/grub/i386-pc/spkmodem.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmp_test.mod' -> `/boot/grub/i386-pc/cmp_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/serial.mod' -> `/boot/grub/i386-pc/serial.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/memdisk.mod' -> `/boot/grub/i386-pc/memdisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfs.mod' -> `/boot/grub/i386-pc/hfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbms.mod' -> `/boot/grub/i386-pc/usbms.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vga_text.mod' -> `/boot/grub/i386-pc/vga_text.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/luks.mod' -> `/boot/grub/i386-pc/luks.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_colors.mod' -> `/boot/grub/i386-pc/video_colors.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfscrypt.mod' -> `/boot/grub/i386-pc/zfscrypt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_cirrus.mod' -> `/boot/grub/i386-pc/video_cirrus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sendkey.mod' -> `/boot/grub/i386-pc/sendkey.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpuid.mod' -> `/boot/grub/i386-pc/cpuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_dvh.mod' -> `/boot/grub/i386-pc/part_dvh.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pxechain.mod' -> `/boot/grub/i386-pc/pxechain.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_seed.mod' -> `/boot/grub/i386-pc/gcry_seed.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/linux16.mod' -> `/boot/grub/i386-pc/linux16.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hashsum.mod' -> `/boot/grub/i386-pc/hashsum.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mda_text.mod' -> `/boot/grub/i386-pc/mda_text.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/div.mod' -> `/boot/grub/i386-pc/div.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/geli.mod' -> `/boot/grub/i386-pc/geli.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hwmatch.mod' -> `/boot/grub/i386-pc/hwmatch.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/testload.mod' -> `/boot/grub/i386-pc/testload.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mpi.mod' -> `/boot/grub/i386-pc/mpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.mod' -> `/boot/grub/i386-pc/parttool.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmp.mod' -> `/boot/grub/i386-pc/cmp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/play.mod' -> `/boot/grub/i386-pc/play.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_menu.mod' -> `/boot/grub/i386-pc/gfxterm_menu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbfs.mod' -> `/boot/grub/i386-pc/cbfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/shift_test.mod' -> `/boot/grub/i386-pc/shift_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_arcfour.mod' -> `/boot/grub/i386-pc/gcry_arcfour.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix_be.mod' -> `/boot/grub/i386-pc/minix_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/time.mod' -> `/boot/grub/i386-pc/time.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/fat.mod' -> `/boot/grub/i386-pc/fat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1.mod' -> `/boot/grub/i386-pc/ufs1.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbmemc.mod' -> `/boot/grub/i386-pc/cbmemc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbtable.mod' -> `/boot/grub/i386-pc/cbtable.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/drivemap.mod' -> `/boot/grub/i386-pc/drivemap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/diskfilter.mod' -> `/boot/grub/i386-pc/diskfilter.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rsa.mod' -> `/boot/grub/i386-pc/gcry_rsa.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntfscomp.mod' -> `/boot/grub/i386-pc/ntfscomp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/verify.mod' -> `/boot/grub/i386-pc/verify.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/keylayouts.mod' -> `/boot/grub/i386-pc/keylayouts.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_crc.mod' -> `/boot/grub/i386-pc/gcry_crc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mmap.mod' -> `/boot/grub/i386-pc/mmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_amiga.mod' -> `/boot/grub/i386-pc/part_amiga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cat.mod' -> `/boot/grub/i386-pc/cat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_acorn.mod' -> `/boot/grub/i386-pc/part_acorn.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/legacy_password_test.mod' -> `/boot/grub/i386-pc/legacy_password_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu.mod' -> `/boot/grub/i386-pc/xnu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_sunpc.mod' -> `/boot/grub/i386-pc/part_sunpc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/newc.mod' -> `/boot/grub/i386-pc/newc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_idea.mod' -> `/boot/grub/i386-pc/gcry_idea.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/btrfs.mod' -> `/boot/grub/i386-pc/btrfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gettext.mod' -> `/boot/grub/i386-pc/gettext.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pata.mod' -> `/boot/grub/i386-pc/pata.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_dsa.mod' -> `/boot/grub/i386-pc/gcry_dsa.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix2_be.mod' -> `/boot/grub/i386-pc/minix2_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/at_keyboard.mod' -> `/boot/grub/i386-pc/at_keyboard.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_dfly.mod' -> `/boot/grub/i386-pc/part_dfly.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vga.mod' -> `/boot/grub/i386-pc/vga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/testspeed.mod' -> `/boot/grub/i386-pc/testspeed.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gdb.mod' -> `/boot/grub/i386-pc/gdb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/help.mod' -> `/boot/grub/i386-pc/help.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md4.mod' -> `/boot/grub/i386-pc/gcry_md4.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/trig.mod' -> `/boot/grub/i386-pc/trig.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/div_test.mod' -> `/boot/grub/i386-pc/div_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot2.mod' -> `/boot/grub/i386-pc/multiboot2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbtime.mod' -> `/boot/grub/i386-pc/cbtime.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hdparm.mod' -> `/boot/grub/i386-pc/hdparm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/dm_nv.mod' -> `/boot/grub/i386-pc/dm_nv.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_msdos.mod' -> `/boot/grub/i386-pc/part_msdos.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/raid5rec.mod' -> `/boot/grub/i386-pc/raid5rec.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hello.mod' -> `/boot/grub/i386-pc/hello.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/uhci.mod' -> `/boot/grub/i386-pc/uhci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/password_pbkdf2.mod' -> `/boot/grub/i386-pc/password_pbkdf2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/truecrypt.mod' -> `/boot/grub/i386-pc/truecrypt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xfs.mod' -> `/boot/grub/i386-pc/xfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_camellia.mod' -> `/boot/grub/i386-pc/gcry_camellia.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videotest.mod' -> `/boot/grub/i386-pc/videotest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap_scale.mod' -> `/boot/grub/i386-pc/bitmap_scale.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bswap_test.mod' -> `/boot/grub/i386-pc/bswap_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_tiger.mod' -> `/boot/grub/i386-pc/gcry_tiger.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sleep_test.mod' -> `/boot/grub/i386-pc/sleep_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ctz_test.mod' -> `/boot/grub/i386-pc/ctz_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbtest.mod' -> `/boot/grub/i386-pc/usbtest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/boot.mod' -> `/boot/grub/i386-pc/boot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmdline_cat_test.mod' -> `/boot/grub/i386-pc/cmdline_cat_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videotest_checksum.mod' -> `/boot/grub/i386-pc/videotest_checksum.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tftp.mod' -> `/boot/grub/i386-pc/tftp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lvm.mod' -> `/boot/grub/i386-pc/lvm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/nativedisk.mod' -> `/boot/grub/i386-pc/nativedisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha512.mod' -> `/boot/grub/i386-pc/gcry_sha512.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_bsd.mod' -> `/boot/grub/i386-pc/part_bsd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pxe.mod' -> `/boot/grub/i386-pc/pxe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid.mod' -> `/boot/grub/i386-pc/xnu_uuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/relocator.mod' -> `/boot/grub/i386-pc/relocator.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/scsi.mod' -> `/boot/grub/i386-pc/scsi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/probe.mod' -> `/boot/grub/i386-pc/probe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ehci.mod' -> `/boot/grub/i386-pc/ehci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix2.mod' -> `/boot/grub/i386-pc/minix2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/disk.mod' -> `/boot/grub/i386-pc/disk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_apple.mod' -> `/boot/grub/i386-pc/part_apple.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/jpeg.mod' -> `/boot/grub/i386-pc/jpeg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntfs.mod' -> `/boot/grub/i386-pc/ntfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sleep.mod' -> `/boot/grub/i386-pc/sleep.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sfs.mod' -> `/boot/grub/i386-pc/sfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bfs.mod' -> `/boot/grub/i386-pc/bfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntldr.mod' -> `/boot/grub/i386-pc/ntldr.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videoinfo.mod' -> `/boot/grub/i386-pc/videoinfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_background.mod' -> `/boot/grub/i386-pc/gfxterm_background.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_sun.mod' -> `/boot/grub/i386-pc/part_sun.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ata.mod' -> `/boot/grub/i386-pc/ata.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/aout.mod' -> `/boot/grub/i386-pc/aout.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_blowfish.mod' -> `/boot/grub/i386-pc/gcry_blowfish.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_serpent.mod' -> `/boot/grub/i386-pc/gcry_serpent.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/eval.mod' -> `/boot/grub/i386-pc/eval.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ahci.mod' -> `/boot/grub/i386-pc/ahci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid1x.mod' -> `/boot/grub/i386-pc/mdraid1x.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/loopback.mod' -> `/boot/grub/i386-pc/loopback.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minicmd.mod' -> `/boot/grub/i386-pc/minicmd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/priority_queue.mod' -> `/boot/grub/i386-pc/priority_queue.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/freedos.mod' -> `/boot/grub/i386-pc/freedos.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/squash4.mod' -> `/boot/grub/i386-pc/squash4.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/syslinuxcfg.mod' -> `/boot/grub/i386-pc/syslinuxcfg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ext2.mod' -> `/boot/grub/i386-pc/ext2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/plan9.mod' -> `/boot/grub/i386-pc/plan9.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/backtrace.mod' -> `/boot/grub/i386-pc/backtrace.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_uuid.mod' -> `/boot/grub/i386-pc/search_fs_uuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha256.mod' -> `/boot/grub/i386-pc/gcry_sha256.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbls.mod' -> `/boot/grub/i386-pc/cbls.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/loadenv.mod' -> `/boot/grub/i386-pc/loadenv.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/font.mod' -> `/boot/grub/i386-pc/font.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/odc.mod' -> `/boot/grub/i386-pc/odc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ldm.mod' -> `/boot/grub/i386-pc/ldm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_gpt.mod' -> `/boot/grub/i386-pc/part_gpt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfsplus.mod' -> `/boot/grub/i386-pc/hfsplus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rijndael.mod' -> `/boot/grub/i386-pc/gcry_rijndael.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/archelp.mod' -> `/boot/grub/i386-pc/archelp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/reiserfs.mod' -> `/boot/grub/i386-pc/reiserfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/affs.mod' -> `/boot/grub/i386-pc/affs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/linux.mod' -> `/boot/grub/i386-pc/linux.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2.mod' -> `/boot/grub/i386-pc/pbkdf2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/echo.mod' -> `/boot/grub/i386-pc/echo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/date.mod' -> `/boot/grub/i386-pc/date.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix3_be.mod' -> `/boot/grub/i386-pc/minix3_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/read.mod' -> `/boot/grub/i386-pc/read.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmostest.mod' -> `/boot/grub/i386-pc/cmostest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crc64.mod' -> `/boot/grub/i386-pc/crc64.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hexdump.mod' -> `/boot/grub/i386-pc/hexdump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsmmap.mod' -> `/boot/grub/i386-pc/lsmmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/acpi.mod' -> `/boot/grub/i386-pc/acpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vbe.mod' -> `/boot/grub/i386-pc/vbe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_cast5.mod' -> `/boot/grub/i386-pc/gcry_cast5.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/romfs.mod' -> `/boot/grub/i386-pc/romfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsacpi.mod' -> `/boot/grub/i386-pc/lsacpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/keystatus.mod' -> `/boot/grub/i386-pc/keystatus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pcidump.mod' -> `/boot/grub/i386-pc/pcidump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/adler32.mod' -> `/boot/grub/i386-pc/adler32.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp_test.mod' -> `/boot/grub/i386-pc/setjmp_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tr.mod' -> `/boot/grub/i386-pc/tr.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfsinfo.mod' -> `/boot/grub/i386-pc/zfsinfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/blocklist.mod' -> `/boot/grub/i386-pc/blocklist.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/iorw.mod' -> `/boot/grub/i386-pc/iorw.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rfc2268.mod' -> `/boot/grub/i386-pc/gcry_rfc2268.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot.mod' -> `/boot/grub/i386-pc/multiboot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_whirlpool.mod' -> `/boot/grub/i386-pc/gcry_whirlpool.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lzopio.mod' -> `/boot/grub/i386-pc/lzopio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gzio.mod' -> `/boot/grub/i386-pc/gzio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/test.mod' -> `/boot/grub/i386-pc/test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_file.mod' -> `/boot/grub/i386-pc/search_fs_file.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2_test.mod' -> `/boot/grub/i386-pc/pbkdf2_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md5.mod' -> `/boot/grub/i386-pc/gcry_md5.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usb.mod' -> `/boot/grub/i386-pc/usb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_plan.mod' -> `/boot/grub/i386-pc/part_plan.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bufio.mod' -> `/boot/grub/i386-pc/bufio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/jfs.mod' -> `/boot/grub/i386-pc/jfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_common.mod' -> `/boot/grub/i386-pc/usbserial_common.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tga.mod' -> `/boot/grub/i386-pc/tga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.mod' -> `/boot/grub/i386-pc/terminal.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfspluscomp.mod' -> `/boot/grub/i386-pc/hfspluscomp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cryptodisk.mod' -> `/boot/grub/i386-pc/cryptodisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/true.mod' -> `/boot/grub/i386-pc/true.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu32.o' -> `/boot/grub/i386-pc/efiemu32.o'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu64.o' -> `/boot/grub/i386-pc/efiemu64.o'.
grub-install: info: copying `/usr/lib/grub/i386-pc/moddep.lst' -> `/boot/grub/i386-pc/moddep.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/command.lst' -> `/boot/grub/i386-pc/command.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/fs.lst' -> `/boot/grub/i386-pc/fs.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/partmap.lst' -> `/boot/grub/i386-pc/partmap.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.lst' -> `/boot/grub/i386-pc/parttool.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video.lst' -> `/boot/grub/i386-pc/video.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.lst' -> `/boot/grub/i386-pc/crypto.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.lst' -> `/boot/grub/i386-pc/terminal.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/modinfo.sh' -> `/boot/grub/i386-pc/modinfo.sh'.
grub-install: info: copying `/usr/share/locale/de_CH/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_CH.mo'.
grub-install: info: copying `/usr/share/locale/l10n/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/l10n.mo'.
grub-install: info: cannot open `/usr/share/locale/l10n/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt_PT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_PT.mo'.
grub-install: info: cannot open `/usr/share/locale/pt_PT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sv.mo'.
grub-install: info: copying `/usr/share/locale/gu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gu.mo'.
grub-install: info: cannot open `/usr/share/locale/gu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/uz at cyrillic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uz at cyrillic.mo'.
grub-install: info: cannot open `/usr/share/locale/uz at cyrillic/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/te/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/te.mo'.
grub-install: info: cannot open `/usr/share/locale/te/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ru_RU/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ru_RU.mo'.
grub-install: info: cannot open `/usr/share/locale/ru_RU/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr.mo'.
grub-install: info: copying `/usr/share/locale/en_US/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_US.mo'.
grub-install: info: cannot open `/usr/share/locale/en_US/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lt.mo'.
grub-install: info: copying `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/xh/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/xh.mo'.
grub-install: info: cannot open `/usr/share/locale/xh/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/af/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/af.mo'.
grub-install: info: cannot open `/usr/share/locale/af/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ta_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ta_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/ta_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tl.mo'.
grub-install: info: cannot open `/usr/share/locale/tl/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hi.mo'.
grub-install: info: cannot open `/usr/share/locale/hi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/eo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eo.mo'.
grub-install: info: copying `/usr/share/locale/ca at valencia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca at valencia.mo'.
grub-install: info: cannot open `/usr/share/locale/ca at valencia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/as/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/as.mo'.
grub-install: info: cannot open `/usr/share/locale/as/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fy.mo'.
grub-install: info: cannot open `/usr/share/locale/fy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tg.mo'.
grub-install: info: cannot open `/usr/share/locale/tg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at shaw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at shaw.mo'.
grub-install: info: cannot open `/usr/share/locale/en at shaw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tt.mo'.
grub-install: info: cannot open `/usr/share/locale/tt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/rw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/rw.mo'.
grub-install: info: cannot open `/usr/share/locale/rw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/br/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/br.mo'.
grub-install: info: cannot open `/usr/share/locale/br/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_CA.mo'.
grub-install: info: cannot open `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/all_languages/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/all_languages.mo'.
grub-install: info: cannot open `/usr/share/locale/all_languages/LC_MESSAGES/grub.mo': Not a directory.
grub-install: info: copying `/usr/share/locale/brx/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/brx.mo'.
grub-install: info: cannot open `/usr/share/locale/brx/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fr.mo'.
grub-install: info: copying `/usr/share/locale/sr at ijekavianlatin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ijekavianlatin.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ijekavianlatin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bg.mo'.
grub-install: info: cannot open `/usr/share/locale/bg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_CN.GB2312/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_CN.GB2312.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_CN.GB2312/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/uz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uz.mo'.
grub-install: info: cannot open `/usr/share/locale/uz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/eu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eu.mo'.
grub-install: info: cannot open `/usr/share/locale/eu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wo.mo'.
grub-install: info: cannot open `/usr/share/locale/wo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ta/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ta.mo'.
grub-install: info: cannot open `/usr/share/locale/ta/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/yo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/yo.mo'.
grub-install: info: cannot open `/usr/share/locale/yo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lv.mo'.
grub-install: info: cannot open `/usr/share/locale/lv/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wal/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wal.mo'.
grub-install: info: cannot open `/usr/share/locale/wal/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lv_LV/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lv_LV.mo'.
grub-install: info: cannot open `/usr/share/locale/lv_LV/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bn_BD/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn_BD.mo'.
grub-install: info: cannot open `/usr/share/locale/bn_BD/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca_ES/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca_ES.mo'.
grub-install: info: cannot open `/usr/share/locale/ca_ES/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/no.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at ijekavian/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ijekavian.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ijekavian/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ky/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ky.mo'.
grub-install: info: cannot open `/usr/share/locale/ky/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/quz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/quz.mo'.
grub-install: info: cannot open `/usr/share/locale/quz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/yi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/yi.mo'.
grub-install: info: cannot open `/usr/share/locale/yi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ja/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ja.mo'.
grub-install: info: copying `/usr/share/locale/sq/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sq.mo'.
grub-install: info: cannot open `/usr/share/locale/sq/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/my/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/my.mo'.
grub-install: info: cannot open `/usr/share/locale/my/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cs.mo'.
grub-install: info: cannot open `/usr/share/locale/cs/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca.mo'.
grub-install: info: copying `/usr/share/locale/mt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mt.mo'.
grub-install: info: cannot open `/usr/share/locale/mt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.mo'.
grub-install: info: cannot open `/usr/share/locale/pt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bo.mo'.
grub-install: info: cannot open `/usr/share/locale/bo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/si/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/si.mo'.
grub-install: info: cannot open `/usr/share/locale/si/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/et/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/et.mo'.
grub-install: info: cannot open `/usr/share/locale/et/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ro/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ro.mo'.
grub-install: info: cannot open `/usr/share/locale/ro/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/or/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/or.mo'.
grub-install: info: cannot open `/usr/share/locale/or/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/currency/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/currency.mo'.
grub-install: info: cannot open `/usr/share/locale/currency/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/th/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/th.mo'.
grub-install: info: cannot open `/usr/share/locale/th/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tig/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tig.mo'.
grub-install: info: cannot open `/usr/share/locale/tig/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/el/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/el.mo'.
grub-install: info: cannot open `/usr/share/locale/el/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/csb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/csb.mo'.
grub-install: info: cannot open `/usr/share/locale/csb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nso/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nso.mo'.
grub-install: info: cannot open `/usr/share/locale/nso/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt_BR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.mo'.
grub-install: info: copying `/usr/share/locale/pl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pl.mo'.
grub-install: info: copying `/usr/share/locale/sr at ije/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ije.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ije/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/li/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/li.mo'.
grub-install: info: cannot open `/usr/share/locale/li/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hy.mo'.
grub-install: info: cannot open `/usr/share/locale/hy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lo.mo'.
grub-install: info: cannot open `/usr/share/locale/lo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/id/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/id.mo'.
grub-install: info: copying `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tet/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tet.mo'.
grub-install: info: cannot open `/usr/share/locale/tet/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_MX/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_MX.mo'.
grub-install: info: cannot open `/usr/share/locale/es_MX/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sk.mo'.
grub-install: info: cannot open `/usr/share/locale/sk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_GB.mo'.
grub-install: info: cannot open `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/et_EE/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/et_EE.mo'.
grub-install: info: cannot open `/usr/share/locale/et_EE/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zu.mo'.
grub-install: info: cannot open `/usr/share/locale/zu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sw.mo'.
grub-install: info: cannot open `/usr/share/locale/sw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_CN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_CN.mo'.
grub-install: info: copying `/usr/share/locale/be/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/be.mo'.
grub-install: info: cannot open `/usr/share/locale/be/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gl.mo'.
grub-install: info: copying `/usr/share/locale/lt_LT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lt_LT.mo'.
grub-install: info: cannot open `/usr/share/locale/lt_LT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ve/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ve.mo'.
grub-install: info: cannot open `/usr/share/locale/ve/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at Latn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at Latn.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at Latn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/crh/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/crh.mo'.
grub-install: info: cannot open `/usr/share/locale/crh/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ks/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ks.mo'.
grub-install: info: cannot open `/usr/share/locale/ks/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gez/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gez.mo'.
grub-install: info: cannot open `/usr/share/locale/gez/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/anp/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/anp.mo'.
grub-install: info: cannot open `/usr/share/locale/anp/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw at uccor/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw at uccor.mo'.
grub-install: info: cannot open `/usr/share/locale/kw at uccor/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/he/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/he.mo'.
grub-install: info: cannot open `/usr/share/locale/he/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_AR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_AR.mo'.
grub-install: info: cannot open `/usr/share/locale/es_AR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hne/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hne.mo'.
grub-install: info: cannot open `/usr/share/locale/hne/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw.mo'.
grub-install: info: cannot open `/usr/share/locale/kw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ilo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ilo.mo'.
grub-install: info: cannot open `/usr/share/locale/ilo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/oc/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/oc.mo'.
grub-install: info: cannot open `/usr/share/locale/oc/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at piglatin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at piglatin.mo'.
grub-install: info: copying `/usr/share/locale/fa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fa.mo'.
grub-install: info: cannot open `/usr/share/locale/fa/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_AU.mo'.
grub-install: info: cannot open `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cy.mo'.
grub-install: info: cannot open `/usr/share/locale/cy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw at kkcor/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw at kkcor.mo'.
grub-install: info: cannot open `/usr/share/locale/kw at kkcor/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mi.mo'.
grub-install: info: cannot open `/usr/share/locale/mi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/dz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/dz.mo'.
grub-install: info: cannot open `/usr/share/locale/dz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sl.mo'.
grub-install: info: copying `/usr/share/locale/vi_VN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/vi_VN.mo'.
grub-install: info: cannot open `/usr/share/locale/vi_VN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nn.mo'.
grub-install: info: cannot open `/usr/share/locale/nn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hu.mo'.
grub-install: info: copying `/usr/share/locale/ti/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ti.mo'.
grub-install: info: cannot open `/usr/share/locale/ti/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ast/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ast.mo'.
grub-install: info: copying `/usr/share/locale/ko/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ko.mo'.
grub-install: info: cannot open `/usr/share/locale/ko/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_TW/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_TW.mo'.
grub-install: info: copying `/usr/share/locale/no/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/no.mo'.
grub-install: info: cannot open `/usr/share/locale/no/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ks_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ks_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/ks_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/so/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/so.mo'.
grub-install: info: cannot open `/usr/share/locale/so/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_AT.mo'.
grub-install: info: cannot open `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn.mo'.
grub-install: info: cannot open `/usr/share/locale/bn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/km/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/km.mo'.
grub-install: info: cannot open `/usr/share/locale/km/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw_GB/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw_GB.mo'.
grub-install: info: cannot open `/usr/share/locale/kw_GB/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ps/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ps.mo'.
grub-install: info: cannot open `/usr/share/locale/ps/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ar/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ar.mo'.
grub-install: info: cannot open `/usr/share/locale/ar/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at cyrillic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at cyrillic.mo'.
grub-install: info: copying `/usr/share/locale/uk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uk.mo'.
grub-install: info: copying `/usr/share/locale/lb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lb.mo'.
grub-install: info: cannot open `/usr/share/locale/lb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_CL/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_CL.mo'.
grub-install: info: cannot open `/usr/share/locale/es_CL/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es.mo'.
grub-install: info: copying `/usr/share/locale/de at hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de at hebrew.mo'.
grub-install: info: copying `/usr/share/locale/aln/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/aln.mo'.
grub-install: info: cannot open `/usr/share/locale/aln/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/locale.alias.mo'.
grub-install: info: cannot open `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo': Not a directory.
grub-install: info: copying `/usr/share/locale/es_ES/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_ES.mo'.
grub-install: info: cannot open `/usr/share/locale/es_ES/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mn.mo'.
grub-install: info: cannot open `/usr/share/locale/mn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nl.mo'.
grub-install: info: copying `/usr/share/locale/fa_IR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fa_IR.mo'.
grub-install: info: cannot open `/usr/share/locale/fa_IR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en.mo'.
grub-install: info: cannot open `/usr/share/locale/en/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tw.mo'.
grub-install: info: cannot open `/usr/share/locale/tw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cgg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cgg.mo'.
grub-install: info: cannot open `/usr/share/locale/cgg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cs_CZ/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cs_CZ.mo'.
grub-install: info: cannot open `/usr/share/locale/cs_CZ/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/it_IT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/it_IT.mo'.
grub-install: info: cannot open `/usr/share/locale/it_IT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nb_NO/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nb_NO.mo'.
grub-install: info: cannot open `/usr/share/locale/nb_NO/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mr.mo'.
grub-install: info: cannot open `/usr/share/locale/mr/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ff/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ff.mo'.
grub-install: info: cannot open `/usr/share/locale/ff/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pa.mo'.
grub-install: info: copying `/usr/share/locale/en at arabic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at arabic.mo'.
grub-install: info: copying `/usr/share/locale/kn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kn.mo'.
grub-install: info: cannot open `/usr/share/locale/kn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca_ES at valencia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca_ES at valencia.mo'.
grub-install: info: cannot open `/usr/share/locale/ca_ES at valencia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kg.mo'.
grub-install: info: cannot open `/usr/share/locale/kg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/szl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/szl.mo'.
grub-install: info: cannot open `/usr/share/locale/szl/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ha/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ha.mo'.
grub-install: info: cannot open `/usr/share/locale/ha/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bal/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bal.mo'.
grub-install: info: cannot open `/usr/share/locale/bal/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tt at iqtelif/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tt at iqtelif.mo'.
grub-install: info: cannot open `/usr/share/locale/tt at iqtelif/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ga/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ga.mo'.
grub-install: info: cannot open `/usr/share/locale/ga/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tr.mo'.
grub-install: info: copying `/usr/share/locale/tk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tk.mo'.
grub-install: info: cannot open `/usr/share/locale/tk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/am/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/am.mo'.
grub-install: info: cannot open `/usr/share/locale/am/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ur/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ur.mo'.
grub-install: info: cannot open `/usr/share/locale/ur/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fur/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fur.mo'.
grub-install: info: cannot open `/usr/share/locale/fur/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wba/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wba.mo'.
grub-install: info: cannot open `/usr/share/locale/wba/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at greek/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at greek.mo'.
grub-install: info: copying `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_HK.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at boldquot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at boldquot.mo'.
grub-install: info: cannot open `/usr/share/locale/en at boldquot/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ru/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ru.mo'.
grub-install: info: copying `/usr/share/locale/rm/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/rm.mo'.
grub-install: info: cannot open `/usr/share/locale/rm/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ku/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ku.mo'.
grub-install: info: cannot open `/usr/share/locale/ku/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ts/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ts.mo'.
grub-install: info: cannot open `/usr/share/locale/ts/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ne/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ne.mo'.
grub-install: info: cannot open `/usr/share/locale/ne/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mg.mo'.
grub-install: info: cannot open `/usr/share/locale/mg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ig/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ig.mo'.
grub-install: info: cannot open `/usr/share/locale/ig/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/is/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/is.mo'.
grub-install: info: cannot open `/usr/share/locale/is/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/io/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/io.mo'.
grub-install: info: cannot open `/usr/share/locale/io/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hr.mo'.
grub-install: info: cannot open `/usr/share/locale/hr/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kk.mo'.
grub-install: info: cannot open `/usr/share/locale/kk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/la/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/la.mo'.
grub-install: info: cannot open `/usr/share/locale/la/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_NZ/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_NZ.mo'.
grub-install: info: cannot open `/usr/share/locale/en_NZ/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/se/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/se.mo'.
grub-install: info: cannot open `/usr/share/locale/se/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bs.mo'.
grub-install: info: cannot open `/usr/share/locale/bs/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ml/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ml.mo'.
grub-install: info: cannot open `/usr/share/locale/ml/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/az_IR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/az_IR.mo'.
grub-install: info: cannot open `/usr/share/locale/az_IR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/vi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/vi.mo'.
grub-install: info: copying `/usr/share/locale/it/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/it.mo'.
grub-install: info: copying `/usr/share/locale/lg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lg.mo'.
grub-install: info: cannot open `/usr/share/locale/lg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mai/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mai.mo'.
grub-install: info: cannot open `/usr/share/locale/mai/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ia.mo'.
grub-install: info: cannot open `/usr/share/locale/ia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bg_BG/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bg_BG.mo'.
grub-install: info: cannot open `/usr/share/locale/bg_BG/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kok/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kok.mo'.
grub-install: info: cannot open `/usr/share/locale/kok/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nb.mo'.
grub-install: info: copying `/usr/share/locale/an/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/an.mo'.
grub-install: info: cannot open `/usr/share/locale/an/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/id_ID/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/id_ID.mo'.
grub-install: info: cannot open `/usr/share/locale/id_ID/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at quot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at quot.mo'.
grub-install: info: copying `/usr/share/locale/byn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/byn.mo'.
grub-install: info: cannot open `/usr/share/locale/byn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gd/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gd.mo'.
grub-install: info: cannot open `/usr/share/locale/gd/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ug/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ug.mo'.
grub-install: info: cannot open `/usr/share/locale/ug/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/da/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/da.mo'.
grub-install: info: copying `/usr/share/locale/ckb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ckb.mo'.
grub-install: info: cannot open `/usr/share/locale/ckb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fr_CA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fr_CA.mo'.
grub-install: info: cannot open `/usr/share/locale/fr_CA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fo.mo'.
grub-install: info: cannot open `/usr/share/locale/fo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_TW.Big5/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_TW.Big5.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_TW.Big5/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fi.mo'.
grub-install: info: copying `/usr/share/locale/uk_UA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uk_UA.mo'.
grub-install: info: cannot open `/usr/share/locale/uk_UA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mk.mo'.
grub-install: info: cannot open `/usr/share/locale/mk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/ca.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nds/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nds.mo'.
grub-install: info: cannot open `/usr/share/locale/nds/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.mo'.
grub-install: info: copying `/usr/share/locale/en at hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at hebrew.mo'.
grub-install: info: copying `/usr/share/locale/haw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/haw.mo'.
grub-install: info: cannot open `/usr/share/locale/haw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ach/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ach.mo'.
grub-install: info: cannot open `/usr/share/locale/ach/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wa.mo'.
grub-install: info: cannot open `/usr/share/locale/wa/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/be at latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/be at latin.mo'.
grub-install: info: cannot open `/usr/share/locale/be at latin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/si_LK/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/si_LK.mo'.
grub-install: info: cannot open `/usr/share/locale/si_LK/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ms/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ms.mo'.
grub-install: info: cannot open `/usr/share/locale/ms/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/co/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/co.mo'.
grub-install: info: cannot open `/usr/share/locale/co/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/az/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/az.mo'.
grub-install: info: cannot open `/usr/share/locale/az/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ang/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ang.mo'.
grub-install: info: cannot open `/usr/share/locale/ang/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at latin.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at latin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hsb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hsb.mo'.
grub-install: info: cannot open `/usr/share/locale/hsb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ka/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ka.mo'.
grub-install: info: cannot open `/usr/share/locale/ka/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/grub/unicode.pf2' -> `/boot/grub/fonts/unicode.pf2'.
grub-install: info: changing current directory to /dev/mapper.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: drive = 2.
grub-install: info: the size of hd10 is 104857600.
grub-install: info: no partition map found for hd10.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: grub-mkimage --directory '/usr/lib/grub/i386-pc' --prefix '/boot/grub' --output '/boot/grub/i386-pc/core.img' --format 'i386-pc' --compression 'auto'  --config '/boot/grub/i386-pc/load.cfg' 'ext2' 'biosdisk' 'search_fs_uuid' 
.
grub-install: info: the size of config file is 0x60.
grub-install: info: the total module size is 0x4234.
grub-install: info: reading /usr/lib/grub/i386-pc/kernel.img.
grub-install: info: locating the section .text at 0x0.
grub-install: info: locating the section .rodata at 0x55d4.
grub-install: info: locating the section .data at 0x65a0.
grub-install: info: locating the section .bss at 0x6d80.
grub-install: info: reading /usr/lib/grub/i386-pc/fshelp.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/ext2.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/biosdisk.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/search_fs_uuid.mod.
grub-install: info: reading /boot/grub/i386-pc/load.cfg.
grub-install: info: kernel_img=0x561162b326e0, kernel_size=0x6d80.
grub-install: info: the core size is 0x5903.
grub-install: info: reading /usr/lib/grub/i386-pc/lzma_decompress.img.
grub-install: info: reading /usr/lib/grub/i386-pc/diskboot.img.
grub-install: info: writing 0x200 bytes.
grub-install: info: writing 0x6413 bytes.
grub-install: info: copying `/usr/lib/grub/i386-pc/boot.img' -> `/boot/grub/i386-pc/boot.img'.
grub-install: info: grub-bios-setup  --verbose     --directory='/boot/grub/i386-pc' --device-map='/boot/grub/device.map' '/dev/sdb'.
grub-install: info: reading /boot/grub/i386-pc/boot.img.
grub-install: info: reading /boot/grub/i386-pc/core.img.
grub-install: info: root is `(null)', dest is `hd17'.
grub-install: info: Opening dest.
grub-install: info: drive = 4.
grub-install: info: the size of hd17 is 976773168.
grub-install: info: changing current directory to /dev/mapper.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: drive = 2.
grub-install: info: the size of hd10 is 104857600.
grub-install: info: guessed root_dev `hd10' from dir `/boot/grub/i386-pc'.
grub-install: info: setting the root device to `hd10'.
grub-install: info: saving <1,0,512>.
grub-install: info: saving <2,0,512>.
grub-install: info: saving <3,0,512>.
grub-install: info: saving <4,0,512>.
grub-install: info: saving <5,0,512>.
grub-install: info: saving <6,0,512>.
grub-install: info: saving <7,0,512>.
grub-install: info: saving <8,0,512>.
grub-install: info: saving <9,0,512>.
grub-install: info: saving <10,0,512>.
grub-install: info: saving <11,0,512>.
grub-install: info: saving <12,0,512>.
grub-install: info: saving <13,0,512>.
grub-install: info: saving <14,0,512>.
grub-install: info: saving <15,0,512>.
grub-install: info: saving <16,0,512>.
grub-install: info: saving <17,0,512>.
grub-install: info: saving <18,0,512>.
grub-install: info: saving <19,0,512>.
grub-install: info: saving <20,0,512>.
grub-install: info: saving <21,0,512>.
grub-install: info: saving <22,0,512>.
grub-install: info: saving <23,0,512>.
grub-install: info: saving <24,0,512>.
grub-install: info: saving <25,0,512>.
grub-install: info: saving <26,0,512>.
grub-install: info: saving <27,0,512>.
grub-install: info: saving <28,0,512>.
grub-install: info: saving <29,0,512>.
grub-install: info: saving <30,0,512>.
grub-install: info: saving <31,0,512>.
grub-install: info: saving <32,0,512>.
grub-install: info: saving <33,0,512>.
grub-install: info: saving <34,0,512>.
grub-install: info: saving <35,0,512>.
grub-install: info: saving <36,0,512>.
grub-install: info: saving <37,0,512>.
grub-install: info: saving <38,0,512>.
grub-install: info: saving <39,0,512>.
grub-install: info: saving <40,0,512>.
grub-install: info: saving <41,0,512>.
grub-install: info: saving <42,0,512>.
grub-install: info: saving <43,0,512>.
grub-install: info: saving <44,0,512>.
grub-install: info: saving <45,0,512>.
grub-install: info: saving <46,0,512>.
grub-install: info: saving <47,0,512>.
grub-install: info: saving <48,0,512>.
grub-install: info: saving <49,0,512>.
grub-install: info: saving <50,0,512>.
grub-install: info: saving <51,0,512>.
grub-install: info: saving <52,0,512>.
grub-install: info: saving <53,0,512>.
grub-install: info: saving <54,0,512>.
grub-install: info: saving <55,0,512>.
grub-install: info: saving <56,0,512>.
grub-install: info: saving <57,0,512>.
grub-install: info: saving <58,0,512>.
grub-install: info: saving <59,0,512>.
grub-install: info: saving <60,0,512>.
grub-install: info: saving <61,0,512>.
grub-install: info: saving <62,0,512>.
grub-install: info: saving <63,0,512>.
grub-install: info: saving <64,0,512>.
grub-install: info: saving <65,0,512>.
grub-install: info: saving <66,0,512>.
grub-install: info: saving <67,0,512>.
grub-install: info: saving <68,0,512>.
grub-install: info: saving <69,0,512>.
grub-install: info: saving <70,0,512>.
grub-install: info: saving <71,0,512>.
grub-install: info: saving <72,0,512>.
grub-install: info: saving <73,0,512>.
grub-install: info: saving <74,0,512>.
grub-install: info: saving <75,0,512>.
grub-install: info: saving <76,0,512>.
grub-install: info: saving <77,0,512>.
grub-install: info: saving <78,0,512>.
grub-install: info: saving <79,0,512>.
grub-install: info: saving <80,0,512>.
grub-install: info: saving <81,0,512>.
grub-install: info: saving <82,0,512>.
grub-install: info: saving <83,0,512>.
grub-install: info: saving <84,0,512>.
grub-install: info: saving <85,0,512>.
grub-install: info: saving <86,0,512>.
grub-install: info: saving <87,0,512>.
grub-install: info: saving <88,0,512>.
grub-install: info: saving <89,0,512>.
grub-install: info: saving <90,0,512>.
grub-install: info: saving <91,0,512>.
grub-install: info: saving <92,0,512>.
grub-install: info: saving <93,0,512>.
grub-install: info: saving <94,0,512>.
grub-install: info: saving <95,0,512>.
grub-install: info: saving <96,0,512>.
grub-install: info: saving <97,0,512>.
grub-install: info: saving <98,0,512>.
grub-install: info: saving <99,0,512>.
grub-install: info: saving <100,0,512>.
grub-install: info: saving <101,0,512>.
grub-install: info: saving <102,0,512>.
grub-install: info: saving <103,0,512>.
grub-install: info: saving <104,0,512>.
Installation finished. No error reported.
-------------- next part --------------
$ grub-install --verbose --modules 'part_gpt part_msdos mdraid1x raid5rec lvm' /dev/sdb
grub-install: info: executing modprobe efivars 2>/dev/null.
grub-install: info: Looking for /sys/firmware/efi ...
grub-install: info: ... not found. Looking for /proc/device-tree ...
grub-install: info: ... not found.
Installing for i386-pc platform.
grub-install: info: adding `hd0' -> `/dev/dm-0' from device.map.
grub-install: info: adding `hd4' -> `/dev/dm-12' from device.map.
grub-install: info: adding `hd10' -> `/dev/dm-16' from device.map.
grub-install: info: adding `hd16' -> `/dev/sda' from device.map.
grub-install: info: adding `hd17' -> `/dev/sdb' from device.map.
grub-install: info: adding `hd18' -> `/dev/sdc' from device.map.
grub-install: info: copying `/usr/lib/grub/i386-pc/fshelp.mod' -> `/boot/grub/i386-pc/fshelp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/memrw.mod' -> `/boot/grub/i386-pc/memrw.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_twofish.mod' -> `/boot/grub/i386-pc/gcry_twofish.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_ftdi.mod' -> `/boot/grub/i386-pc/usbserial_ftdi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lspci.mod' -> `/boot/grub/i386-pc/lspci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/udf.mod' -> `/boot/grub/i386-pc/udf.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/elf.mod' -> `/boot/grub/i386-pc/elf.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminfo.mod' -> `/boot/grub/i386-pc/terminfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gptsync.mod' -> `/boot/grub/i386-pc/gptsync.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_label.mod' -> `/boot/grub/i386-pc/search_label.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setpci.mod' -> `/boot/grub/i386-pc/setpci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video.mod' -> `/boot/grub/i386-pc/video.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/all_video.mod' -> `/boot/grub/i386-pc/all_video.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/exfctest.mod' -> `/boot/grub/i386-pc/exfctest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid_test.mod' -> `/boot/grub/i386-pc/xnu_uuid_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfs.mod' -> `/boot/grub/i386-pc/zfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xzio.mod' -> `/boot/grub/i386-pc/xzio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/msdospart.mod' -> `/boot/grub/i386-pc/msdospart.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxmenu.mod' -> `/boot/grub/i386-pc/gfxmenu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pci.mod' -> `/boot/grub/i386-pc/pci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/file.mod' -> `/boot/grub/i386-pc/file.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/regexp.mod' -> `/boot/grub/i386-pc/regexp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/png.mod' -> `/boot/grub/i386-pc/png.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tar.mod' -> `/boot/grub/i386-pc/tar.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap.mod' -> `/boot/grub/i386-pc/bitmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/datehook.mod' -> `/boot/grub/i386-pc/datehook.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09.mod' -> `/boot/grub/i386-pc/mdraid09.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/random.mod' -> `/boot/grub/i386-pc/random.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/test_blockarg.mod' -> `/boot/grub/i386-pc/test_blockarg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ohci.mod' -> `/boot/grub/i386-pc/ohci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix.mod' -> `/boot/grub/i386-pc/minix.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_bochs.mod' -> `/boot/grub/i386-pc/video_bochs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs2.mod' -> `/boot/grub/i386-pc/ufs2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/biosdisk.mod' -> `/boot/grub/i386-pc/biosdisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usb_keyboard.mod' -> `/boot/grub/i386-pc/usb_keyboard.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/password.mod' -> `/boot/grub/i386-pc/password.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha1.mod' -> `/boot/grub/i386-pc/gcry_sha1.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bsd.mod' -> `/boot/grub/i386-pc/bsd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/macho.mod' -> `/boot/grub/i386-pc/macho.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/exfat.mod' -> `/boot/grub/i386-pc/exfat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/nilfs2.mod' -> `/boot/grub/i386-pc/nilfs2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/afs.mod' -> `/boot/grub/i386-pc/afs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu.mod' -> `/boot/grub/i386-pc/efiemu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/915resolution.mod' -> `/boot/grub/i386-pc/915resolution.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1_be.mod' -> `/boot/grub/i386-pc/ufs1_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cs5536.mod' -> `/boot/grub/i386-pc/cs5536.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp.mod' -> `/boot/grub/i386-pc/setjmp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm.mod' -> `/boot/grub/i386-pc/gfxterm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_fb.mod' -> `/boot/grub/i386-pc/video_fb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpio_be.mod' -> `/boot/grub/i386-pc/cpio_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/morse.mod' -> `/boot/grub/i386-pc/morse.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/legacycfg.mod' -> `/boot/grub/i386-pc/legacycfg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/chain.mod' -> `/boot/grub/i386-pc/chain.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/datetime.mod' -> `/boot/grub/i386-pc/datetime.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/reboot.mod' -> `/boot/grub/i386-pc/reboot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid09_be.mod' -> `/boot/grub/i386-pc/mdraid09_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/iso9660.mod' -> `/boot/grub/i386-pc/iso9660.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/extcmd.mod' -> `/boot/grub/i386-pc/extcmd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsapm.mod' -> `/boot/grub/i386-pc/lsapm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rmd160.mod' -> `/boot/grub/i386-pc/gcry_rmd160.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/offsetio.mod' -> `/boot/grub/i386-pc/offsetio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.mod' -> `/boot/grub/i386-pc/crypto.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmosdump.mod' -> `/boot/grub/i386-pc/cmosdump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/functional_test.mod' -> `/boot/grub/i386-pc/functional_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/configfile.mod' -> `/boot/grub/i386-pc/configfile.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_pl2303.mod' -> `/boot/grub/i386-pc/usbserial_pl2303.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_usbdebug.mod' -> `/boot/grub/i386-pc/usbserial_usbdebug.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/http.mod' -> `/boot/grub/i386-pc/http.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/macbless.mod' -> `/boot/grub/i386-pc/macbless.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/procfs.mod' -> `/boot/grub/i386-pc/procfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/signature_test.mod' -> `/boot/grub/i386-pc/signature_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search.mod' -> `/boot/grub/i386-pc/search.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix3.mod' -> `/boot/grub/i386-pc/minix3.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/raid6rec.mod' -> `/boot/grub/i386-pc/raid6rec.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/net.mod' -> `/boot/grub/i386-pc/net.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/halt.mod' -> `/boot/grub/i386-pc/halt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ls.mod' -> `/boot/grub/i386-pc/ls.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mul_test.mod' -> `/boot/grub/i386-pc/mul_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpio.mod' -> `/boot/grub/i386-pc/cpio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/normal.mod' -> `/boot/grub/i386-pc/normal.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_des.mod' -> `/boot/grub/i386-pc/gcry_des.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/progress.mod' -> `/boot/grub/i386-pc/progress.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/spkmodem.mod' -> `/boot/grub/i386-pc/spkmodem.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmp_test.mod' -> `/boot/grub/i386-pc/cmp_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/serial.mod' -> `/boot/grub/i386-pc/serial.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/memdisk.mod' -> `/boot/grub/i386-pc/memdisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfs.mod' -> `/boot/grub/i386-pc/hfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbms.mod' -> `/boot/grub/i386-pc/usbms.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vga_text.mod' -> `/boot/grub/i386-pc/vga_text.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/luks.mod' -> `/boot/grub/i386-pc/luks.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_colors.mod' -> `/boot/grub/i386-pc/video_colors.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfscrypt.mod' -> `/boot/grub/i386-pc/zfscrypt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video_cirrus.mod' -> `/boot/grub/i386-pc/video_cirrus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sendkey.mod' -> `/boot/grub/i386-pc/sendkey.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cpuid.mod' -> `/boot/grub/i386-pc/cpuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_dvh.mod' -> `/boot/grub/i386-pc/part_dvh.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pxechain.mod' -> `/boot/grub/i386-pc/pxechain.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_seed.mod' -> `/boot/grub/i386-pc/gcry_seed.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/linux16.mod' -> `/boot/grub/i386-pc/linux16.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hashsum.mod' -> `/boot/grub/i386-pc/hashsum.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mda_text.mod' -> `/boot/grub/i386-pc/mda_text.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/div.mod' -> `/boot/grub/i386-pc/div.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/geli.mod' -> `/boot/grub/i386-pc/geli.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hwmatch.mod' -> `/boot/grub/i386-pc/hwmatch.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/testload.mod' -> `/boot/grub/i386-pc/testload.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mpi.mod' -> `/boot/grub/i386-pc/mpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.mod' -> `/boot/grub/i386-pc/parttool.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmp.mod' -> `/boot/grub/i386-pc/cmp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/play.mod' -> `/boot/grub/i386-pc/play.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_menu.mod' -> `/boot/grub/i386-pc/gfxterm_menu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbfs.mod' -> `/boot/grub/i386-pc/cbfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/shift_test.mod' -> `/boot/grub/i386-pc/shift_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_arcfour.mod' -> `/boot/grub/i386-pc/gcry_arcfour.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix_be.mod' -> `/boot/grub/i386-pc/minix_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/time.mod' -> `/boot/grub/i386-pc/time.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/fat.mod' -> `/boot/grub/i386-pc/fat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ufs1.mod' -> `/boot/grub/i386-pc/ufs1.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbmemc.mod' -> `/boot/grub/i386-pc/cbmemc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbtable.mod' -> `/boot/grub/i386-pc/cbtable.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/drivemap.mod' -> `/boot/grub/i386-pc/drivemap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/diskfilter.mod' -> `/boot/grub/i386-pc/diskfilter.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rsa.mod' -> `/boot/grub/i386-pc/gcry_rsa.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntfscomp.mod' -> `/boot/grub/i386-pc/ntfscomp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/verify.mod' -> `/boot/grub/i386-pc/verify.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/keylayouts.mod' -> `/boot/grub/i386-pc/keylayouts.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_crc.mod' -> `/boot/grub/i386-pc/gcry_crc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mmap.mod' -> `/boot/grub/i386-pc/mmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_amiga.mod' -> `/boot/grub/i386-pc/part_amiga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cat.mod' -> `/boot/grub/i386-pc/cat.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_acorn.mod' -> `/boot/grub/i386-pc/part_acorn.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/legacy_password_test.mod' -> `/boot/grub/i386-pc/legacy_password_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu.mod' -> `/boot/grub/i386-pc/xnu.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_sunpc.mod' -> `/boot/grub/i386-pc/part_sunpc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/newc.mod' -> `/boot/grub/i386-pc/newc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_idea.mod' -> `/boot/grub/i386-pc/gcry_idea.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/btrfs.mod' -> `/boot/grub/i386-pc/btrfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gettext.mod' -> `/boot/grub/i386-pc/gettext.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pata.mod' -> `/boot/grub/i386-pc/pata.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_dsa.mod' -> `/boot/grub/i386-pc/gcry_dsa.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix2_be.mod' -> `/boot/grub/i386-pc/minix2_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/at_keyboard.mod' -> `/boot/grub/i386-pc/at_keyboard.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_dfly.mod' -> `/boot/grub/i386-pc/part_dfly.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vga.mod' -> `/boot/grub/i386-pc/vga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/testspeed.mod' -> `/boot/grub/i386-pc/testspeed.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gdb.mod' -> `/boot/grub/i386-pc/gdb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/help.mod' -> `/boot/grub/i386-pc/help.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md4.mod' -> `/boot/grub/i386-pc/gcry_md4.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/trig.mod' -> `/boot/grub/i386-pc/trig.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/div_test.mod' -> `/boot/grub/i386-pc/div_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot2.mod' -> `/boot/grub/i386-pc/multiboot2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbtime.mod' -> `/boot/grub/i386-pc/cbtime.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hdparm.mod' -> `/boot/grub/i386-pc/hdparm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/dm_nv.mod' -> `/boot/grub/i386-pc/dm_nv.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_msdos.mod' -> `/boot/grub/i386-pc/part_msdos.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/raid5rec.mod' -> `/boot/grub/i386-pc/raid5rec.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hello.mod' -> `/boot/grub/i386-pc/hello.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/uhci.mod' -> `/boot/grub/i386-pc/uhci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/password_pbkdf2.mod' -> `/boot/grub/i386-pc/password_pbkdf2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/truecrypt.mod' -> `/boot/grub/i386-pc/truecrypt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xfs.mod' -> `/boot/grub/i386-pc/xfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_camellia.mod' -> `/boot/grub/i386-pc/gcry_camellia.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videotest.mod' -> `/boot/grub/i386-pc/videotest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bitmap_scale.mod' -> `/boot/grub/i386-pc/bitmap_scale.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bswap_test.mod' -> `/boot/grub/i386-pc/bswap_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_tiger.mod' -> `/boot/grub/i386-pc/gcry_tiger.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sleep_test.mod' -> `/boot/grub/i386-pc/sleep_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ctz_test.mod' -> `/boot/grub/i386-pc/ctz_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbtest.mod' -> `/boot/grub/i386-pc/usbtest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/boot.mod' -> `/boot/grub/i386-pc/boot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmdline_cat_test.mod' -> `/boot/grub/i386-pc/cmdline_cat_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videotest_checksum.mod' -> `/boot/grub/i386-pc/videotest_checksum.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tftp.mod' -> `/boot/grub/i386-pc/tftp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lvm.mod' -> `/boot/grub/i386-pc/lvm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/nativedisk.mod' -> `/boot/grub/i386-pc/nativedisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha512.mod' -> `/boot/grub/i386-pc/gcry_sha512.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_bsd.mod' -> `/boot/grub/i386-pc/part_bsd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pxe.mod' -> `/boot/grub/i386-pc/pxe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/xnu_uuid.mod' -> `/boot/grub/i386-pc/xnu_uuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/relocator.mod' -> `/boot/grub/i386-pc/relocator.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/scsi.mod' -> `/boot/grub/i386-pc/scsi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/probe.mod' -> `/boot/grub/i386-pc/probe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ehci.mod' -> `/boot/grub/i386-pc/ehci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix2.mod' -> `/boot/grub/i386-pc/minix2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/disk.mod' -> `/boot/grub/i386-pc/disk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_apple.mod' -> `/boot/grub/i386-pc/part_apple.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/jpeg.mod' -> `/boot/grub/i386-pc/jpeg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntfs.mod' -> `/boot/grub/i386-pc/ntfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sleep.mod' -> `/boot/grub/i386-pc/sleep.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/sfs.mod' -> `/boot/grub/i386-pc/sfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bfs.mod' -> `/boot/grub/i386-pc/bfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ntldr.mod' -> `/boot/grub/i386-pc/ntldr.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/videoinfo.mod' -> `/boot/grub/i386-pc/videoinfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gfxterm_background.mod' -> `/boot/grub/i386-pc/gfxterm_background.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_sun.mod' -> `/boot/grub/i386-pc/part_sun.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ata.mod' -> `/boot/grub/i386-pc/ata.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/aout.mod' -> `/boot/grub/i386-pc/aout.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_blowfish.mod' -> `/boot/grub/i386-pc/gcry_blowfish.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_serpent.mod' -> `/boot/grub/i386-pc/gcry_serpent.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/eval.mod' -> `/boot/grub/i386-pc/eval.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ahci.mod' -> `/boot/grub/i386-pc/ahci.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/mdraid1x.mod' -> `/boot/grub/i386-pc/mdraid1x.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/loopback.mod' -> `/boot/grub/i386-pc/loopback.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minicmd.mod' -> `/boot/grub/i386-pc/minicmd.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/priority_queue.mod' -> `/boot/grub/i386-pc/priority_queue.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/freedos.mod' -> `/boot/grub/i386-pc/freedos.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/squash4.mod' -> `/boot/grub/i386-pc/squash4.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/syslinuxcfg.mod' -> `/boot/grub/i386-pc/syslinuxcfg.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ext2.mod' -> `/boot/grub/i386-pc/ext2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/plan9.mod' -> `/boot/grub/i386-pc/plan9.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/backtrace.mod' -> `/boot/grub/i386-pc/backtrace.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_uuid.mod' -> `/boot/grub/i386-pc/search_fs_uuid.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_sha256.mod' -> `/boot/grub/i386-pc/gcry_sha256.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cbls.mod' -> `/boot/grub/i386-pc/cbls.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/loadenv.mod' -> `/boot/grub/i386-pc/loadenv.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/font.mod' -> `/boot/grub/i386-pc/font.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/odc.mod' -> `/boot/grub/i386-pc/odc.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/ldm.mod' -> `/boot/grub/i386-pc/ldm.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_gpt.mod' -> `/boot/grub/i386-pc/part_gpt.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfsplus.mod' -> `/boot/grub/i386-pc/hfsplus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rijndael.mod' -> `/boot/grub/i386-pc/gcry_rijndael.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/archelp.mod' -> `/boot/grub/i386-pc/archelp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/reiserfs.mod' -> `/boot/grub/i386-pc/reiserfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/affs.mod' -> `/boot/grub/i386-pc/affs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/linux.mod' -> `/boot/grub/i386-pc/linux.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2.mod' -> `/boot/grub/i386-pc/pbkdf2.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/echo.mod' -> `/boot/grub/i386-pc/echo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/date.mod' -> `/boot/grub/i386-pc/date.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/minix3_be.mod' -> `/boot/grub/i386-pc/minix3_be.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/read.mod' -> `/boot/grub/i386-pc/read.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cmostest.mod' -> `/boot/grub/i386-pc/cmostest.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crc64.mod' -> `/boot/grub/i386-pc/crc64.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hexdump.mod' -> `/boot/grub/i386-pc/hexdump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsmmap.mod' -> `/boot/grub/i386-pc/lsmmap.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/acpi.mod' -> `/boot/grub/i386-pc/acpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/vbe.mod' -> `/boot/grub/i386-pc/vbe.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_cast5.mod' -> `/boot/grub/i386-pc/gcry_cast5.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/romfs.mod' -> `/boot/grub/i386-pc/romfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lsacpi.mod' -> `/boot/grub/i386-pc/lsacpi.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/keystatus.mod' -> `/boot/grub/i386-pc/keystatus.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pcidump.mod' -> `/boot/grub/i386-pc/pcidump.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/adler32.mod' -> `/boot/grub/i386-pc/adler32.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/setjmp_test.mod' -> `/boot/grub/i386-pc/setjmp_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tr.mod' -> `/boot/grub/i386-pc/tr.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/zfsinfo.mod' -> `/boot/grub/i386-pc/zfsinfo.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/blocklist.mod' -> `/boot/grub/i386-pc/blocklist.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/iorw.mod' -> `/boot/grub/i386-pc/iorw.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_rfc2268.mod' -> `/boot/grub/i386-pc/gcry_rfc2268.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/multiboot.mod' -> `/boot/grub/i386-pc/multiboot.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_whirlpool.mod' -> `/boot/grub/i386-pc/gcry_whirlpool.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/lzopio.mod' -> `/boot/grub/i386-pc/lzopio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gzio.mod' -> `/boot/grub/i386-pc/gzio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/test.mod' -> `/boot/grub/i386-pc/test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/search_fs_file.mod' -> `/boot/grub/i386-pc/search_fs_file.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/pbkdf2_test.mod' -> `/boot/grub/i386-pc/pbkdf2_test.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/gcry_md5.mod' -> `/boot/grub/i386-pc/gcry_md5.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usb.mod' -> `/boot/grub/i386-pc/usb.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/part_plan.mod' -> `/boot/grub/i386-pc/part_plan.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/bufio.mod' -> `/boot/grub/i386-pc/bufio.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/jfs.mod' -> `/boot/grub/i386-pc/jfs.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/usbserial_common.mod' -> `/boot/grub/i386-pc/usbserial_common.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/tga.mod' -> `/boot/grub/i386-pc/tga.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.mod' -> `/boot/grub/i386-pc/terminal.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/hfspluscomp.mod' -> `/boot/grub/i386-pc/hfspluscomp.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/cryptodisk.mod' -> `/boot/grub/i386-pc/cryptodisk.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/true.mod' -> `/boot/grub/i386-pc/true.mod'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu32.o' -> `/boot/grub/i386-pc/efiemu32.o'.
grub-install: info: copying `/usr/lib/grub/i386-pc/efiemu64.o' -> `/boot/grub/i386-pc/efiemu64.o'.
grub-install: info: copying `/usr/lib/grub/i386-pc/moddep.lst' -> `/boot/grub/i386-pc/moddep.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/command.lst' -> `/boot/grub/i386-pc/command.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/fs.lst' -> `/boot/grub/i386-pc/fs.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/partmap.lst' -> `/boot/grub/i386-pc/partmap.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/parttool.lst' -> `/boot/grub/i386-pc/parttool.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/video.lst' -> `/boot/grub/i386-pc/video.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/crypto.lst' -> `/boot/grub/i386-pc/crypto.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/terminal.lst' -> `/boot/grub/i386-pc/terminal.lst'.
grub-install: info: copying `/usr/lib/grub/i386-pc/modinfo.sh' -> `/boot/grub/i386-pc/modinfo.sh'.
grub-install: info: copying `/usr/share/locale/de_CH/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_CH.mo'.
grub-install: info: copying `/usr/share/locale/l10n/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/l10n.mo'.
grub-install: info: cannot open `/usr/share/locale/l10n/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt_PT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_PT.mo'.
grub-install: info: cannot open `/usr/share/locale/pt_PT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sv.mo'.
grub-install: info: copying `/usr/share/locale/gu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gu.mo'.
grub-install: info: cannot open `/usr/share/locale/gu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/uz at cyrillic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uz at cyrillic.mo'.
grub-install: info: cannot open `/usr/share/locale/uz at cyrillic/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/te/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/te.mo'.
grub-install: info: cannot open `/usr/share/locale/te/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ru_RU/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ru_RU.mo'.
grub-install: info: cannot open `/usr/share/locale/ru_RU/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr.mo'.
grub-install: info: copying `/usr/share/locale/en_US/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_US.mo'.
grub-install: info: cannot open `/usr/share/locale/en_US/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lt.mo'.
grub-install: info: copying `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/bn_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/xh/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/xh.mo'.
grub-install: info: cannot open `/usr/share/locale/xh/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/af/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/af.mo'.
grub-install: info: cannot open `/usr/share/locale/af/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ta_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ta_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/ta_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tl.mo'.
grub-install: info: cannot open `/usr/share/locale/tl/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hi.mo'.
grub-install: info: cannot open `/usr/share/locale/hi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/eo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eo.mo'.
grub-install: info: copying `/usr/share/locale/ca at valencia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca at valencia.mo'.
grub-install: info: cannot open `/usr/share/locale/ca at valencia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/as/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/as.mo'.
grub-install: info: cannot open `/usr/share/locale/as/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fy.mo'.
grub-install: info: cannot open `/usr/share/locale/fy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tg.mo'.
grub-install: info: cannot open `/usr/share/locale/tg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at shaw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at shaw.mo'.
grub-install: info: cannot open `/usr/share/locale/en at shaw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tt.mo'.
grub-install: info: cannot open `/usr/share/locale/tt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/rw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/rw.mo'.
grub-install: info: cannot open `/usr/share/locale/rw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/br/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/br.mo'.
grub-install: info: cannot open `/usr/share/locale/br/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_CA.mo'.
grub-install: info: cannot open `/usr/share/locale/en_CA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/all_languages/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/all_languages.mo'.
grub-install: info: cannot open `/usr/share/locale/all_languages/LC_MESSAGES/grub.mo': Not a directory.
grub-install: info: copying `/usr/share/locale/brx/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/brx.mo'.
grub-install: info: cannot open `/usr/share/locale/brx/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fr.mo'.
grub-install: info: copying `/usr/share/locale/sr at ijekavianlatin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ijekavianlatin.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ijekavianlatin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bg.mo'.
grub-install: info: cannot open `/usr/share/locale/bg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_CN.GB2312/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_CN.GB2312.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_CN.GB2312/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/uz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uz.mo'.
grub-install: info: cannot open `/usr/share/locale/uz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/eu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/eu.mo'.
grub-install: info: cannot open `/usr/share/locale/eu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wo.mo'.
grub-install: info: cannot open `/usr/share/locale/wo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ta/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ta.mo'.
grub-install: info: cannot open `/usr/share/locale/ta/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/yo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/yo.mo'.
grub-install: info: cannot open `/usr/share/locale/yo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lv/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lv.mo'.
grub-install: info: cannot open `/usr/share/locale/lv/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wal/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wal.mo'.
grub-install: info: cannot open `/usr/share/locale/wal/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lv_LV/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lv_LV.mo'.
grub-install: info: cannot open `/usr/share/locale/lv_LV/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bn_BD/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn_BD.mo'.
grub-install: info: cannot open `/usr/share/locale/bn_BD/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca_ES/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca_ES.mo'.
grub-install: info: cannot open `/usr/share/locale/ca_ES/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/no.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/no.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at ijekavian/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ijekavian.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ijekavian/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ky/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ky.mo'.
grub-install: info: cannot open `/usr/share/locale/ky/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/quz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/quz.mo'.
grub-install: info: cannot open `/usr/share/locale/quz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/yi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/yi.mo'.
grub-install: info: cannot open `/usr/share/locale/yi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ja/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ja.mo'.
grub-install: info: copying `/usr/share/locale/sq/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sq.mo'.
grub-install: info: cannot open `/usr/share/locale/sq/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/my/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/my.mo'.
grub-install: info: cannot open `/usr/share/locale/my/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cs.mo'.
grub-install: info: cannot open `/usr/share/locale/cs/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca.mo'.
grub-install: info: copying `/usr/share/locale/mt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mt.mo'.
grub-install: info: cannot open `/usr/share/locale/mt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.mo'.
grub-install: info: cannot open `/usr/share/locale/pt/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bo.mo'.
grub-install: info: cannot open `/usr/share/locale/bo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/si/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/si.mo'.
grub-install: info: cannot open `/usr/share/locale/si/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/et/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/et.mo'.
grub-install: info: cannot open `/usr/share/locale/et/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ro/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ro.mo'.
grub-install: info: cannot open `/usr/share/locale/ro/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/or/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/or.mo'.
grub-install: info: cannot open `/usr/share/locale/or/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/currency/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/currency.mo'.
grub-install: info: cannot open `/usr/share/locale/currency/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/th/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/th.mo'.
grub-install: info: cannot open `/usr/share/locale/th/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tig/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tig.mo'.
grub-install: info: cannot open `/usr/share/locale/tig/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/el/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/el.mo'.
grub-install: info: cannot open `/usr/share/locale/el/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/csb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/csb.mo'.
grub-install: info: cannot open `/usr/share/locale/csb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nso/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nso.mo'.
grub-install: info: cannot open `/usr/share/locale/nso/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/pt.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pt_BR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.mo'.
grub-install: info: copying `/usr/share/locale/pl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pl.mo'.
grub-install: info: copying `/usr/share/locale/sr at ije/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at ije.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at ije/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/li/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/li.mo'.
grub-install: info: cannot open `/usr/share/locale/li/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hy.mo'.
grub-install: info: cannot open `/usr/share/locale/hy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/lo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lo.mo'.
grub-install: info: cannot open `/usr/share/locale/lo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/id/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/id.mo'.
grub-install: info: copying `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pt_BR.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/pt_BR.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tet/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tet.mo'.
grub-install: info: cannot open `/usr/share/locale/tet/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_MX/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_MX.mo'.
grub-install: info: cannot open `/usr/share/locale/es_MX/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sk.mo'.
grub-install: info: cannot open `/usr/share/locale/sk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_GB.mo'.
grub-install: info: cannot open `/usr/share/locale/en_GB/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/et_EE/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/et_EE.mo'.
grub-install: info: cannot open `/usr/share/locale/et_EE/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zu.mo'.
grub-install: info: cannot open `/usr/share/locale/zu/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sw.mo'.
grub-install: info: cannot open `/usr/share/locale/sw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_CN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_CN.mo'.
grub-install: info: copying `/usr/share/locale/be/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/be.mo'.
grub-install: info: cannot open `/usr/share/locale/be/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gl.mo'.
grub-install: info: copying `/usr/share/locale/lt_LT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lt_LT.mo'.
grub-install: info: cannot open `/usr/share/locale/lt_LT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ve/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ve.mo'.
grub-install: info: cannot open `/usr/share/locale/ve/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at Latn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at Latn.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at Latn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/crh/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/crh.mo'.
grub-install: info: cannot open `/usr/share/locale/crh/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ks/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ks.mo'.
grub-install: info: cannot open `/usr/share/locale/ks/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gez/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gez.mo'.
grub-install: info: cannot open `/usr/share/locale/gez/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/anp/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/anp.mo'.
grub-install: info: cannot open `/usr/share/locale/anp/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw at uccor/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw at uccor.mo'.
grub-install: info: cannot open `/usr/share/locale/kw at uccor/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/he/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/he.mo'.
grub-install: info: cannot open `/usr/share/locale/he/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_AR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_AR.mo'.
grub-install: info: cannot open `/usr/share/locale/es_AR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hne/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hne.mo'.
grub-install: info: cannot open `/usr/share/locale/hne/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw.mo'.
grub-install: info: cannot open `/usr/share/locale/kw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ilo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ilo.mo'.
grub-install: info: cannot open `/usr/share/locale/ilo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/oc/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/oc.mo'.
grub-install: info: cannot open `/usr/share/locale/oc/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at piglatin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at piglatin.mo'.
grub-install: info: copying `/usr/share/locale/fa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fa.mo'.
grub-install: info: cannot open `/usr/share/locale/fa/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_AU.mo'.
grub-install: info: cannot open `/usr/share/locale/en_AU/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cy/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cy.mo'.
grub-install: info: cannot open `/usr/share/locale/cy/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/de.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw at kkcor/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw at kkcor.mo'.
grub-install: info: cannot open `/usr/share/locale/kw at kkcor/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mi.mo'.
grub-install: info: cannot open `/usr/share/locale/mi/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/dz/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/dz.mo'.
grub-install: info: cannot open `/usr/share/locale/dz/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sl.mo'.
grub-install: info: copying `/usr/share/locale/vi_VN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/vi_VN.mo'.
grub-install: info: cannot open `/usr/share/locale/vi_VN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nn.mo'.
grub-install: info: cannot open `/usr/share/locale/nn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hu/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hu.mo'.
grub-install: info: copying `/usr/share/locale/ti/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ti.mo'.
grub-install: info: cannot open `/usr/share/locale/ti/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ast/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ast.mo'.
grub-install: info: copying `/usr/share/locale/ko/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ko.mo'.
grub-install: info: cannot open `/usr/share/locale/ko/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_TW/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_TW.mo'.
grub-install: info: copying `/usr/share/locale/no/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/no.mo'.
grub-install: info: cannot open `/usr/share/locale/no/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ks_IN/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ks_IN.mo'.
grub-install: info: cannot open `/usr/share/locale/ks_IN/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/so/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/so.mo'.
grub-install: info: cannot open `/usr/share/locale/so/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de_AT.mo'.
grub-install: info: cannot open `/usr/share/locale/de_AT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bn.mo'.
grub-install: info: cannot open `/usr/share/locale/bn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/km/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/km.mo'.
grub-install: info: cannot open `/usr/share/locale/km/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kw_GB/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kw_GB.mo'.
grub-install: info: cannot open `/usr/share/locale/kw_GB/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ps/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ps.mo'.
grub-install: info: cannot open `/usr/share/locale/ps/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ar/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ar.mo'.
grub-install: info: cannot open `/usr/share/locale/ar/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at cyrillic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at cyrillic.mo'.
grub-install: info: copying `/usr/share/locale/uk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uk.mo'.
grub-install: info: copying `/usr/share/locale/lb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lb.mo'.
grub-install: info: cannot open `/usr/share/locale/lb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es_CL/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_CL.mo'.
grub-install: info: cannot open `/usr/share/locale/es_CL/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/es/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es.mo'.
grub-install: info: copying `/usr/share/locale/de at hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de at hebrew.mo'.
grub-install: info: copying `/usr/share/locale/aln/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/aln.mo'.
grub-install: info: cannot open `/usr/share/locale/aln/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/locale.alias.mo'.
grub-install: info: cannot open `/usr/share/locale/locale.alias/LC_MESSAGES/grub.mo': Not a directory.
grub-install: info: copying `/usr/share/locale/es_ES/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/es_ES.mo'.
grub-install: info: cannot open `/usr/share/locale/es_ES/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mn.mo'.
grub-install: info: cannot open `/usr/share/locale/mn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nl.mo'.
grub-install: info: copying `/usr/share/locale/fa_IR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fa_IR.mo'.
grub-install: info: cannot open `/usr/share/locale/fa_IR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en.mo'.
grub-install: info: cannot open `/usr/share/locale/en/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tw.mo'.
grub-install: info: cannot open `/usr/share/locale/tw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cgg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cgg.mo'.
grub-install: info: cannot open `/usr/share/locale/cgg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/cs_CZ/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/cs_CZ.mo'.
grub-install: info: cannot open `/usr/share/locale/cs_CZ/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/it_IT/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/it_IT.mo'.
grub-install: info: cannot open `/usr/share/locale/it_IT/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nb_NO/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nb_NO.mo'.
grub-install: info: cannot open `/usr/share/locale/nb_NO/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mr.mo'.
grub-install: info: cannot open `/usr/share/locale/mr/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ff/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ff.mo'.
grub-install: info: cannot open `/usr/share/locale/ff/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/pa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/pa.mo'.
grub-install: info: copying `/usr/share/locale/en at arabic/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at arabic.mo'.
grub-install: info: copying `/usr/share/locale/kn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kn.mo'.
grub-install: info: cannot open `/usr/share/locale/kn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca_ES at valencia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca_ES at valencia.mo'.
grub-install: info: cannot open `/usr/share/locale/ca_ES at valencia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kg.mo'.
grub-install: info: cannot open `/usr/share/locale/kg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/szl/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/szl.mo'.
grub-install: info: cannot open `/usr/share/locale/szl/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ha/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ha.mo'.
grub-install: info: cannot open `/usr/share/locale/ha/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bal/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bal.mo'.
grub-install: info: cannot open `/usr/share/locale/bal/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tt at iqtelif/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tt at iqtelif.mo'.
grub-install: info: cannot open `/usr/share/locale/tt at iqtelif/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ga/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ga.mo'.
grub-install: info: cannot open `/usr/share/locale/ga/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/tr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tr.mo'.
grub-install: info: copying `/usr/share/locale/tk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/tk.mo'.
grub-install: info: cannot open `/usr/share/locale/tk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/am/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/am.mo'.
grub-install: info: cannot open `/usr/share/locale/am/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ur/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ur.mo'.
grub-install: info: cannot open `/usr/share/locale/ur/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fur/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fur.mo'.
grub-install: info: cannot open `/usr/share/locale/fur/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wba/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wba.mo'.
grub-install: info: cannot open `/usr/share/locale/wba/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at greek/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at greek.mo'.
grub-install: info: copying `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_HK.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_HK/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at boldquot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at boldquot.mo'.
grub-install: info: cannot open `/usr/share/locale/en at boldquot/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ru/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ru.mo'.
grub-install: info: copying `/usr/share/locale/rm/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/rm.mo'.
grub-install: info: cannot open `/usr/share/locale/rm/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ku/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ku.mo'.
grub-install: info: cannot open `/usr/share/locale/ku/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ts/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ts.mo'.
grub-install: info: cannot open `/usr/share/locale/ts/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ne/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ne.mo'.
grub-install: info: cannot open `/usr/share/locale/ne/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mg.mo'.
grub-install: info: cannot open `/usr/share/locale/mg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ig/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ig.mo'.
grub-install: info: cannot open `/usr/share/locale/ig/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/is/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/is.mo'.
grub-install: info: cannot open `/usr/share/locale/is/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/io/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/io.mo'.
grub-install: info: cannot open `/usr/share/locale/io/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hr/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hr.mo'.
grub-install: info: cannot open `/usr/share/locale/hr/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kk.mo'.
grub-install: info: cannot open `/usr/share/locale/kk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/la/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/la.mo'.
grub-install: info: cannot open `/usr/share/locale/la/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en_NZ/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en_NZ.mo'.
grub-install: info: cannot open `/usr/share/locale/en_NZ/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/se/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/se.mo'.
grub-install: info: cannot open `/usr/share/locale/se/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bs/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bs.mo'.
grub-install: info: cannot open `/usr/share/locale/bs/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ml/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ml.mo'.
grub-install: info: cannot open `/usr/share/locale/ml/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/az_IR/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/az_IR.mo'.
grub-install: info: cannot open `/usr/share/locale/az_IR/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/vi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/vi.mo'.
grub-install: info: copying `/usr/share/locale/it/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/it.mo'.
grub-install: info: copying `/usr/share/locale/lg/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/lg.mo'.
grub-install: info: cannot open `/usr/share/locale/lg/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mai/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mai.mo'.
grub-install: info: cannot open `/usr/share/locale/mai/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ia/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ia.mo'.
grub-install: info: cannot open `/usr/share/locale/ia/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/bg_BG/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/bg_BG.mo'.
grub-install: info: cannot open `/usr/share/locale/bg_BG/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/kok/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/kok.mo'.
grub-install: info: cannot open `/usr/share/locale/kok/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nb.mo'.
grub-install: info: copying `/usr/share/locale/an/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/an.mo'.
grub-install: info: cannot open `/usr/share/locale/an/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/id_ID/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/id_ID.mo'.
grub-install: info: cannot open `/usr/share/locale/id_ID/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/en at quot/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at quot.mo'.
grub-install: info: copying `/usr/share/locale/byn/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/byn.mo'.
grub-install: info: cannot open `/usr/share/locale/byn/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/gd/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/gd.mo'.
grub-install: info: cannot open `/usr/share/locale/gd/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ug/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ug.mo'.
grub-install: info: cannot open `/usr/share/locale/ug/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/da/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/da.mo'.
grub-install: info: copying `/usr/share/locale/ckb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ckb.mo'.
grub-install: info: cannot open `/usr/share/locale/ckb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fr_CA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fr_CA.mo'.
grub-install: info: cannot open `/usr/share/locale/fr_CA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fo/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fo.mo'.
grub-install: info: cannot open `/usr/share/locale/fo/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/zh_TW.Big5/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/zh_TW.Big5.mo'.
grub-install: info: cannot open `/usr/share/locale/zh_TW.Big5/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/fi/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/fi.mo'.
grub-install: info: copying `/usr/share/locale/uk_UA/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/uk_UA.mo'.
grub-install: info: cannot open `/usr/share/locale/uk_UA/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/mk/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/mk.mo'.
grub-install: info: cannot open `/usr/share/locale/mk/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ca.us-ascii/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ca.us-ascii.mo'.
grub-install: info: cannot open `/usr/share/locale/ca.us-ascii/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/nds/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/nds.mo'.
grub-install: info: cannot open `/usr/share/locale/nds/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/de/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/de.mo'.
grub-install: info: copying `/usr/share/locale/en at hebrew/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/en at hebrew.mo'.
grub-install: info: copying `/usr/share/locale/haw/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/haw.mo'.
grub-install: info: cannot open `/usr/share/locale/haw/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ach/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ach.mo'.
grub-install: info: cannot open `/usr/share/locale/ach/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/wa/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/wa.mo'.
grub-install: info: cannot open `/usr/share/locale/wa/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/be at latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/be at latin.mo'.
grub-install: info: cannot open `/usr/share/locale/be at latin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/si_LK/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/si_LK.mo'.
grub-install: info: cannot open `/usr/share/locale/si_LK/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ms/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ms.mo'.
grub-install: info: cannot open `/usr/share/locale/ms/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/co/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/co.mo'.
grub-install: info: cannot open `/usr/share/locale/co/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/az/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/az.mo'.
grub-install: info: cannot open `/usr/share/locale/az/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ang/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ang.mo'.
grub-install: info: cannot open `/usr/share/locale/ang/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/sr at latin/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/sr at latin.mo'.
grub-install: info: cannot open `/usr/share/locale/sr at latin/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/hsb/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/hsb.mo'.
grub-install: info: cannot open `/usr/share/locale/hsb/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/locale/ka/LC_MESSAGES/grub.mo' -> `/boot/grub/locale/ka.mo'.
grub-install: info: cannot open `/usr/share/locale/ka/LC_MESSAGES/grub.mo': No such file or directory.
grub-install: info: copying `/usr/share/grub/unicode.pf2' -> `/boot/grub/fonts/unicode.pf2'.
grub-install: info: changing current directory to /dev/mapper.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: drive = 2.
grub-install: info: the size of hd10 is 104857600.
grub-install: info: no partition map found for hd10.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: /dev/sdb is present.
grub-install: info: Looking for /dev/sdb.
grub-install: info: /dev/sdb is a parent of /dev/sdb.
grub-install: info: grub-mkimage --directory '/usr/lib/grub/i386-pc' --prefix '/boot/grub' --output '/boot/grub/i386-pc/core.img' --format 'i386-pc' --compression 'auto'  --config '/boot/grub/i386-pc/load.cfg' 'part_gpt' 'part_msdos' 'mdraid1x' 'raid5rec' 'lvm' 'ext2' 'biosdisk' 'search_fs_uuid' 
.
grub-install: info: the size of config file is 0x60.
grub-install: info: the total module size is 0xa548.
grub-install: info: reading /usr/lib/grub/i386-pc/kernel.img.
grub-install: info: locating the section .text at 0x0.
grub-install: info: locating the section .rodata at 0x55d4.
grub-install: info: locating the section .data at 0x65a0.
grub-install: info: locating the section .bss at 0x6d80.
grub-install: info: reading /usr/lib/grub/i386-pc/part_gpt.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/part_msdos.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/diskfilter.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/mdraid1x.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/raid5rec.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/lvm.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/fshelp.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/ext2.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/biosdisk.mod.
grub-install: info: reading /usr/lib/grub/i386-pc/search_fs_uuid.mod.
grub-install: info: reading /boot/grub/i386-pc/load.cfg.
grub-install: info: kernel_img=0x557d2669ea30, kernel_size=0x6d80.
grub-install: info: the core size is 0x7d11.
grub-install: info: reading /usr/lib/grub/i386-pc/lzma_decompress.img.
grub-install: info: reading /usr/lib/grub/i386-pc/diskboot.img.
grub-install: info: writing 0x200 bytes.
grub-install: info: writing 0x8821 bytes.
grub-install: info: copying `/usr/lib/grub/i386-pc/boot.img' -> `/boot/grub/i386-pc/boot.img'.
grub-install: info: grub-bios-setup  --verbose     --directory='/boot/grub/i386-pc' --device-map='/boot/grub/device.map' '/dev/sdb'.
grub-install: info: reading /boot/grub/i386-pc/boot.img.
grub-install: info: reading /boot/grub/i386-pc/core.img.
grub-install: info: root is `(null)', dest is `hd17'.
grub-install: info: Opening dest.
grub-install: info: drive = 4.
grub-install: info: the size of hd17 is 976773168.
grub-install: info: changing current directory to /dev/mapper.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: /dev/mapper/raid-root is present.
grub-install: info: Looking for /dev/mapper/raid-root.
grub-install: info: /dev/mapper/raid-root is a parent of /dev/mapper/raid-root.
grub-install: info: drive = 2.
grub-install: info: the size of hd10 is 104857600.
grub-install: info: guessed root_dev `hd10' from dir `/boot/grub/i386-pc'.
grub-install: info: setting the root device to `hd10'.
grub-install: info: saving <1,0,512>.
grub-install: info: saving <2,0,512>.
grub-install: info: saving <3,0,512>.
grub-install: info: saving <4,0,512>.
grub-install: info: saving <5,0,512>.
grub-install: info: saving <6,0,512>.
grub-install: info: saving <7,0,512>.
grub-install: info: saving <8,0,512>.
grub-install: info: saving <9,0,512>.
grub-install: info: saving <10,0,512>.
grub-install: info: saving <11,0,512>.
grub-install: info: saving <12,0,512>.
grub-install: info: saving <13,0,512>.
grub-install: info: saving <14,0,512>.
grub-install: info: saving <15,0,512>.
grub-install: info: saving <16,0,512>.
grub-install: info: saving <17,0,512>.
grub-install: info: saving <18,0,512>.
grub-install: info: saving <19,0,512>.
grub-install: info: saving <20,0,512>.
grub-install: info: saving <21,0,512>.
grub-install: info: saving <22,0,512>.
grub-install: info: saving <23,0,512>.
grub-install: info: saving <24,0,512>.
grub-install: info: saving <25,0,512>.
grub-install: info: saving <26,0,512>.
grub-install: info: saving <27,0,512>.
grub-install: info: saving <28,0,512>.
grub-install: info: saving <29,0,512>.
grub-install: info: saving <30,0,512>.
grub-install: info: saving <31,0,512>.
grub-install: info: saving <32,0,512>.
grub-install: info: saving <33,0,512>.
grub-install: info: saving <34,0,512>.
grub-install: info: saving <35,0,512>.
grub-install: info: saving <36,0,512>.
grub-install: info: saving <37,0,512>.
grub-install: info: saving <38,0,512>.
grub-install: info: saving <39,0,512>.
grub-install: info: saving <40,0,512>.
grub-install: info: saving <41,0,512>.
grub-install: info: saving <42,0,512>.
grub-install: info: saving <43,0,512>.
grub-install: info: saving <44,0,512>.
grub-install: info: saving <45,0,512>.
grub-install: info: saving <46,0,512>.
grub-install: info: saving <47,0,512>.
grub-install: info: saving <48,0,512>.
grub-install: info: saving <49,0,512>.
grub-install: info: saving <50,0,512>.
grub-install: info: saving <51,0,512>.
grub-install: info: saving <52,0,512>.
grub-install: info: saving <53,0,512>.
grub-install: info: saving <54,0,512>.
grub-install: info: saving <55,0,512>.
grub-install: info: saving <56,0,512>.
grub-install: info: saving <57,0,512>.
grub-install: info: saving <58,0,512>.
grub-install: info: saving <59,0,512>.
grub-install: info: saving <60,0,512>.
grub-install: info: saving <61,0,512>.
grub-install: info: saving <62,0,512>.
grub-install: info: saving <63,0,512>.
grub-install: info: saving <64,0,512>.
grub-install: info: saving <65,0,512>.
grub-install: info: saving <66,0,512>.
grub-install: info: saving <67,0,512>.
grub-install: info: saving <68,0,512>.
grub-install: info: saving <69,0,512>.
grub-install: info: saving <70,0,512>.
grub-install: info: saving <71,0,512>.
grub-install: info: saving <72,0,512>.
grub-install: info: saving <73,0,512>.
grub-install: info: saving <74,0,512>.
grub-install: info: saving <75,0,512>.
grub-install: info: saving <76,0,512>.
grub-install: info: saving <77,0,512>.
grub-install: info: saving <78,0,512>.
grub-install: info: saving <79,0,512>.
grub-install: info: saving <80,0,512>.
grub-install: info: saving <81,0,512>.
grub-install: info: saving <82,0,512>.
grub-install: info: saving <83,0,512>.
grub-install: info: saving <84,0,512>.
grub-install: info: saving <85,0,512>.
grub-install: info: saving <86,0,512>.
grub-install: info: saving <87,0,512>.
grub-install: info: saving <88,0,512>.
grub-install: info: saving <89,0,512>.
grub-install: info: saving <90,0,512>.
grub-install: info: saving <91,0,512>.
grub-install: info: saving <92,0,512>.
grub-install: info: saving <93,0,512>.
grub-install: info: saving <94,0,512>.
grub-install: info: saving <95,0,512>.
grub-install: info: saving <96,0,512>.
grub-install: info: saving <97,0,512>.
grub-install: info: saving <98,0,512>.
grub-install: info: saving <99,0,512>.
grub-install: info: saving <100,0,512>.
grub-install: info: saving <101,0,512>.
grub-install: info: saving <102,0,512>.
grub-install: info: saving <103,0,512>.
grub-install: info: saving <104,0,512>.
grub-install: info: saving <105,0,512>.
grub-install: info: saving <106,0,512>.
grub-install: info: saving <107,0,512>.
grub-install: info: saving <108,0,512>.
grub-install: info: saving <109,0,512>.
grub-install: info: saving <110,0,512>.
grub-install: info: saving <111,0,512>.
grub-install: info: saving <112,0,512>.
grub-install: info: saving <113,0,512>.
grub-install: info: saving <114,0,512>.
grub-install: info: saving <115,0,512>.
grub-install: info: saving <116,0,512>.
grub-install: info: saving <117,0,512>.
grub-install: info: saving <118,0,512>.
grub-install: info: saving <119,0,512>.
grub-install: info: saving <120,0,512>.
grub-install: info: saving <121,0,512>.
grub-install: info: saving <122,0,512>.
grub-install: info: saving <123,0,512>.
grub-install: info: saving <124,0,512>.
grub-install: info: saving <125,0,512>.
grub-install: info: saving <126,0,512>.
grub-install: info: saving <127,0,512>.
grub-install: info: saving <128,0,512>.
grub-install: info: saving <129,0,512>.
grub-install: info: saving <130,0,512>.
grub-install: info: saving <131,0,512>.
grub-install: info: saving <132,0,512>.
grub-install: info: saving <133,0,512>.
grub-install: info: saving <134,0,512>.
grub-install: info: saving <135,0,512>.
grub-install: info: saving <136,0,512>.
grub-install: info: saving <137,0,512>.
grub-install: info: saving <138,0,512>.
grub-install: info: saving <139,0,512>.
grub-install: info: saving <140,0,512>.
Installation finished. No error reported.
-------------- next part --------------
~~~~~~~~~~
$ lvs
  LV             VG   Attr       LSize   Pool Origin   Data%  Meta%  Move Log Cpy%Sync Convert
  [...]          raid -wi-ao---- 512,00m                                                      
  [...]          raid -ri-a-----   5,00g                                                      
  home           raid -wi-ao---- 550,00g                                                      
  [...]          raid -ri-a-----   5,00g                                                      
  [...]          raid -wi-a-----  25,00g                                                      
  newroot-snap   raid swi-a-s---  48,82g      root-old 27,53                                  
  [...]          raid -ri-a-----  15,00g                                                      
  root           raid -wi-ao----  50,00g                                                      
  root-old       raid owi-aos---  48,62g                                                      
  [...]          raid -wi-a-----  15,00g                                                      
  [...]          raid -ri-a-----   5,00g                                                      
  [...]          raid -ri-a-----   5,00g                                                      
  [...]          raid -ri-a-----   5,00g                                                      
  swap           raid -wi-ao----   8,00g                                                      
  [...]          raid -ri-a-----   5,00g                                                      
~~~~~~~~~~
$ lvdisplay
  --- Logical volume ---
  LV Path                /dev/raid/swap
  LV Name                swap
  VG Name                raid
  LV UUID                GraGk3-IaFO-XoVs-KPFp-0UJq-21jT-txT2qW
  LV Write Access        read/write
  LV Creation host, time , 
  LV Status              available
  # open                 2
  LV Size                8,00 GiB
  Current LE             2048
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:0
   
  --- Logical volume ---
  LV Path                /dev/raid/root-old
  LV Name                root-old
  VG Name                raid
  LV UUID                PT4fr3-ah7o-TT7y-Gr5Y-9Kv5-susE-ghBedm
  LV Write Access        read/write
  LV Creation host, time , 
  LV snapshot status     source of
                         newroot-snap [active]
  LV Status              available
  # open                 0
  LV Size                48,62 GiB
  Current LE             12448
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:2
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                LIBfcv-pZW0-FeIJ-SgOC-f7ku-uVqT-84izHT
  LV Write Access        read only
  LV Creation host, time krtek, 2012-08-05 02:33:16 +0200
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:5
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                MRJe1K-gaQj-nxKZ-1yFp-r70X-T8ms-L0iOvV
  LV Write Access        read only
  LV Creation host, time krtek, 2012-09-18 21:45:52 +0200
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:6
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                XT2eIb-qeHP-QuSY-36u6-AtqT-fkqy-wOzAr7
  LV Write Access        read only
  LV Creation host, time krtek, 2012-12-15 02:40:11 +0100
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:7
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                0hnZaC-RFb1-zm7N-FnKa-np6W-Fkcd-7lUxq2
  LV Write Access        read only
  LV Creation host, time krtek, 2013-02-19 09:02:16 +0100
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:8
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                M74xuK-PkVj-GSuc-sdNR-1nCR-6ATE-SLbc4e
  LV Write Access        read only
  LV Creation host, time krtek, 2013-03-22 17:46:33 +0100
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:9
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                UxAdoH-MaSV-HA2E-tnp8-OgXB-J6nd-dsDUrf
  LV Write Access        read only
  LV Creation host, time krtek, 2013-05-13 19:42:21 +0200
  LV Status              available
  # open                 0
  LV Size                15,00 GiB
  Current LE             3840
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:10
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                sEgdjA-86IP-OjQE-ylsW-wBab-guIn-ZCIsgu
  LV Write Access        read only
  LV Creation host, time krtek, 2013-09-10 19:27:48 +0200
  LV Status              available
  # open                 0
  LV Size                5,00 GiB
  Current LE             1280
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:11
   
  --- Logical volume ---
  LV Path                /dev/raid/home
  LV Name                home
  VG Name                raid
  LV UUID                50G0X0-sAdX-oFTG-LNfx-rapu-nbQE-IKdyIe
  LV Write Access        read/write
  LV Creation host, time krtek, 2014-02-06 09:10:10 +0100
  LV Status              available
  # open                 1
  LV Size                550,00 GiB
  Current LE             140800
  Segments               4
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:12
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                7GDy7v-KNTO-3RXZ-RccH-39Wd-oHA1-LyzG35
  LV Write Access        read/write
  LV Creation host, time krtek, 2014-02-11 16:24:45 +0100
  LV Status              available
  # open                 0
  LV Size                25,00 GiB
  Current LE             6400
  Segments               2
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:13
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                iMUHRK-IR0e-9ztL-jEeP-dxdt-xeko-qHi1Z2
  LV Write Access        read/write
  LV Creation host, time krtek, 2014-12-09 20:28:34 +0100
  LV Status              available
  # open                 0
  LV Size                15,00 GiB
  Current LE             3840
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:14
   
  --- Logical volume ---
  LV Path                /dev/raid/[...]
  LV Name                [...]
  VG Name                raid
  LV UUID                AthNSn-WE1K-pL0z-xtod-LeDD-76x0-sk4u5b
  LV Write Access        read/write
  LV Creation host, time krtek, 2015-07-26 13:43:15 +0200
  LV Status              available
  # open                 1
  LV Size                512,00 MiB
  Current LE             128
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:15
   
  --- Logical volume ---
  LV Path                /dev/raid/newroot-snap
  LV Name                newroot-snap
  VG Name                raid
  LV UUID                WfpM8E-0Vb2-knXT-h4ly-8Myw-YR6n-vL6PMQ
  LV Write Access        read/write
  LV Creation host, time krtek, 2017-10-20 01:43:31 +0200
  LV snapshot status     active destination for root-old
  LV Status              available
  # open                 0
  LV Size                48,62 GiB
  Current LE             12448
  COW-table size         48,82 GiB
  COW-table LE           12497
  Allocated to snapshot  27,53%
  Snapshot chunk size    4,00 KiB
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:4
   
  --- Logical volume ---
  LV Path                /dev/raid/root
  LV Name                root
  VG Name                raid
  LV UUID                38jPEu-PKy3-g8qi-LGEf-aFBk-Cw0v-L0KOY2
  LV Write Access        read/write
  LV Creation host, time grml, 2017-10-23 02:08:58 +0200
  LV Status              available
  # open                 1
  LV Size                50,00 GiB
  Current LE             12800
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     512
  Block device           253:16
  
~~~~~~~~~~
$ vgs
  VG   #PV #LV #SN Attr   VSize   VFree  
  raid   1  15   1 wz--n- 931,27g 140,33g
~~~~~~~~~~
$ vgdisplay
  --- Volume group ---
  VG Name               raid
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  219
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                15
  Open LV               4
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               931,27 GiB
  PE Size               4,00 MiB
  Total PE              238405
  Alloc PE / Size       202481 / 790,94 GiB
  Free  PE / Size       35924 / 140,33 GiB
  VG UUID               2czMwm-b0j7-Qwjj-MDOy-7UWJ-TlDw-B6evVI

~~~~~~~~~   
$ pvs
  PV         VG   Fmt  Attr PSize   PFree  
  /dev/md0   raid lvm2 a--  931,27g 140,33g
~~~~~~~~~
$ pvdisplay
  --- Physical volume ---
  PV Name               /dev/md0
  VG Name               raid
  PV Size               931,27 GiB / not usable 256,00 KiB
  Allocatable           yes 
  PE Size               4,00 MiB
  Total PE              238405
  Free PE               35924
  Allocated PE          202481
  PV UUID               3NFXll-HoXj-ImSN-KZZq-Jrwa-mrcl-dBk20q

~~~~~~~~~~
$ cat /proc/mdstat 
Personalities : [raid6] [raid5] [raid4] [linear] [multipath] [raid0] [raid1] [raid10] 
md0 : active raid5 sdc1[0] sda1[2] sdb1[1]
      976508672 blocks super 1.2 level 5, 64k chunk, algorithm 2 [3/3] [UUU]
      bitmap: 2/4 pages [8KB], 65536KB chunk

unused devices: <none>
~~~~~~~~~~


More information about the Pkg-grub-devel mailing list