Re: [Bug 50437] Re: Resume from hibernation may fail because swap partition UUID does not match /etc/initramfs-tools/conf.d/resume

2013-09-11 Thread maximilian attems
On Wed, Sep 11, 2013 at 01:38:26AM -, Martin Pitt wrote:
  A bit nasty is the upgrade scenario, but it should not write into
 /etc, as it would just write into the initramfs.
 
 I agree. I think *if* /etc/initramfs-tools/conf.d/resume exists and is
 valid, it should copy that into the initramfs.

Most of the times initramfs-tools generated that crap config file.

It might be easier to just forget about it, but you have a point
that in the meantime it might be admin set and hence should be checked.

 otherwise dynamically create one based on the existing swap partition(s)
 using the ubiquity logic.

No idea what ubiquity does and what logic you point too, afaik that
config file was allways in Debian written by initramfs-tools preinst.

Could you point to the relevant ubiquity code, please.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/50437

Title:
  Resume from hibernation may fail because swap partition UUID does not
  match /etc/initramfs-tools/conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/50437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 50437] Re: Resume from hibernation may fail because swap partition UUID does not match /etc/initramfs-tools/conf.d/resume

2013-09-11 Thread maximilian attems
On Wed, Sep 11, 2013 at 01:38:26AM -, Martin Pitt wrote:
 
 I agree. I think *if* /etc/initramfs-tools/conf.d/resume exists and is
 valid, it should copy that into the initramfs,

ok on second thought this is easy and right, fixed in initramfs-tools.git
maks/swap branch with 3 commits (might land soonish in master)

 otherwise dynamically create one based on the existing swap partition(s)
 using the ubiquity logic.

this I still don't know? (:

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/50437

Title:
  Resume from hibernation may fail because swap partition UUID does not
  match /etc/initramfs-tools/conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/50437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 50437] Re: Resume from hibernation may fail because swap partition UUID does not match /etc/initramfs-tools/conf.d/resume

2013-09-11 Thread maximilian attems
Hey Martin,

On Wed, Sep 11, 2013 at 11:08:14AM -, Martin Pitt wrote:
 
 Cheers, these look nice. That will avoid the pointless 5 s waiting
 during boot.

Thanks for the review, will add this info!

 The only issue now is that you can't choose to entirely
 disable hibernation by creating an empty file or having no file at
 all; not sure how much of an issue that is. Perhaps if the file exists
 and is empty that shold indicate disable resume, and if the file
 doesn't exist, automatic resume?

There is the bootparam noresume, if you add that to your bootloader
command line no resume is attempted. It overrides any RESUME setting.

I'd assume empty RESUME files could only be created by mistake,
whereas the noresume params exists since looong and is also the
corresponding linux parameter (when no initramfs is at play).

Best,

-- 
maks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/50437

Title:
  Resume from hibernation may fail because swap partition UUID does not
  match /etc/initramfs-tools/conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/50437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 50437] Re: Resume from hibernation may fail because swap partition UUID does not match /etc/initramfs-tools/conf.d/resume

2013-09-11 Thread maximilian attems
On Wed, Sep 11, 2013 at 10:52:28AM -, Dmitrijs Ledkovs wrote:
 As ubiquity is using live-cd / preinstalled, initramfs-tools preinst is not 
 run.
 Ubiquity simply parses /proc/swaps, finds largest partition and writes out 
 /etc/initramfs-tools/conf.d/resume.
 http://bazaar.launchpad.net/~ubuntu-installer/ubiquity/trunk/view/head:/scripts/plugininstall.py#L835

Thank you for this valuable input, refixed to follow the logic of the
largest partition! (Still hiding in maks/swap but expect it to hit master
by tommorrow)
 
 Thus in install/upgrade/reinstall cases with ubiquity it should all just work 
 correctly. But indeed if one manually modifies/recreates swap partition one 
 must at the moment do the following:
 1) adjust /etc/fstab with new UUID
 2) adjust /etc/initramfs-tools/conf.d/resume with new UUID
 3) update-initramfs -k all -u

With fixed initramfs-tools 2) is no longer necessary and 3) will happen
anyway sooner or later in the sense that newer initramfs get generated
and updated (of course not all of them :).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/50437

Title:
  Resume from hibernation may fail because swap partition UUID does not
  match /etc/initramfs-tools/conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/50437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 50437] Re: Resume from hibernation may fail because swap partition UUID does not match /etc/initramfs-tools/conf.d/resume

