Activity log for bug #1582899

Date Who What changed Old value New value Message
2016-05-17 20:56:49 TJ bug added bug
2016-05-17 21:02:05 TJ attachment added syslog from installer https://bugs.launchpad.net/ubuntu/+source/base-installer/+bug/1582899/+attachment/4664934/+files/syslog
2016-05-17 21:02:29 TJ attachment added partman log https://bugs.launchpad.net/ubuntu/+source/base-installer/+bug/1582899/+attachment/4664935/+files/partman
2016-05-17 21:02:54 DJVG bug added subscriber DJVG
2016-05-17 21:16:04 TJ attachment added apt term.log https://bugs.launchpad.net/ubuntu/+source/base-installer/+bug/1582899/+attachment/4664936/+files/term.log
2016-05-18 00:59:24 TJ bug task added initramfs-tools (Ubuntu)
2016-05-18 03:00:25 TJ bug task added live-installer (Ubuntu)
2016-05-18 08:53:21 TJ description Sysadmin reported in #ubuntu (later #ubuntu-kernel) the 16.04 ubuntu-server failed due to being unable to configure linux-image-4.4.0-21-generic. Lots of diagnostics and one SSH remote session later we seem to have narrowed it down to the installer. The cause of the error message appears to be that the symlink names in /dev/disk/by-uuid/ haven't been updated after the partitioning stage if there were pre-existing partitions and file-systems on the install device, *and* the sysadmin chose to format the existing partitions when selecting mountpoints. In this case a hardware RAID device presents: /dev/sda1 (/boot/) /dev/sda2 (swap) /dev/sda3 (/) From the shell I noticed: root@tmpstorage:/# ll /dev/disk/by-uuid/ total 0 lrwxrwxrwx 1 root root 10 May 17 19:39 130e4419-4bfd-46d2-87f9-62e5379bf591 -> ../../sda1 lrwxrwxrwx 1 root root 10 May 17 19:39 127d3fa1-c07c-48e4-9e26-1b926d37625c -> ../../sda3 lrwxrwxrwx 1 root root 10 May 17 19:39 78b88456-2b0b-4265-9ed2-5db61522d887 -> ../../sda2 lrwxrwxrwx 1 root root 9 May 17 19:39 2016-04-20-22-45-29-00 -> ../../sr1 drwxr-xr-x 6 root root 120 May 17 19:39 .. drwxr-xr-x 2 root root 120 May 17 19:39 . root@tmpstorage:/# blkid /dev/sda* /dev/sda: PTUUID="a84e60fd" PTTYPE="dos" /dev/sda1: UUID="61365714-8ff7-47a2-8035-8aed9e3191a6" TYPE="ext4" PARTUUID="a84e60fd-01" /dev/sda2: UUID="78b88456-2b0b-4265-9ed2-5db61522d887" TYPE="swap" PARTUUID="a84e60fd-02" /dev/sda3: UUID="75f68451-9472-47c7-9efc-ed032bfa9987" TYPE="ext4" PARTUUID="a84e60fd-03" More details to follow. Sysadmin reported in #ubuntu (later #ubuntu-kernel) the 16.04 ubuntu-server failed due to being unable to configure linux-image-4.4.0-21-generic. Lots of diagnostics and one SSH remote session later we seem to have narrowed it down to the installer. At the installer's boot menu the F6 option "Expert mode" is chosen. During initial ram file-system creation (after the kernel image is installed) the /dev/ file-system is not mounted in /target/ and therefore the initramfs-tools/hook-functions::dep_add_modules_mount() cannot match the mount device of "/" (in this case /dev/sda3) with any node under /dev/ which only contains static entries. Cause appears to be that live-installer.postinst has the crucial step calling library.sh:setup_dev() commented out: #waypoint 1 setup_dev OS=linux setup_dev() calls setup_dev_${OS} setup_dev_linux() mounts procfs and devtmpfs into /target/ ---- Originally the cause of the error message appeared to be that the symlink names in /dev/disk/by-uuid/ haven't been updated after the partitioning stage if there were pre-existing partitions and file-systems on the install device, *and* the sysadmin chose to format the existing partitions when selecting mountpoints. In this case a hardware RAID device presents: /dev/sda1 (/boot/) /dev/sda2 (swap) /dev/sda3 (/) From the shell I noticed: root@tmpstorage:/# ll /dev/disk/by-uuid/ total 0 lrwxrwxrwx 1 root root 10 May 17 19:39 130e4419-4bfd-46d2-87f9-62e5379bf591 -> ../../sda1 lrwxrwxrwx 1 root root 10 May 17 19:39 127d3fa1-c07c-48e4-9e26-1b926d37625c -> ../../sda3 lrwxrwxrwx 1 root root 10 May 17 19:39 78b88456-2b0b-4265-9ed2-5db61522d887 -> ../../sda2 lrwxrwxrwx 1 root root 9 May 17 19:39 2016-04-20-22-45-29-00 -> ../../sr1 drwxr-xr-x 6 root root 120 May 17 19:39 .. drwxr-xr-x 2 root root 120 May 17 19:39 . root@tmpstorage:/# blkid /dev/sda* /dev/sda: PTUUID="a84e60fd" PTTYPE="dos" /dev/sda1: UUID="61365714-8ff7-47a2-8035-8aed9e3191a6" TYPE="ext4" PARTUUID="a84e60fd-01" /dev/sda2: UUID="78b88456-2b0b-4265-9ed2-5db61522d887" TYPE="swap" PARTUUID="a84e60fd-02" /dev/sda3: UUID="75f68451-9472-47c7-9efc-ed032bfa9987" TYPE="ext4" PARTUUID="a84e60fd-03" More details to follow.
2016-05-18 09:18:34 TJ description Sysadmin reported in #ubuntu (later #ubuntu-kernel) the 16.04 ubuntu-server failed due to being unable to configure linux-image-4.4.0-21-generic. Lots of diagnostics and one SSH remote session later we seem to have narrowed it down to the installer. At the installer's boot menu the F6 option "Expert mode" is chosen. During initial ram file-system creation (after the kernel image is installed) the /dev/ file-system is not mounted in /target/ and therefore the initramfs-tools/hook-functions::dep_add_modules_mount() cannot match the mount device of "/" (in this case /dev/sda3) with any node under /dev/ which only contains static entries. Cause appears to be that live-installer.postinst has the crucial step calling library.sh:setup_dev() commented out: #waypoint 1 setup_dev OS=linux setup_dev() calls setup_dev_${OS} setup_dev_linux() mounts procfs and devtmpfs into /target/ ---- Originally the cause of the error message appeared to be that the symlink names in /dev/disk/by-uuid/ haven't been updated after the partitioning stage if there were pre-existing partitions and file-systems on the install device, *and* the sysadmin chose to format the existing partitions when selecting mountpoints. In this case a hardware RAID device presents: /dev/sda1 (/boot/) /dev/sda2 (swap) /dev/sda3 (/) From the shell I noticed: root@tmpstorage:/# ll /dev/disk/by-uuid/ total 0 lrwxrwxrwx 1 root root 10 May 17 19:39 130e4419-4bfd-46d2-87f9-62e5379bf591 -> ../../sda1 lrwxrwxrwx 1 root root 10 May 17 19:39 127d3fa1-c07c-48e4-9e26-1b926d37625c -> ../../sda3 lrwxrwxrwx 1 root root 10 May 17 19:39 78b88456-2b0b-4265-9ed2-5db61522d887 -> ../../sda2 lrwxrwxrwx 1 root root 9 May 17 19:39 2016-04-20-22-45-29-00 -> ../../sr1 drwxr-xr-x 6 root root 120 May 17 19:39 .. drwxr-xr-x 2 root root 120 May 17 19:39 . root@tmpstorage:/# blkid /dev/sda* /dev/sda: PTUUID="a84e60fd" PTTYPE="dos" /dev/sda1: UUID="61365714-8ff7-47a2-8035-8aed9e3191a6" TYPE="ext4" PARTUUID="a84e60fd-01" /dev/sda2: UUID="78b88456-2b0b-4265-9ed2-5db61522d887" TYPE="swap" PARTUUID="a84e60fd-02" /dev/sda3: UUID="75f68451-9472-47c7-9efc-ed032bfa9987" TYPE="ext4" PARTUUID="a84e60fd-03" More details to follow. Sysadmin reported in #ubuntu (later #ubuntu-kernel) the 16.04 ubuntu-server ISO installer failed due to being unable to configure linux-image-4.4.0-21-generic. Lots of diagnostics and one SSH remote session later we seem to have narrowed it down to the installer. At the installer's boot menu the F6 option "Expert mode" is chosen. During initial ram file-system creation (after the kernel image is installed) the /dev/ file-system is not mounted in /target/ and therefore the initramfs-tools/hook-functions::dep_add_modules_mount() cannot match the mount device of "/" (in this case /dev/sda3) with any node under /dev/ which only contains static entries. Cause appears to be that live-installer.postinst has the crucial step calling library.sh:setup_dev() commented out: #waypoint 1 setup_dev OS=linux setup_dev() calls setup_dev_${OS} setup_dev_linux() mounts procfs and devtmpfs into /target/ ---- Originally the cause of the error message appeared to be that the symlink names in /dev/disk/by-uuid/ haven't been updated after the partitioning stage if there were pre-existing partitions and file-systems on the install device, *and* the sysadmin chose to format the existing partitions when selecting mountpoints. In this case a hardware RAID device presents: /dev/sda1 (/boot/) /dev/sda2 (swap) /dev/sda3 (/) From the shell I noticed: root@tmpstorage:/# ll /dev/disk/by-uuid/ total 0 lrwxrwxrwx 1 root root 10 May 17 19:39 130e4419-4bfd-46d2-87f9-62e5379bf591 -> ../../sda1 lrwxrwxrwx 1 root root 10 May 17 19:39 127d3fa1-c07c-48e4-9e26-1b926d37625c -> ../../sda3 lrwxrwxrwx 1 root root 10 May 17 19:39 78b88456-2b0b-4265-9ed2-5db61522d887 -> ../../sda2 lrwxrwxrwx 1 root root 9 May 17 19:39 2016-04-20-22-45-29-00 -> ../../sr1 drwxr-xr-x 6 root root 120 May 17 19:39 .. drwxr-xr-x 2 root root 120 May 17 19:39 . root@tmpstorage:/# blkid /dev/sda* /dev/sda: PTUUID="a84e60fd" PTTYPE="dos" /dev/sda1: UUID="61365714-8ff7-47a2-8035-8aed9e3191a6" TYPE="ext4" PARTUUID="a84e60fd-01" /dev/sda2: UUID="78b88456-2b0b-4265-9ed2-5db61522d887" TYPE="swap" PARTUUID="a84e60fd-02" /dev/sda3: UUID="75f68451-9472-47c7-9efc-ed032bfa9987" TYPE="ext4" PARTUUID="a84e60fd-03" More details to follow.
2016-05-18 16:28:58 Adam Conrad initramfs-tools (Ubuntu): status New Invalid
2016-05-18 16:32:00 Adam Conrad base-installer (Ubuntu): status New Invalid
2016-05-19 15:16:25 Nish Aravamudan tags ubuntu-server
2016-05-19 15:19:09 Nish Aravamudan bug added subscriber Ubuntu Server Team
2016-05-21 15:14:44 Launchpad Janitor live-installer (Ubuntu): status New Confirmed
2019-11-07 14:29:17 Andreas Hasenack tags ubuntu-server server-triage-discuss ubuntu-server
2019-11-07 17:53:31 Andreas Hasenack tags server-triage-discuss ubuntu-server
2020-05-08 16:23:10 Rafael David Tinoco nominated for series Ubuntu Bionic
2020-05-08 16:23:10 Rafael David Tinoco bug task added base-installer (Ubuntu Bionic)
2020-05-08 16:23:10 Rafael David Tinoco bug task added initramfs-tools (Ubuntu Bionic)
2020-05-08 16:23:10 Rafael David Tinoco bug task added live-installer (Ubuntu Bionic)
2020-05-08 16:23:10 Rafael David Tinoco nominated for series Ubuntu Xenial
2020-05-08 16:23:10 Rafael David Tinoco bug task added base-installer (Ubuntu Xenial)
2020-05-08 16:23:10 Rafael David Tinoco bug task added initramfs-tools (Ubuntu Xenial)
2020-05-08 16:23:10 Rafael David Tinoco bug task added live-installer (Ubuntu Xenial)
2020-05-08 16:23:21 Rafael David Tinoco live-installer (Ubuntu): status Confirmed Incomplete
2020-05-08 16:23:23 Rafael David Tinoco live-installer (Ubuntu Bionic): status New Incomplete
2020-05-08 16:23:26 Rafael David Tinoco live-installer (Ubuntu Xenial): status New Won't Fix
2021-10-29 15:51:26 Miriam España Acebal base-installer (Ubuntu Xenial): status New Won't Fix
2021-10-29 15:51:29 Miriam España Acebal initramfs-tools (Ubuntu Xenial): status New Won't Fix
2021-10-29 16:30:05 Miriam España Acebal base-installer (Ubuntu Bionic): status New Incomplete
2021-10-29 16:30:08 Miriam España Acebal initramfs-tools (Ubuntu Bionic): status New Incomplete
2021-10-29 16:30:12 Miriam España Acebal removed subscriber Ubuntu Server
2021-12-29 04:17:16 Launchpad Janitor base-installer (Ubuntu Bionic): status Incomplete Expired
2021-12-29 04:17:17 Launchpad Janitor live-installer (Ubuntu): status Incomplete Expired
2021-12-29 04:17:18 Launchpad Janitor live-installer (Ubuntu Bionic): status Incomplete Expired
2021-12-29 04:17:20 Launchpad Janitor initramfs-tools (Ubuntu Bionic): status Incomplete Expired