Activity log for bug #518582

Date Who What changed Old value New value Message
2010-02-07 22:26:21 meierfra bug added bug
2010-02-28 04:33:09 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type" but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns: offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem] UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. See http://ubuntuforums.org/showthread.php?t=1397193 My diagnosis: Minix uses the "magic number" 6824 at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. (The number of free inodes is essentially the number of files you are still able to create on the file system) 9320 in little endian decoding is "6824" If the number of free inodes happens to be 9320 plus a multiple of 65536, then the ext filesystem will write 6824 to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 6824 at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. (The number of free inodes is essentially the number of files you are still able to create on the file system) 9320 in little endian decoding is "6824" If the number of free inodes happens to be 9320 plus a multiple of 65536, then the ext filesystem will write 6824 to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext.
2010-02-28 04:42:51 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 6824 at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. (The number of free inodes is essentially the number of files you are still able to create on the file system) 9320 in little endian decoding is "6824" If the number of free inodes happens to be 9320 plus a multiple of 65536, then the ext filesystem will write 6824 to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. (The number of free inodes is essentially the number of files you are still able to create on the file system) In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot.
2010-02-28 04:44:04 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. (The number of free inodes is essentially the number of files you are still able to create on the file system) In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot.
2010-02-28 04:45:56 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)"  After installing util-linux-ng-2.17 from source: 5. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot.
2010-02-28 04:49:19 meierfra summary mount ext fileystem fails, booting fails, blkid produces no putput mount ext fileystem fails, booting fails, blkid produces no output
2010-02-28 04:49:41 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Cure: Boot from the Ubuntu LiveCD and create a file on the affected partition: sudo mount /dev/sda1 /mnt sudo touch /mnt/empty_file
2010-02-28 04:52:15 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1" /mnt gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Cure: Boot from the Ubuntu LiveCD and create a file on the affected partition: sudo mount /dev/sda1 /mnt sudo touch /mnt/empty_file Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1 /mnt" gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Cure: Boot from the Ubuntu LiveCD and create a file on the affected partition: sudo mount /dev/sda1 /mnt sudo touch /mnt/empty_file
2010-03-07 14:00:42 meierfra description Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails. 2. "mount /dev/sda1 /mnt" gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. blkid /dev/sda1 returns nothing 4. blkid -p /dev/sda1 gives "ambivalent result (probably more filesystems on the device)" 5. hexdump -s 0x410 -n 2 /dev/sda1 returns on of the four numbers hexadecimals 137f, 138f, 2468,2478,  After installing util-linux-ng-2.17 from source: 6. wipefs /dev/sda1 returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                      UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been six of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four umbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So many programs will gets confused and don't know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Cure: Boot from the Ubuntu LiveCD and create a file on the affected partition: sudo mount /dev/sda1 /mnt sudo touch /mnt/empty_file Symptoms: (Ubuntu 9.10 on an ext4 partition /dev/sda1) 1. Booting fails with error message: Gave up waiting for root device. common problems -Boot args(cat/proc/cmdline) -check rootdelay=(did the system wait long enough?) -check root=(did the system wait for the right device?) Missing modules(cat/proc/modules; IS/dev) Alert!/dev/disk/by-uuid/d3bb8e26-9798-49 ce-bc57-afb6ca6za7ba does not exist. Drop to a shell! 2. "mount /dev/sda1 /mnt" gives "mount: you must specify the filesystem type"     but "mount -t ext4 /dev/sda1" is successful 3. "blkid /dev/sda1" returns nothing 4. "blkid -p /dev/sda1" gives "ambivalent result (probably more filesystems on the device)" 5. "hexdump -s 0x410 -n 2 /dev/sda1" returns on of the four numbers hexadecimals 137f, 138f, 2468,2478, 6. "sudo BLKID_DEBUG=0xffff blkid -p /dev/sda1 | grep "minix: magic" returns "ambivalent result (probably more filesystems on the device)" minix: magic sboff=16, kboff=1 7. After installing util-linux-ng-2.17 from source: "wipefs /dev/sda1" returns:     offset type ---------------------------------------------------------------- 0x410 minix [filesystem] 0x438 ext4 [filesystem]                       UUID: d3bb8e26-9798-49ce-bc57-afb6ca62a7ba I was able to cure the problem by creating a file on "/dev/sda1" and whereby changing the number of free inodes. There have been seven of these case in the Ubuntu forums by now: http://ubuntuforums.org/showthread.php?t=1397193 http://ubuntuforums.org/showthread.php?t=1414662 http://ubuntuforums.org/showthread.php?t=1068895 http://ubuntuforums.org/showthread.php?t=1422558 My diagnosis: Minix uses the "magic number" 137f, 138f, 2468,2478, at the location 0x410 to mark a Minix file system. 0x410 is also the location any ext filesystem uses to record the number of free inodes. In decimals those four numbers are 4991,5007,9320,9336 If the number of free inodes happens to be one of those four numbers plus a multiple of 65536, then the ext filesystem will write one of the four Minix magic numbers to the 0x410 location. So blkid gets confused and does not know whether the files system is Minix or Ext. In particular, if this happens on the root partition, Ubuntu will no longer boot. Cure: Boot from the Ubuntu LiveCD and create a file on the affected partition: sudo mount /dev/sda1 /mnt sudo touch /mnt/empty_file This solution works for an ext4 filesystem. But does not work for ext2. For ext2 one needs to replace the UUID in fstab and grub.cfg by the device name. See https://sourceforge.net/apps/mediawiki/bootinfoscript/index.php?title=Boot_Problems:minix for more details.
2010-03-07 15:47:32 meierfra affects ubuntu util-linux (Ubuntu)
2010-03-21 17:17:41 Stanislaw Pitucha nominated for series Ubuntu Lucid
2010-03-21 17:50:17 Kees Cook bug task added util-linux (Ubuntu Lucid)
2010-03-21 17:50:35 Kees Cook util-linux (Ubuntu Lucid): milestone ubuntu-10.04-beta-2
2010-03-21 17:50:40 Kees Cook util-linux (Ubuntu Lucid): importance Undecided High
2010-03-21 22:15:14 Kees Cook attachment added minix-possible http://launchpadlibrarian.net/41556914/minix-possible
2010-03-21 22:15:33 Kees Cook util-linux (Ubuntu Lucid): status New Confirmed
2010-03-22 18:19:15 Kees Cook util-linux (Ubuntu Lucid): status Confirmed Fix Released
2010-03-22 18:19:19 Kees Cook util-linux (Ubuntu Lucid): assignee Kees Cook (kees)
2010-03-23 21:15:54 morryis nominated for series Ubuntu Jaunty
2010-03-23 21:17:29 morryis nominated for series Ubuntu Karmic
2010-05-25 03:23:18 haskinsa99@yahoo.com util-linux (Ubuntu): status Fix Released Confirmed
2010-05-25 10:26:07 Pete Graner util-linux (Ubuntu): status Confirmed Fix Released
2011-04-12 00:53:32 NuWave bug added subscriber NuWave
2012-01-22 04:57:19 David A. Cobb bug added subscriber David A. Cobb