2013-09-10 Thread maximilian attems
On Mon, Sep 09, 2013 at 09:09:17PM -, Martin Pitt wrote:
 Would it not be better if we wrote/updated conf.d/resume during update-
 initramfs, so that it adjusts the initramfs' UUID even if the admin
 changes the swap partitions? In that script we could also remove
 conf.d/resume if we detect cryptswap, as resuming from hibernation won't
 work with cryptswap anyway AFAIK?

It should just be a hook so that update-initramfs calls it everytime
and not a postinstall script that runs only once on install.
Will propose hook script in next 24h.

A bit nasty is the upgrade scenario, but it should not write into /etc,
as it would just write into the initramfs.

Best,

-- 
maks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/50437

Title:
  Resume from hibernation may fail because swap partition UUID does not
  match /etc/initramfs-tools/conf.d/resume

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/50437/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 808616] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-13 Thread maximilian attems
Fixed in casper (1.248.1)

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808616

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/808616/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 808364] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-13 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/808364

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/808364/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 319893] Re: regenerates initrds for kernels pending removal

2011-07-13 Thread maximilian attems
update-initramfs is triggered these days, so should only run at the end and not 
multiple times anymore.
Thank you for the report.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/319893

Title:
  regenerates initrds for kernels pending removal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/319893/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 809898] Re: package linux-image-2.6.38-10-generic 2.6.38-10.46 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2011-07-13 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-10-generic
E: /usr/share/initramfs-tools/hooks/casper failed with return 1.


Try to reinstall casper package too, it is the one the error above is from.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/809898

Title:
  package linux-image-2.6.38-10-generic 2.6.38-10.46 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/809898/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 807777] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-07-10 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/80

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/80/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 807348] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-08 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-8-generic
E: /usr/share/initramfs-tools/hooks/ksplice failed with return 1.

This hook script belongs to ksplice, thus reassigning.
It doesn't say why it failed.


** Package changed: initramfs-tools (Ubuntu) = ksplice (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/807348

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ksplice/+bug/807348/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 807296] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 143

2011-07-08 Thread maximilian attems
[   18.535606] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[   24.333108] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0

Your root fs got remounted ro. It is faulty, care to backup any data on
it and try to run fsck on it.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/807296

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 143

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/807296/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 806222] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-08 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/806222

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/806222/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 776137] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-08 Thread maximilian attems
Thank you for the feedback.

Indeed renaming lvm volume names of root needs adjustment for bootloader
and /etc/fstab.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/776137

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/776137/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 711092] Re: Synaptic instructs me to run `dpgk --configure -a`, but this is what happens when I do:

2011-07-08 Thread maximilian attems
missing logs.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/711092

Title:
  Synaptic instructs me to run `dpgk --configure -a`, but this is what
  happens when I do:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/711092/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 706161] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-08 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/706161

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/706161/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 665790] Re: apparmor initramfs script broken

2011-07-08 Thread maximilian attems
** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/665790

Title:
  apparmor initramfs script broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/665790/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 697569] Re: update-initramfs script stalls frequently on LiveUSB

2011-07-08 Thread maximilian attems
probably hardware to old for the hardware to run as live system.
Considered installing on a hard disc to lower mem troubles?

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/697569

Title:
  update-initramfs script stalls frequently on LiveUSB

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/697569/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 570243] Re: initramfs-tools and casper should use shell syntax checking in check target

2011-07-08 Thread maximilian attems
we do so in initramfs-tools for boot and hook scripts. This is fixed
since 0.97 and thus incorporated since Maverick in Ubuntu.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/570243

Title:
  initramfs-tools and casper should use shell syntax checking in check
  target

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/570243/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 201486] Re: add boot argument to allow legacy change_root removal

2011-07-08 Thread maximilian attems
initrd-tools is long gone, thus closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/201486

Title:
  add boot argument to allow legacy change_root removal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/201486/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 104838] Re: Kernel xen and LVM

2011-07-08 Thread maximilian attems
Policy says to only generate for the newest linux image, thus closing.

If you with to regenerate all by default you can say so in /etc
/initramfs-tools/update-initramfs.conf.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/104838

Title:
  Kernel xen and LVM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/104838/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 292534] Re: missing initrd entries in /boot/grub/menu.lst

2011-07-08 Thread maximilian attems
** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/292534

