Your message dated Fri, 28 Dec 2012 17:47:53 +0000
with message-id <[email protected]>
and subject line Bug#643608: fixed in grub2 1.99-24
has caused the Debian Bug report #643608,
regarding grub2 LVM over RAID1 with 2 drives. Cannot boot from second drive if 
locale is Russian
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
643608: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=643608
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-pc
Version: 1.98+20100804-14
Severity: important
Tags: d-i upstream squeeze l10n

Grub2 with LVM over RAID1 with 2 devices without dedicated boot partition.

Disk/Raid/LVM setup was done during installation with Debian installer.
Grub2 was only installed on first disk, so I installed it on second with
(tried both): grub-install /dev/vdb and dpkg-reconfigure grub-pc (selected
both drives vda and vdb)

All is fine unless I simulate disk failure and remove first disk
in which case system doesn't boot: "Welcom to grub." is shown and
system reboots in a loop.

Reinstalled grub2 into second disk in numerous ways with no luck.

There are some posts in the net about exactly this problems. One guy
found out that uncommenting "GRUB_TERMINAL=console" in
/etc/default/grub and running update-grub fixes this problem,
I checked - that is true!

Investigating further I found out that running grub-install on
second drive from withing Debian CD rescue mode makes it boot with
only second drive present, but grub menu language drops to English
(my locale is Russian).

When I re-install grub2 from within the system into second drive or
just running dpkg-reconfigure grub-pc and selecting both drives - system
cannot boot when only second drive present (first and both boot Ok). Grub2
menu language is reset to Russian.

I have had an Idea that the language is a problem. And that's true, if I
install grub by either of install-grub or dpkg-reconfigure preceding with
export LANG=c, grub2 menu drops to English and system is able to boot off
any of drives present or with both drives.

So, for me there are 2 solutions now for this problem:

1. uncomment "GRUB_TERMINAL=console" in /etc/default/grub and run update-grub
2. re-install grub2 with English locale "export LANG=C; dpkg-reconfigure 
grub-pc"

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/raidlvm-root / ext4 
rw,relatime,errors=remount-ro,barrier=1,data=ordered 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0)   /dev/vda
(hd1)   /dev/vdb
*********************** 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
  load_env
fi
set default="0"
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 {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod raid
insmod mdraid
insmod lvm
insmod part_msdos
insmod part_msdos
insmod ext2
set root='(raidlvm-root)'
search --no-floppy --fs-uuid --set 9d3615e5-8db3-49fc-aba9-08ae14842ca8
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
set timeout=5
### 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 ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686' --class debian --class 
gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid
        insmod lvm
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(raidlvm-root)'
        search --no-floppy --fs-uuid --set 9d3615e5-8db3-49fc-aba9-08ae14842ca8
        echo    'Loading Linux 2.6.32-5-686 ...'
        linux   /boot/vmlinuz-2.6.32-5-686 root=/dev/mapper/raidlvm-root ro  
quiet
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-686
}
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-686 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os {
        insmod raid
        insmod mdraid
        insmod lvm
        insmod part_msdos
        insmod part_msdos
        insmod ext2
        set root='(raidlvm-root)'
        search --no-floppy --fs-uuid --set 9d3615e5-8db3-49fc-aba9-08ae14842ca8
        echo    'Loading Linux 2.6.32-5-686 ...'
        linux   /boot/vmlinuz-2.6.32-5-686 root=/dev/mapper/raidlvm-root ro 
single 
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-2.6.32-5-686
}
### END /etc/grub.d/10_linux ###

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

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

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

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=ru_UA.UTF-8, LC_CTYPE=ru_UA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]   1.5.36.1         Debian configuration management sy
ii  grub-common             1.98+20100804-14 GRand Unified Bootloader, version 
ii  libc6                   2.11.2-10        Embedded GNU C Library: Shared lib
ii  libdevmapper1.02.1      2:1.02.48-5      The Linux Kernel Device Mapper use
ii  ucf                     3.0025+nmu1      Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
pn  desktop-base                  <none>     (no description available)

-- debconf information:
  grub-pc/kopt_extracted: false
  grub2/kfreebsd_cmdline:
  grub2/device_map_regenerated:
* grub-pc/install_devices: /dev/vda, /dev/vdb
  grub-pc/postrm_purge_boot_grub: false
  grub-pc/install_devices_failed_upgrade: true
  grub-pc/disk_description:
* grub2/linux_cmdline:
  grub-pc/install_devices_empty: false
  grub2/kfreebsd_cmdline_default: quiet
  grub-pc/partition_description:
  grub-pc/install_devices_failed: false
* grub-pc/install_devices_disks_changed: /dev/vda, /dev/vdb
* grub2/linux_cmdline_default: quiet
  grub-pc/chainload_from_menu.lst: true
  grub-pc/mixed_legacy_and_grub2: true



--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 1.99-24

We believe that the bug you reported is fixed in the latest version of
grub2, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Colin Watson <[email protected]> (supplier of updated grub2 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 28 Dec 2012 13:01:38 +0000
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-pc-bin grub-pc grub-rescue-pc grub-coreboot-bin grub-coreboot 
grub-efi-ia32-bin grub-efi-ia32 grub-efi-amd64-bin grub-efi-amd64 
grub-ieee1275-bin grub-ieee1275 grub-firmware-qemu grub-yeeloong-bin 
grub-yeeloong grub-mount-udeb
Architecture: source i386
Version: 1.99-24
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description: 
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot binaries)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 binaries)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware 
binaries)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS binaries)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong binaries)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 611537 612454 616487 619618 626853 643608 661789 687681
Changes: 
 grub2 (1.99-24) unstable; urgency=low
 .
   * Acknowledge NMU with thanks.
   * Fix namespace of EFI boot failure patch file added in NMU.
   * Copy unicode.pf2 to /boot/grub/ for EFI installs so that it is more
     likely to be readable by GRUB (closes: #661789).
   * Fix infinite recursion in gettext when translation fails (closes:
     #611537, #612454, #616487, #619618, #626853, #643608).
   * Fix grammar in Finnish translation (closes: #687681).
Checksums-Sha1: 
 3a25368397147b14694d17abaa2e4fdb1d75daec 3757 grub2_1.99-24.dsc
 42693ca696f216177295e20cda437aa6ed0de4a5 420650 grub2_1.99-24.diff.gz
 cc51d8cccb9bad2a6aea6154a4467e2b8441839d 2494 grub2_1.99-24_i386.deb
 95efeec699af8c78e245b8ef12e2453c02363f04 1088 grub-linuxbios_1.99-24_i386.deb
 f02cba3fc3a87a5f99d9b942c2b3b63e91a3b3de 1096 grub-efi_1.99-24_i386.deb
 18dbde7ad0eb1acbaa710aea46e4cf899a5bc8c0 1550202 grub-common_1.99-24_i386.deb
 5a12c56456698a9a9737baccab4271c041e802cf 94310 grub2-common_1.99-24_i386.deb
 a10610e7a7b362d5a7d2776f38395b8eb6d5a97a 1616626 grub-emu_1.99-24_i386.deb
 3f21a4990568065797111a45aa0756d18476f1ca 640068 grub-pc-bin_1.99-24_i386.deb
 d34b1690c2a1e920e84fd97b9ae1110eca4f57be 170034 grub-pc_1.99-24_i386.deb
 73ac841eea33b88f0d1d87253cb113ce4a503d7a 821706 grub-rescue-pc_1.99-24_i386.deb
 4df37e94f60031709fa618a3883a3df2a8b29178 447876 
grub-coreboot-bin_1.99-24_i386.deb
 5da1aadf37fbfad5c7f599e511760faaf78395d4 45016 grub-coreboot_1.99-24_i386.deb
 018f38698eb1fb360be96a28f5e0c3b2d0b1565e 455956 
grub-efi-ia32-bin_1.99-24_i386.deb
 abfd7298d6aa9d9aa8d9d487d9e8eaa01fdfcb84 45106 grub-efi-ia32_1.99-24_i386.deb
 7b8aaeb547bdb13173bf97700849586d0cc11779 476352 
grub-efi-amd64-bin_1.99-24_i386.deb
 07c250abecaf9793e1df234f61b1588b7bdc41dc 45100 grub-efi-amd64_1.99-24_i386.deb
 a107c2627cd52b8dac222cefd84feee9c8969d21 446022 
grub-ieee1275-bin_1.99-24_i386.deb
 700999b528a54bc77836bcab01dbfcd148b28f56 45050 grub-ieee1275_1.99-24_i386.deb
 34cc47f48d144af5563b30c3d4c49a8f5cab361d 760334 
grub-firmware-qemu_1.99-24_i386.deb
 cca82e12b8cd5c477b60252529bde8642715f0e0 177292 
grub-mount-udeb_1.99-24_i386.udeb
Checksums-Sha256: 
 9039327b0764f72387ecf04ba6a1e65297d7e31b2e00fd7b96f1251f4f789bae 3757 
grub2_1.99-24.dsc
 89a0c5d8d94b10310dce5f48db25b82ae2f94ea378ca87ee4859ba5e0b03617c 420650 
grub2_1.99-24.diff.gz
 7ff1925e76da48cc5170590a27bebbfedb33effeb4f0342da206974b1058ce8c 2494 
grub2_1.99-24_i386.deb
 f87bd5758dee683774e4f08891fc468f8316ec003ad424971db964648ba3baec 1088 
grub-linuxbios_1.99-24_i386.deb
 c0f9fe5a6faeb77297adaac219391c7663178799b3089677156d5ae52f2fd22d 1096 
grub-efi_1.99-24_i386.deb
 34d5f20aa1a04035800c0abfd9d16be5eee7472955cf683aac2dba10aa2899e8 1550202 
grub-common_1.99-24_i386.deb
 3c485f2714b8f22120abf5c25bd78b9037cd223d985b5c4c6a22e8714d722738 94310 
grub2-common_1.99-24_i386.deb
 1267547243a68a2a3e09828c26d778a4b4b8fe3eb5e45310038dd465d9f31099 1616626 
grub-emu_1.99-24_i386.deb
 f90c33754a9986905b1d902c2315046e7b185da1ad6b2c5c165aaa96ff2fa726 640068 
grub-pc-bin_1.99-24_i386.deb
 62a2150b8dd19c3c116b10f455455e2b9eacec57ad7d5391640ac94bd13a58a4 170034 
grub-pc_1.99-24_i386.deb
 b854494c6ffef11c201893414e15c59b8d558a183bdfde8a60ad0e2889b3f16c 821706 
grub-rescue-pc_1.99-24_i386.deb
 8b349ecc80ae3fa08466df21bab24477b26301f44fbad167394c0230249b7745 447876 
grub-coreboot-bin_1.99-24_i386.deb
 46b7371bf63e41261968a0c701a8c87a7866be4208ac835eee0d161878ddd14e 45016 
grub-coreboot_1.99-24_i386.deb
 8c7e0963b59c833d847cd9950c61d7087a3975dd387d3835a5c68e35c7b3e802 455956 
grub-efi-ia32-bin_1.99-24_i386.deb
 72545ec2ab847fca36ca1b6f705ca9d6fb893a2e9afaabfd4ea1d332a6a44058 45106 
grub-efi-ia32_1.99-24_i386.deb
 257b940048489fbd14e2273335febe787b8b6c8f37a2f5f244b1dfd7a4a6e40d 476352 
grub-efi-amd64-bin_1.99-24_i386.deb
 6ed78f29a42524023bea64dc638f9ddafd76e99f441d1de7677d9cf73c4c95b2 45100 
grub-efi-amd64_1.99-24_i386.deb
 3cf4150848c458d8efc5866ef3194e63804bd87a6fc2912bd3a740c52c371dbd 446022 
grub-ieee1275-bin_1.99-24_i386.deb
 105e471ac82b22b5c3f31d710440a131d1d4e2a19f51777b67c8964a330776ed 45050 
grub-ieee1275_1.99-24_i386.deb
 0f75b5505ca43ec5240791b6d817765de013bee1f44fa0c29f3bf982b4cf72fe 760334 
grub-firmware-qemu_1.99-24_i386.deb
 6d089a1a7e6053a482294c452142b92a52d6b7bd989c2a66d9a720a09497b4d0 177292 
grub-mount-udeb_1.99-24_i386.udeb
Files: 
 747c2ae7abcc9504fdaa66fdafd5abd3 3757 admin extra grub2_1.99-24.dsc
 3176e776ed044d8b252153b0359b1723 420650 admin extra grub2_1.99-24.diff.gz
 e72ace7861f76a7ffe29b2f425c20271 2494 admin extra grub2_1.99-24_i386.deb
 c0c219b26e4fcf928c68302f141d12f4 1088 admin extra 
grub-linuxbios_1.99-24_i386.deb
 8f10e9284a9a78006e6caa0602c53b17 1096 admin extra grub-efi_1.99-24_i386.deb
 ab9d704d06bd02174942fc563a9028a3 1550202 admin optional 
grub-common_1.99-24_i386.deb
 2c220119d1f72cac1622f4f25b73c6fe 94310 admin optional 
grub2-common_1.99-24_i386.deb
 fec4313e139e8329c66479a009b034db 1616626 admin extra grub-emu_1.99-24_i386.deb
 dab21d7abff19f2bc99443040dad13ee 640068 admin optional 
grub-pc-bin_1.99-24_i386.deb
 e09d957dd7a05a436dcbaea801904991 170034 admin optional grub-pc_1.99-24_i386.deb
 5e2826ee0fe08f92edc61e7bdbcabc02 821706 admin extra 
grub-rescue-pc_1.99-24_i386.deb
 94fbf82a1a25c77b85d212e0e091620d 447876 admin extra 
grub-coreboot-bin_1.99-24_i386.deb
 b23545f418a08c6b72360c452b4d21f8 45016 admin extra 
grub-coreboot_1.99-24_i386.deb
 8ab0da039b368ba3622b5a1bc5fc7b6b 455956 admin extra 
grub-efi-ia32-bin_1.99-24_i386.deb
 2d1db686859c7b427bb87c6dfbb0ef4d 45106 admin extra 
grub-efi-ia32_1.99-24_i386.deb
 f2419304edc372a73c1e3b8d7b670473 476352 admin extra 
grub-efi-amd64-bin_1.99-24_i386.deb
 45e72c5115177d1099ae166e7784dddc 45100 admin extra 
grub-efi-amd64_1.99-24_i386.deb
 04c4275aa9844fcafe3f9b9e32206f7e 446022 admin extra 
grub-ieee1275-bin_1.99-24_i386.deb
 6c3cd943c5a8da0ef9171e071286f35e 45050 admin extra 
grub-ieee1275_1.99-24_i386.deb
 8139d96300e84c1d625a240aebd729f6 760334 admin extra 
grub-firmware-qemu_1.99-24_i386.deb
 e5bb02cc3c1579f74354085011835da0 177292 debian-installer extra 
grub-mount-udeb_1.99-24_i386.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Colin Watson <[email protected]> -- Debian developer

iQIVAwUBUN3Xajk1h9l9hlALAQikWg//W7XQmb5IMwuvVo+bF20STm6NbjaTflOA
T1+jKbSiv3+recKREQLY3oRxquHpx1c3rsa5374meYbN2RT7Hnr1DQp84utfleQI
SmtpnKtkWgzlim7OG9zLmfTE3hJyOCZBNrkWzwfWUOst2KnP+rlqHZO6IovJCDM3
FP9jVZvLEm4qdm8tbvVZX7wcN+7XxFwvLKs4Qo5I2wzbotnYvzUtJ5O3MVHxjuIM
0n9zjO0O3reX+nUQF7RtKrKCWObfhYVN0qIroxaTx8srRxwP9qDFmyJEfweXhc02
jFWeQLCON6+uJESWldCyC8Sj/kwsM/Y/RpiR7XLPL2tfcaJHNi41zRs4PBgrwAXi
APxfbT2nK+05zuqiDI/XxHfMa3OEYsTo8U5blYuPOaesitVkw7tZBy6/4liIJ6Ya
r5tAbGHNOqaEHn9Kry33emJPkKXDJcwttKonnvTHv4kH7XtPTrIsVR9k+2FnRFWL
ksfvcZftscmI4PnEJqDOwb/l4/NQ4j6KfjVmsEpvXeYwWbNjK5xoKpVHva+YUQpX
kK7M6oV7y79rHIxE0+2srwEdTzXtgS3pJSL0BlJNcFJdJ4Iqmwgw7yR+FG8ExgmG
SNlodAD7qjpbfbu3GMWZrSsu800opCWTQ2UIfFdVEVnGivMRLOquAbse/Ql3ggkb
wXJq+fMQ7QA=
=+gEW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to