Activity log for bug #554307

Date Who What changed Old value New value Message
2010-04-02 23:31:54 Matthias Müller-Reineke bug added bug
2010-04-02 23:31:54 Matthias Müller-Reineke attachment added Dependencies.txt http://launchpadlibrarian.net/42927516/Dependencies.txt
2011-09-05 18:55:48 Launchpad Janitor os-prober (Ubuntu): status New Confirmed
2015-07-21 14:30:13 V[i]ctor bug task added grub2 (Ubuntu)
2015-07-21 14:31:07 Launchpad Janitor grub2 (Ubuntu): status New Confirmed
2015-07-21 14:33:48 V[i]ctor bug added subscriber V[i]ctor
2015-07-22 02:16:28 Phillip Susi bug task deleted grub2 (Ubuntu)
2015-07-22 02:16:55 Phillip Susi os-prober (Ubuntu): status Confirmed Incomplete
2015-07-22 12:18:35 V[i]ctor attachment added attachments https://bugs.launchpad.net/ubuntu/+source/os-prober/+bug/554307/+attachment/4432503/+files/attachments
2015-09-13 20:44:53 Rune Philosof os-prober (Ubuntu): status Incomplete Confirmed
2016-01-19 19:34:33 EvilSupahFly bug added subscriber EvilSupahFly
2016-02-07 07:37:43 Rüdiger Kupper tags apport-bug i386 lucid apport-bug i386 lucid trusty vivid wily
2016-02-29 13:59:33 Alberto Salvia Novella os-prober (Ubuntu): importance Undecided High
2017-12-22 22:43:48 TedM bug added subscriber TedM
2018-03-01 15:11:15 Phillip Susi os-prober (Ubuntu): status Confirmed Won't Fix
2018-05-09 13:39:36 Phillip Susi os-prober (Ubuntu): status Won't Fix Triaged
2018-05-09 13:42:38 Phillip Susi description Binary package hint: os-prober My Partitions: sda5 swap sda6 lucid sda7 karmic linux-boot-prober doesn't take the root partition as kernel root paraameter for my karmic installation. matthias@netbook:/boot/grub$ ls -l /dev/disk/by-uuid/ insgesamt 0 lrwxrwxrwx 1 root root 10 2010-04-02 23:08 199233d9-7174-445d-81df-eb9c95af871f -> ../../sda7 lrwxrwxrwx 1 root root 10 2010-04-02 23:08 1E4F-1E00 -> ../../sda2 lrwxrwxrwx 1 root root 10 2010-04-02 23:08 523cd06e-f460-4c88-b1e9-5382df4e5d37 -> ../../sda6 lrwxrwxrwx 1 root root 10 2010-04-02 23:08 82A8C040A8C03507 -> ../../sda1 lrwxrwxrwx 1 root root 10 2010-04-02 23:08 837c2ad3-a209-4668-b864-a79320c5094b -> ../../sda5 matthias@netbook:/boot/grub$ linux-boot-prober /dev/disk/by-uuid/199233d9-7174-445d-81df-eb9c95af871f unshare failed: Operation not permitted /dev/disk/by-uuid/199233d9-7174-445d-81df-eb9c95af871f:/dev/disk/by-uuid/199233d9-7174-445d-81df-eb9c95af871f:Ubuntu, Linux 2.6.31-16-generic:/boot/vmlinuz-2.6.31-16-generic:/boot/initrd.img-2.6.31-16-generic:root=UUID=523cd06e-f460-4c88-b1e9-5382df4e5d37 ro quiet splash ... I suspect that when I try to boot my karmic, it boots the karmic kernel with lucid userland -> nothing works. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: os-prober 1.36 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic i686 Architecture: i386 Date: Sat Apr 3 01:15:03 2010 ProcEnviron: LANG=de_DE.UTF-8 SHELL=/bin/bash SourcePackage: os-prober When os-prober detects another install on a system with a shared /boot, it sets up a menu to boot that install, but passes the kernel a root= argument directing it to mount the root partition of the install running os-prober instead of the partition on which the other system was found. Example: menuentry '<name of first linux OS> (on /dev/sda2)' [...] { [...] set root='(hd0,msdos1)' # <- this is the boot partition, /dev/sda1 search --no-floppy --fs-uuid --set=root <UUID of /dev/sda1> linux /vmlinuz-x.x.x root=UUID=<UUID of /dev/sda2> [...] initrd [....] } menuentry '<name of second linux OS> (on /dev/sda3)' [...] { [...] set root='(hd0,msdos1)' # <- this is the boot partition, /dev/sda1 search --no-floppy --fs-uuid --set=root <UUID-of-/dev/sda1> linux /vmlinuz-y.y.y root=UUID=<UUID of /dev/sda2 (!!!)> [...] initrd [....] }