Title:
  missing initrd entries in /boot/grub/menu.lst

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/292534/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 283272] Re: Intrepid Beta Fails to Boot after Install on Sony Vaio

2011-07-08 Thread maximilian attems
** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/283272

Title:
  Intrepid Beta Fails to Boot after Install on Sony Vaio

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/283272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 695508] Re: ipconfig fails sporadically with e1000

2011-07-07 Thread maximilian attems
Thanks for the confirmation that Maverick works.

** Changed in: klibc (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/695508

Title:
  ipconfig fails sporadically with e1000

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/695508/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 263492] Re: Usplash crashes, then cannot send problem report

2011-07-07 Thread maximilian attems
usplash is gone, closing.

** Changed in: klibc (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/263492

Title:
  Usplash crashes, then cannot send problem report

To manage notifications about this bug go to:
https://bugs.launchpad.net/usplash/+bug/263492/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 761873] Re: package klibc-utils 1.5.20-1ubuntu4 failed to install/upgrade: le sous-processus dpkg-deb --fsys-tarfile a retourné une erreur de sortie d'état 2

2011-07-07 Thread maximilian attems
is that reproducible on that box? (did it happen more than once)

** Changed in: klibc (Ubuntu)
   Status: New = Invalid

** Changed in: klibc (Ubuntu)
   Status: Invalid = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/761873

Title:
  package klibc-utils 1.5.20-1ubuntu4 failed to install/upgrade: le
  sous-processus dpkg-deb --fsys-tarfile a retourné une erreur de sortie
  d'état 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/761873/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 617426] Re: error message and stopping booting; Kernel panic - not syncing: Attempted to kill init!

2011-07-07 Thread maximilian attems
*** This bug is a duplicate of bug 31762 ***
https://bugs.launchpad.net/bugs/31762

** This bug has been marked a duplicate of bug 31762
   run-init's nuke_dir function needs to be properly recursive

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/617426

Title:
  error message and stopping booting; Kernel panic - not syncing:
  Attempted to kill init!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/617426/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778461] Re: package klibc-utils 1.5.20-1 failed to install/upgrade: ErrorMessage: le paquet klibc-utils est déjà installé et configuré

2011-07-07 Thread maximilian attems
Is the root partition full?

is the error reproducible?

** Changed in: klibc (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778461

Title:
  package klibc-utils 1.5.20-1 failed to install/upgrade: ErrorMessage:
  le paquet klibc-utils est déjà installé et configuré

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/778461/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 804540] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-06 Thread maximilian attems
[  143.233595] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro,commit=0
[  160.851229] ata3.00: exception Emask 0x2 SAct 0x0 SErr 0x3000400 action 0x6
[  160.851235] ata3.00: BMDMA stat 0x26
[  160.851239] ata3.00: SError: { Proto TrStaTrns UnrecFIS }
[  160.851243] ata3.00: failed command: READ DMA

This is typical for a dying disk, better backup the data and reinstall
on newer fixed one.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/804540

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/804540/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 806009] Re: package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 137

2011-07-05 Thread maximilian attems
update-initramfs: deferring update (trigger activated)
Killed


too many process running, not enough ram on that box.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/806009

Title:
  package initramfs-tools 0.98.8ubuntu3.1 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 137

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/806009/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805973] Re: package initramfs-tools 0.98.1ubuntu6 [modified: usr/sbin/update-initramfs] failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
cp: impossibile fare stat di `/vmlinuz': Nessun file o directory

casper trying to do things it can't.

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805973

Title:
  package initramfs-tools 0.98.1ubuntu6 [modified: usr/sbin/update-
  initramfs] failed to install/upgrade: subprocess installed post-
  installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/805973/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805283] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805283

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/805283/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805268] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
[ 1017.778464] ata1.00: failed command: READ DMA
[ 1017.778488] ata1.00: cmd c8/00:18:98:e2:84/00:00:00:00:00/e2 tag 0 dma 12288 
in
[ 1017.778492]  res 51/40:05:ab:e2:84/00:00:00:00:00/e2 Emask 0x9 
(media error)

this harddisc is dying, back up the data and reinstall on newer.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805268

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/805268/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 805001] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/805001

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/805001/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 804899] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/804899

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/804899/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 804802] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/804802

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/804802/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 803969] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 127

2011-07-05 Thread maximilian attems
Not sure what is going wrong here.

Could you please post the output of  (please upload mkinitramfs.log)
sudo  sh -x /usr/sbin/mkinitramfs -o /tmp/foo  mkinitramfs.log 21

and
sudo sh -x /usr/sbin/update-initramfs -u  update-initramfs.log 21

Thank you

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/803969

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  127

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/803969/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 607000] Re: package language-pack-gnome-hr 1:10.04 20100422 failed to install/upgrade: Package is in a very bad inconsistent state - you should reinstall it before attempting a removal.

2011-07-05 Thread maximilian attems
no initramfs-tools failure to be seen

** Package changed: initramfs-tools (Ubuntu) = language-pack-gnome-hr
(Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/607000

Title:
  package language-pack-gnome-hr 1:10.04 20100422 failed to
  install/upgrade: Package is in a very bad inconsistent state - you
  should  reinstall it before attempting a removal.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/language-pack-gnome-hr/+bug/607000/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 598349] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
[   22.101975] Buffer I/O error on device sr0, logical block 0
[   22.101975] Buffer I/O error on device sr0, logical block 1

Either this disk is garbage or the cd drive. hard to say from this sunny happy 
position.
Try first with another disk, if trouble persists exchange cd drive.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/598349

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/598349/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 569287] Re: package initramfs-tools 0.92bubuntu76 failed to install/upgrade: exit status 1 - update-initramfs / gzip: /initrd.img.gz: No such file or directory

2011-07-05 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/569287

Title:
  package initramfs-tools 0.92bubuntu76 failed to install/upgrade: exit
  status 1 - update-initramfs / gzip: /initrd.img.gz: No such file or
  directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/569287/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 523647] Re: Can't install Ubunto Studio 9.10 on Parallels 5 on Snow Leopard

2011-07-05 Thread maximilian attems
alternate iso nowadays uses correct UUID every where thus this bug
should be fixed, marking as such.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/523647

Title:
  Can't install Ubunto Studio 9.10 on Parallels 5  on Snow Leopard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/523647/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 520004] Re: Fail to Upgrade to Lucid due initramfs-tools broken package

2011-07-05 Thread maximilian attems
The initramfs-tools upgrade bug should be fixed in recent initramfs-
tools  0.92, so starting from maverick, marking as such.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/520004

Title:
  Fail to Upgrade to Lucid due initramfs-tools broken package

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/520004/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 493354] Re: Unable to mount root file system with a kernel higher than 2.6.31-4

2011-07-05 Thread maximilian attems
2.6.32 supports ext4 bugs should be fixed in between.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

** Package changed: initramfs-tools (Ubuntu) = linux (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/493354

Title:
  Unable to mount root file system with a kernel higher than 2.6.31-4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/493354/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 493354] Re: Unable to mount root file system with a kernel higher than 2.6.31-4

2011-07-05 Thread maximilian attems
please post working and not working dmesg.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/493354

Title:
  Unable to mount root file system with a kernel higher than 2.6.31-4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/493354/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 806022] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/806022

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/806022/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 727328] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-07-05 Thread maximilian attems
cp: not writing through dangling symlink `/etc/initramfs-tools/modules'

mkinitramfs of initramfs-tools doesn't try to copy that file thus
reassigning.

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/727328

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/727328/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 726154] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-07-05 Thread maximilian attems
** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726154

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/726154/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 441722] Re: initramfs-tools updated 03Oct2009 gives 20+ segmentation faults

2011-07-05 Thread maximilian attems
Such segmentation fault can happen when RAM is faulty or too less RAM present 
on the box.
Hard to say without the proper logs. Anyway this is an hardware issue of that 
particular box, thus closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/441722

Title:
  initramfs-tools updated 03Oct2009 gives 20+ segmentation faults

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/441722/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 456777] Re: Ubuntu 9.10 fails to assign uuid for root partition during boot

2011-07-05 Thread maximilian attems
An old bug on the udev boot hook, most presumably fixed in between.

** Package changed: initramfs-tools (Ubuntu) = udev (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/456777

Title:
  Ubuntu 9.10 fails to assign uuid for root partition during boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/udev/+bug/456777/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 433723] Re: document USPLASH option in initramfs.conf

2011-07-05 Thread maximilian attems
usplash is gone for good in newer Ubuntu. it uses plymouth. (According
documentation bug already exists so no point in reassinging, thus
closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/433723

Title:
  document USPLASH option in initramfs.conf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/433723/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 75616] Re: support suspend2 kernels in initramfs

2011-07-05 Thread maximilian attems
Please ship that hook together with the ui of suspend2.

initramfs-tools is a generic initramfs generator and works out of the box for 
generic linux images using vanilla suspend mechanism.
thank you for your work.

** Package changed: initramfs-tools (Ubuntu) = suspend2-userui (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/75616

Title:
  support suspend2 kernels in initramfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/suspend2-userui/+bug/75616/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 47768] Re: Mount Root Files System Failed

2011-07-05 Thread maximilian attems
** Changed in: initramfs-tools (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: initramfs-tools
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/47768

Title:
  Mount Root Files System Failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/initramfs-tools/+bug/47768/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 803347] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-29 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462


gzip: stdout: No space left on device

E: mkinitramfs failure cpio 141 gzip 1


try to use apt-get clean

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/803347

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/803347/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 803347] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-29 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

Please ask for support in the Ubuntu forum not in a bug report.

Separate /boot is anachronistic, even more with the mini sizes you are
discussing. why do you bother at all!?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/803347

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/803347/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 802480] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2011-06-28 Thread maximilian attems
Generating u-boot configuration from /boot/boot.script... done.
umount: /tmp/tmp.jFUISZoqC2: device is busy.
(In some cases useful info about processes that use
 the device is found by lsof(8) or fuser(1))

seems to be an easy to hit error.

** Package changed: initramfs-tools (Ubuntu) = u-boot (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/802480

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: il
  sottoprocesso vecchio script di post-installation ha restituito lo
  stato di errore 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/802480/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 788902] Re: package linux-image-2.6.32-31-generic 2.6.32-31.61 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2011-06-28 Thread maximilian attems
Running postinst hook script /usr/sbin/update-grub.

/etc/default/grub: 28:

This seems to be a grub error. Considering the garbage grub shows,
you have to regenerate the grub config before reboot:
update-grub

grub maintainer will proabably need more hints on what is broken on that
particular box.

** Package changed: initramfs-tools (Ubuntu) = grub (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788902

Title:
  package linux-image-2.6.32-31-generic 2.6.32-31.61 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 127

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/grub/+bug/788902/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 785007] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-28 Thread maximilian attems
cp: cannot stat `/boot/vmlinuz': No such file or directory

initramfs-tools doesn't touch the linux kernel itself, this looks like
an casper error.

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/785007

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/785007/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 778462] Re: package initramfs-tools-bin 0.98.1ubuntu6 failed to install/upgrade: ErrorMessage: le paquet initramfs-tools-bin est déjà installé et configuré

2011-06-28 Thread maximilian attems
No update-initramfs error to be seen.

Considering how broken your Ubuntu installation is, I'd recommend to
reinstall or alternatively to ask your friendly Debian/Ubuntu guru next
doar to fix it.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/778462

Title:
  package initramfs-tools-bin 0.98.1ubuntu6 failed to install/upgrade:
  ErrorMessage: le paquet initramfs-tools-bin est déjà installé et
  configuré

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/778462/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 747095] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: sub-processo script post-installation instalado retornou estado de saída de erro 1

2011-06-28 Thread maximilian attems
[ 7499.159550] gzip[28462]: segfault at 2 ip 0002 sp bfbf3fd0 error
4 in libc-2.11.1.so[11+153000]

your box doesn'T have either enough RAM or may have bad RAM.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/747095

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade: sub-
  processo script post-installation instalado retornou estado de saída
  de erro 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/747095/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 746824] Re: package flashplugin-nonfree 9.0.159.0ubuntu1~hardy1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 2

2011-06-28 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = flashplugin-nonfree
(Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/746824

Title:
  package flashplugin-nonfree 9.0.159.0ubuntu1~hardy1 failed to
  install/upgrade: subprocess installed pre-removal script returned
  error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/flashplugin-nonfree/+bug/746824/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 744828] Re: package linux-image-2.6.38-7-generic-pae 2.6.38-7.39 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 2

2011-06-28 Thread maximilian attems
This dependency problem should be fixed since.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/744828

Title:
  package linux-image-2.6.38-7-generic-pae 2.6.38-7.39 failed to
  install/upgrade: подпроцесс установлен сценарий post-installation
  возвратил код ошибки 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/744828/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 737605] Re: package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-28 Thread maximilian attems
cp: cannot stat `/boot/vmlinuz': No such file or directory

casper error, initramfs-tools doesn't touch the linux kernel.

** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/737605

Title:
  package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/737605/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 801935] Re: package linux-image-2.6.32-25-generic 2.6.32-25.45 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2011-06-27 Thread maximilian attems
[ 3084.965304] ata1.00: failed command: READ DMA
[ 3084.965326] ata1.00: cmd c8/00:80:57:d3:cc/00:00:00:00:00/e0 tag 0 dma 65536 
in
[ 3084.965331]  res 51/40:04:d3:d3:cc/00:00:00:00:00/e0 Emask 0x9 
(media error)
[ 3084.965342] ata1.00: status: { DRDY ERR }
[ 3084.965349] ata1.00: error: { UNC }

Aboves messages show a crash while reading your cd. So either the driver
or the cd is faulty.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/801935

Title:
  package linux-image-2.6.32-25-generic 2.6.32-25.45 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/801935/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 801258] Re: package initramfs-tools 0.92bubuntu77 [modified: usr/sbin/update-initramfs] failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/801258

Title:
  package initramfs-tools 0.92bubuntu77 [modified: usr/sbin/update-
  initramfs] failed to install/upgrade: subprocess installed post-
  installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/801258/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 801669] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/801669

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/801669/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 800913] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
missing logs.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/800913

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/800913/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 800609] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: installed post-installation script alfolyamat 1 hibakóddal kilépett

2011-06-27 Thread maximilian attems
[ 7437.679496] ata4.00: Ata error. fis:0x21
[ 7437.679500] ata4.00: failed command: READ FPDMA QUEUED
[ 7437.679505] ata4.00: cmd 60/50:00:78:22:04/00:00:33:00:00/40 tag 0 ncq 40960 
in
[ 7437.679506]  res 41/40:04:78:22:04/40:00:33:00:00/40 Emask 0x9 
(media error)
[ 7437.679509] ata4.00: status: { DRDY ERR }
[ 7437.679511] ata4.00: error: { UNC }

Either your driver or cd is faulty.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/800609

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  installed post-installation script alfolyamat 1 hibakóddal kilépett

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/800609/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 789722] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Generating u-boot configuration from /boot/boot.script... done.
umount: /tmp/tmp.Ld0lDOIFIG: device is busy.
(In some cases useful info about processes that use
 the device is found by lsof(8) or fuser(1))

u-boot with an unmount error.

** Package changed: initramfs-tools (Ubuntu) = u-boot (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/789722

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/789722/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 789677] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Generating u-boot configuration from /boot/boot.script... done.
umount: /tmp/tmp.h19DQBY4CR: device is busy.
(In some cases useful info about processes that use
 the device is found by lsof(8) or fuser(1))

same u-boot script error.

** Package changed: initramfs-tools (Ubuntu) = u-boot (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/789677

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/789677/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 788470] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Generating u-boot configuration from /boot/boot.script... done.
umount: /tmp/tmp.0rtqavc0ck: device is busy.
(In some cases useful info about processes that use
 the device is found by lsof(8) or fuser(1))


** Package changed: initramfs-tools (Ubuntu) = u-boot (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/788470

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/788470/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 780290] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Indeed if you don't use lilo, it shouldn't be installed on your box.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/780290

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/780290/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 780162] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
removing lilo fixed it, thus closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/780162

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/780162/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 779410] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Generating u-boot configuration from /boot/boot.script... done.
umount: /tmp/tmp.RcxHGDubVu: device is busy.
(In some cases useful info about processes that use
 the device is found by lsof(8) or fuser(1))


** Package changed: initramfs-tools (Ubuntu) = u-boot (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/779410

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/u-boot/+bug/779410/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 775344] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

This is a full root / partition (No /boot but no place for initramfs).

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/775344

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/775344/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 774269] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
If you don't use lilo, but grub for booting deinstall it. That should
fix your error.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/774269

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/774269/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 773938] Re: initramfs-tools安装失败

2011-06-27 Thread maximilian attems
Not sure what this bug report is about. Care to repost your trouble?

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/773938

Title:
  initramfs-tools安装失败

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/773938/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 768655] Re: package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
mkinitramfs: missing loop root /dev/loop0 /sys entry
mkinitramfs: workaround is MODULES=most
mkinitramfs: Error please report the bug

This is fixed in a newer initramfs-tools.

Currently you should be using MODULES=most as indicated in the logs. See where 
it is defined
egrep -r MODULES /etc/initramfs-tools/
and edit with sudo gedit filepath the corresponding files to have them set on 
MODULES=most and not dep.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/768655

Title:
  package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script returned
  error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/768655/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 767473] Re: package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade: el subproceso script post-installation instalado devolvió el código de salida de error 127

2011-06-27 Thread maximilian attems
.: 17: Can't open /etc/default/console-setup


Console-setup needs to be more resistent againgst missing config file.

** Package changed: initramfs-tools (Ubuntu) = console-setup (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/767473

Title:
  package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade: el
  subproceso script post-installation instalado devolvió el código de
  salida de error 127

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/console-setup/+bug/767473/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 762528] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: el subproceso instalado el script post-installation devolvió el código de salida de error 137

2011-06-27 Thread maximilian attems
[ 1146.289078] Out of memory: Kill process 18955 (lzma) score 329 or sacrifice 
child
[ 1146.289084] Killed process 18955 (lzma) total-vm:381472kB, 
anon-rss:320972kB, file-rss:856kB

Your box has not had enough memory to generate the initramfs. See if you
can stop uneeded services or add RAM.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/762528

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: el
  subproceso instalado el script post-installation devolvió el código de
  salida de error 137

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/762528/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 744247] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/module-files.d/libpango1.0-0.modules': No 
such file or directory
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/modules/pango-basic-fc.so': No such file 
or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

A plymouth dependency bug, most likely fixed in between.


** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/744247

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/744247/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 743510] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
Same plymouth libpango dep problem.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/743510

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/743510/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 743102] Re: package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-7-generic-pae
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/module-files.d/libpango1.0-0.modules': No 
such file or directory
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/modules/pango-basic-fc.so': No such file 
or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

Most likely fixed in between with newer plymouth.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/743102

Title:
  package initramfs-tools 0.98.8ubuntu3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/743102/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 742990] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/module-files.d/libpango1.0-0.modules': No 
such file or directory
cp: cannot stat 
`/usr/lib/i386-linux-gnu/pango/1.6.0/modules/pango-basic-fc.so': No such file 
or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

Most likely fixed in newer plymouth.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742990

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/742990/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 742405] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: ErrorMessage: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-7-generic

cp: невозможно выполнить stat для «/usr/lib/pango/1.6.0/module-
files.d/libpango1.0-0.modules»: Нет такого файла или каталога

cp: невозможно выполнить stat для «/usr/lib/pango/1.6.0/modules/pango-
basic-fc.so»: Нет такого файла или каталога

E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.


Very likely to be fixed in newer plymouth.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742405

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  ErrorMessage: подпроцесс установлен сценарий post-installation
  возвратил код ошибки 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/742405/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 742227] Re: package linux-image-2.6.38-7-generic 2.6.38-7.38 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-7-generic
cp: cannot stat 
`/usr/lib/x86_64-linux-gnu/pango/1.6.0/module-files.d/libpango1.0-0.modules': 
No such file or directory
cp: cannot stat 
`/usr/lib/x86_64-linux-gnu/pango/1.6.0/modules/pango-basic-fc.so': No such file 
or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

Most likely fixed in newer plymouth (Not seen in a while that report).

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742227

Title:
  package linux-image-2.6.38-7-generic 2.6.38-7.38 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/742227/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 742207] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-5-generic
cp: cannot stat 
`/usr/lib/x86_64-linux-gnu/pango/1.6.0/module-files.d/libpango1.0-0.modules': 
No such file or directory
cp: cannot stat 
`/usr/lib/x86_64-linux-gnu/pango/1.6.0/modules/pango-basic-fc.so': No such file 
or directory
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.
u
Likely to be fixed in newer plymouth.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/742207

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/742207/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 741829] Re: package plymouth 0.8.2-2ubuntu19 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
*** This bug is a duplicate of bug 691985 ***
https://bugs.launchpad.net/bugs/691985

** This bug has been marked a duplicate of bug 691985
   lzma: Encoder error: -2147467259 is too vague and causes unhelpful 
apport-package reports

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/741829

Title:
  package plymouth 0.8.2-2ubuntu19 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/741829/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 741369] Re: package linux-image-2.6.38-7-generic 2.6.38-7.38 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 2 zurück

2011-06-27 Thread maximilian attems
cp: Aufruf von stat für 
„/usr/lib/pango/1.6.0/module-files.d/libpango1.0-0.modules“ nicht möglich: 
Datei oder Verzeichnis nicht gefunden
cp: Aufruf von stat für „/usr/lib/pango/1.6.0/modules/pango-basic-fc.so“ nicht 
möglich: Datei oder Verzeichnis nicht gefunden
E: /usr/share/initramfs-tools/hooks/plymouth failed with return 1.

Most likely fixed in newer plymouth.

** Package changed: initramfs-tools (Ubuntu) = plymouth (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/741369

Title:
  package linux-image-2.6.38-7-generic 2.6.38-7.38 failed to
  install/upgrade: Unterprozess installiertes post-installation-Skript
  gab den Fehlerwert 2 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/741369/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 737981] Re: package rsyslog 4.2.0-2ubuntu8.1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
This seems an upstart bug:

start: Unable to connect to Upstart: Failed to connect to socket
/com/ubuntu/upstart: Connection refused

invoke-rc.d: initscript rsyslog, action restart failed.


** Package changed: initramfs-tools (Ubuntu) = upstart (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/737981

Title:
  package rsyslog 4.2.0-2ubuntu8.1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/737981/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 736761] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
missing logs.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/736761

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/736761/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 734245] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
missing logs.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/734245

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/734245/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 733735] Re: package linux-image-2.6.32-29-generic 2.6.32-29.58 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.32-29-generic
E: /usr/share/initramfs-tools/hooks/iscan failed with return 1.

This has been fixed since, thus closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/733735

Title:
  package linux-image-2.6.32-29-generic 2.6.32-29.58 failed to
  install/upgrade: le sous-processus script post-installation installé a
  retourné une erreur de sortie d'état 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/733735/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 733559] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-06-27 Thread maximilian attems
*** This bug is a duplicate of bug 798462 ***
https://bugs.launchpad.net/bugs/798462

** This bug has been marked a duplicate of bug 798462
   update-manager's free space calculator for /boot seems insufficient

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/733559

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/733559/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 730315] Re: Trying to install Broadcom STA Wireless Drivers while using Ubuntu on USB stick. Peristence @ 508mb

2011-06-27 Thread maximilian attems
** Package changed: initramfs-tools (Ubuntu) = casper (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730315

Title:
  Trying to install Broadcom STA Wireless Drivers while using Ubuntu
  on USB stick. Peristence @ 508mb

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/730315/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 727659] Re: package linux-image-2.6.32-29-generic 2.6.32-29.58 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 2

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.32-29-generic
E: /usr/share/initramfs-tools/hooks/iscan failed with return 1.

This has been fixed since, thus closing.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/727659

Title:
  package linux-image-2.6.32-29-generic 2.6.32-29.58 failed to
  install/upgrade: le sous-processus script post-installation installé a
  retourné une erreur de sortie d'état 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/727659/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 726154] Re: package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-06-27 Thread maximilian attems
update-initramfs: Generating /boot/initrd.img-2.6.38-1-generic
E: /usr/share/initramfs-tools/hooks/fixrtc failed with return 1.

No idea where this hook is from, but as I haven't seen that elsewhere,
one may assume that is fixed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/726154

Title:
  package initramfs-tools 0.98.8ubuntu2 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/726154/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 712794] Re: package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 1 terug

2011-06-27 Thread maximilian attems
missing logs.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/712794

Title:
  package initramfs-tools 0.98.1ubuntu6 failed to install/upgrade:
  subproces installed post-installation script gaf een foutwaarde 1
  terug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/712794/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 709162] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück

2011-06-27 Thread maximilian attems
[ 2441.395045] cpio[6565]: segfault at 69fc ip 001a4e91 sp bfebee24
error 4 in libc-2.11.1.so[135000+153000]

Your box seems to have hardware troubles. Most likely bad RAM.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/709162

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  Unterprozess installiertes post-installation-Skript gab den Fehlerwert
  1 zurück

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/709162/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 703594] Re: crashes when system install driver ATI/AMD VIDEOCARD downloaded

2011-06-27 Thread maximilian attems
No failure in the logs, probably an old apport bug.

** Changed in: initramfs-tools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703594

Title:
  crashes when system install driver ATI/AMD VIDEOCARD downloaded

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/703594/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 703371] Re: package initramfs-tools 0.92bubuntu78 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2011-06-27 Thread maximilian attems
lilo seems in use and failed on call by update-initramfs.

** Package changed: initramfs-tools (Ubuntu) = lilo (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/703371

Title:
  package initramfs-tools 0.92bubuntu78 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lilo/+bug/703371/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   3   4   5   6   7   >