[Bug 56445] Re: Network manager doesn't allow configuration of wireless options
nm-applet calls the /etc/network/*.d scripts, so we can turn off txpower there. copy the attached script to i.e. /etc/network/custom and link to /etc/network/if-pre-up.d/wlan_tx and /etc/network/if-post-down.d/wlan_tx : sudo -s mkdir /etc/network/custom cp wlan_tx /etc/network/custom ln -s /etc/network/custom/wlan_tx /etc/network/if-pre-up.d/wlan_tx ln -s /etc/network/custom/wlan_tx /etc/network/if-post-down.d/wlan_tx exit ** Attachment added: "turn txpower off/on when wlan interface is brought down/up" http://launchpadlibrarian.net/14050849/wlan_tx -- Network manager doesn't allow configuration of wireless options https://bugs.launchpad.net/bugs/56445 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 147226] Re: Keyring prompts for password after sleep
There is a lock option for gnome-power-manager in the gconf database. press: Alt+F2 type and execute: gconf-editor navigate to: /apps/gnome-power-manager/lock untick: gnome_keyring_hibernate and the keyring password will not be asked on wakeup -- Keyring prompts for password after sleep https://bugs.launchpad.net/bugs/147226 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 98955] Re: logd not running
> Bootlogd [...] This is the right tool for the problem "what did that scrolled-away messages say?". No Bootlog is really no big issue. It is just helpful for troubleshooting actual boot problems. When you see a failed message scoll by just place a link to /sbin/sulogin in /etc/rcS.d or /etc/rc2.d shortly after the problematic script, ie. sudo ln -s /sbin/sulogin /etc/rcS.d/S81prob Probably it's wise to take away the 'quiet' and 'splash' kernel parameter the next boot. The link will give you a root shell, then you can use the shift + PgUp to scoll back. -- logd not running https://bugs.launchpad.net/bugs/98955 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 160197] udev can lead to wrong system time
Public bug reported: Binary package hint: upstart-compat-sysv It is common to have /usr as a mountpoint, Ubuntu depends on files on /usr before /etc/rcS.d/S35mountall while booting. This can lead to a misset system clock it the hardware clock is not running at UTC. Ubuntus default sets the hardware clock to local time. It is documented in man rcS that /etc/localtime should not be a symlink to /usr/share/zoneinfo/$region/$file if (1) /usr is not available at boot and (2) the hardware clock is not UTC, because hwclock --hwtosys depends on zoneinfo to get correct timezone and daylightsaving information. While booting /etc/rcS.d/S10udev is run early. /etc/udev/rules.d/85-... files have references to /usr binaries. /etc/udev/rules.d/85-ifupdown now handles network interfaces through ifup, this calls /usr/bin/ntpdate to set the system clock to network time. But /etc/udev/rules.d/85-hwclock tries also to set the system clock from the build in hardware clock. /etc/rcS.d/S11hwclock sets it a third time after udev. In the standard case where /usr is no mountpoint and thus available, this overwrites the ntpdate corrected system time with the hardware time. This is wrong behaviour anyway. But in the case of an unavailable /usr /etc/rcS.d/S11hwclock fails to determine the timezone and assumes hardware clock runs UTC, ending up with a wrong system time. When arriving at /etc/rcS.d/S40networking the interfaces are already up because of udev and thus /etc/network/if- up.d/$scripts are not run again, so ntpdate never corrects the time until maybe networkmanager calls it again. But people with a static network config do not need nm. Workarounds are: (1) to mv /etc/rcs.d/S11hwclock.sh /etc/rcS.d/38hwclock.sh so it is run afer /etc/rcS.d/35mountall or (2) to copy the localtime file from /usr/share/zoneinfo/$region/$file to /etc/localtime. This sets correct timezone and time from the hardware clock at boot. (1) ntpdate could be installed to /bin/ or (2) called through /etc/rc.local This sets network time at boot. The S08hwclockfirst.sh script checks readability of /etc/localtime, S11hwclock.sh just sets the system clock, even if that file is not readable, so it seems to be the purpose of S11hwclock.sh to be run later after mountall. chmod 000 /etc/udev/85-ifupdown also sets network time during boot because /etc/rcS.d/S40networking brings up the interfaces instead. It is still an issue that the hardware clock is not set to system time upon hibernate https://bugs.launchpad.net/ubuntu/+source/acpi- support/+bug/36815, this can cause troubles during daylight saving transitions. So it is fine to set the hardware clock with a daily cron after the system clock has correct network time: sudo sh -c 'echo "#!/bin/sh \n/usr/sbin/ntpdate-debian -b -s 2>/dev/null \n/usr/sbin/invoke-rc.d hwclock.sh restart >/dev/null 2>&1 \ndrift=\$(cut /etc/adjtime -d'\'' '\'' -s -f 1)\ndatestr=\$(cut /etc/adjtime -d'\'' '\'' -s -f 2)\ndate=\$(date [EMAIL PROTECTED])\nmode=\$(tail -n -1 /etc/adjtime)\nlogger -t hwclock -- RTC running at \${mode} synchronized to date: \${date}\; systematic drift \${drift} s/day" > /etc/cron.daily/sethwclock';sudo chmod 755 /etc/cron.daily/sethwclock This sets the correct time from network every day to both clocks. It could also be possible to mount /usr -oro in say S05mountusr and umount /usr again S29umountusr before S30checkfs, but normally early boot should not depend on /usr. Maybe including fsck and mount in udev is an option. ** Affects: upstart (Ubuntu) Importance: Undecided Status: New ** Description changed: Binary package hint: upstart-compat-sysv It is common to have /usr as a mountpoint, Ubuntu depends on files on /usr before /etc/rcS.d/S35mountall while booting. This can lead to a misset system clock it the hardware clock is not running at UTC. Ubuntus default sets the hardware clock to local time. It is documented in man rcS that /etc/localtime should not be a symlink to /usr/share/zoneinfo/$region/$file if (1) /usr is not available at boot and (2) the hardware clock is not UTC, because hwclock --hwtosys depends on zoneinfo to get correct timezone and daylightsaving information. While booting /etc/rcS.d/S10udev is run early. /etc/udev/rules.d/85-... files have references to /usr binaries. /etc/udev/rules.d/85-ifupdown now handles network interfaces through ifup, this calls /usr/bin/ntpdate to set the system clock to network time. But /etc/udev/rules.d/85-hwclock tries also to set the system clock from the build in hardware clock. /etc/rcS.d/S11hwclock sets it a third time after udev. In the standard case where /usr is no mountpoint and thus available, this overwrites the ntpdate corrected system time with the hardware time. This is wrong behaviour anyway. But in the case of an unavailable /usr /etc/rcS.d/S11hwclock fails to determine the timezone and assumes hardware clock runs UTC, ending up with a w
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
Sorry I didn't post here again because I coudn't find older kernels where this didn't happen. I poked a bit in acpi and tried with acpi-call and found out that it is really the ec that gets confused and stops to report values. The ec could be reinitialized by adding or removing the kernel module msi_laptop (which will not load by default). Since I do not use this notebook on battery very often I gave up on this. But recently I saw that we have newer kernels in the repository. The notebook is still on precise and the recent 3.2.0-67 kernel still has this problem but I installed 3.13 linux-generic-lts-trusty some weeks ago and it's fine now. So this was really a kernel bug that confused the embedded controller and its gone now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
As I tested for Bug #1029159 this battery issue was still present using kernel 3.4.0-030400-generic-pae from kernel-ppa/mainline. This machine is the same as in the other report and runs precise now. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
Now I tried http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.5-quantal /linux-image-3.5.0-030500-generic_3.5.0-030500.201207211835_i386.deb and it's still an issue. ** Tags removed: needs-upstream-testing running-unity ** Tags added: kernel-bug-exists-upstream -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok
apport information ** Tags added: apport-collected ** Description changed: With ums (nomodeset kernel parameter) this laptop suspends to ram just fine. However ums seems deprecated nowadays and we don't have direct rendering anymore: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/946677 With the default kms, during resume from suspend I'm getting: [drm:r100_ring_test] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD) [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). afterwards the log and VTs are flooded with [drm:radeon_ib_schedule] *ERROR* radeon: couldn't schedule IB(4). [drm:radeon_cs_ioctl] *ERROR* Failed to schedule IB ! The graphic is frozen but looks intact and the mouse pointer moves. It's possible to change to VTs. From this state, a reboot hangs somewhere down the line shortly after the plymouth splash appears and looks normal. Interestingly this can be rescued by pm-hibernate from the console. After waking up from hibernate the X session continues as if nothing went wrong in between. I tried with 3.4.0-030400-generic-pae from kernel-ppa/mainline, it doesn't flood the logs anymore but the first two errors and the frozen graphic is the same. - Attached is the syslog of a hibernate suspend hibernate cycle and lspci - -vvv before, during and after. + Attached is the syslog of a hibernate suspend hibernate cycle and lspci -vvv before, during and after. + --- + ApportVersion: 2.0.1-0ubuntu11 + Architecture: i386 + DistroRelease: Ubuntu 12.04 + Package: linux (not installed) + Tags: precise + Uname: Linux 3.5.0-030500-generic i686 + UnreportableReason: The running kernel is not an Ubuntu kernel + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248075/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok
Apport refused to sent because of mainline Kernel :) So with 3.5.0-030500-generic from http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.5-quantal/linux-image-3.5.0-030500-generic_3.5.0-030500.201207211835_i386.deb i can still reproduce this. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok
apport information ** Description changed: With ums (nomodeset kernel parameter) this laptop suspends to ram just fine. However ums seems deprecated nowadays and we don't have direct rendering anymore: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/946677 With the default kms, during resume from suspend I'm getting: [drm:r100_ring_test] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD) [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). afterwards the log and VTs are flooded with [drm:radeon_ib_schedule] *ERROR* radeon: couldn't schedule IB(4). [drm:radeon_cs_ioctl] *ERROR* Failed to schedule IB ! The graphic is frozen but looks intact and the mouse pointer moves. It's possible to change to VTs. From this state, a reboot hangs somewhere down the line shortly after the plymouth splash appears and looks normal. Interestingly this can be rescued by pm-hibernate from the console. After waking up from hibernate the X session continues as if nothing went wrong in between. I tried with 3.4.0-030400-generic-pae from kernel-ppa/mainline, it doesn't flood the logs anymore but the first two errors and the frozen graphic is the same. Attached is the syslog of a hibernate suspend hibernate cycle and lspci -vvv before, during and after. --- ApportVersion: 2.0.1-0ubuntu11 Architecture: i386 DistroRelease: Ubuntu 12.04 Package: linux (not installed) Tags: precise Uname: Linux 3.5.0-030500-generic i686 UnreportableReason: The running kernel is not an Ubuntu kernel UpgradeStatus: No upgrade log present (probably fresh install) UserGroups: + --- + AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24. + ApportVersion: 2.0.1-0ubuntu11 + Architecture: i386 + ArecordDevices: + List of CAPTURE Hardware Devices + card 0: SB [HDA ATI SB], device 0: ALC883 Analog [ALC883 Analog] +Subdevices: 1/1 +Subdevice #0: subdevice #0 + AudioDevicesInUse: + USERPID ACCESS COMMAND + /dev/snd/controlC0: xenoson1975 F pulseaudio + Card0.Amixer.info: + Card hw:0 'SB'/'HDA ATI SB at 0xffef8000 irq 16' +Mixer name : 'Realtek ALC883' +Components : 'HDA:10ec0883,1462a422,0012 HDA:11c11040,11c10001,00100200' +Controls : 25 +Simple ctrls : 15 + CurrentDmesg: + Error: command ['sh', '-c', 'dmesg | comm -13 --nocheck-order /var/log/dmesg -'] failed with exit code 1: comm: /var/log/dmesg: Permission denied + dmesg: write failed: Broken pipe + DistroRelease: Ubuntu 12.04 + Lsusb: + Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub + Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub + Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub + Bus 002 Device 002: ID 04d9:0499 Holtek Semiconductor, Inc. Optical Mouse + MachineType: Notebook SAM2010 + Package: linux (not installed) + ProcFB: 0 radeondrmfb + ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-27-generic-pae root=/dev/mapper/hostname-root ro quiet splash + ProcVersionSignature: Ubuntu 3.2.0-27.43-generic-pae 3.2.21 + RfKill: + 0: phy0: Wireless LAN + Soft blocked: no + Hard blocked: no + Tags: precise + Uname: Linux 3.2.0-27-generic-pae i686 + UpgradeStatus: No upgrade log present (probably fresh install) + UserGroups: sudo + WifiSyslog: + + dmi.bios.date: 04/25/2008 + dmi.bios.vendor: American Megatrends Inc. + dmi.bios.version: A1058AM7 V7.27 + dmi.board.asset.tag: To Be Filled By O.E.M. + dmi.board.name: SAM2010 + dmi.board.vendor: MEDION + dmi.chassis.asset.tag: To Be Filled By O.E.M. + dmi.chassis.type: 10 + dmi.chassis.vendor: MICRO-STAR INT'L CO.,LTD. + dmi.chassis.version: To Be Filled By O.E.M. + dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrA1058AM7V7.27:bd04/25/2008:svnNotebook:pnSAM2010:pvr1058:rvnMEDION:rnSAM2010:rvr:cvnMICRO-STARINT'LCO.,LTD.:ct10:cvrToBeFilledByO.E.M.: + dmi.product.name: SAM2010 + dmi.product.version: 1058 + dmi.sys.vendor: Notebook ** Attachment added: "AcpiTables.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248097/+files/AcpiTables.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] AlsaDevices.txt
apport information ** Attachment added: "AlsaDevices.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248098/+files/AlsaDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] AplayDevices.txt
apport information ** Attachment added: "AplayDevices.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248099/+files/AplayDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] CRDA.txt
apport information ** Attachment added: "CRDA.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248100/+files/CRDA.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Card0.Amixer.values.txt
apport information ** Attachment added: "Card0.Amixer.values.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248101/+files/Card0.Amixer.values.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Card0.Codecs.codec.0.txt
apport information ** Attachment added: "Card0.Codecs.codec.0.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248102/+files/Card0.Codecs.codec.0.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248104/+files/IwConfig.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Card0.Codecs.codec.1.txt
apport information ** Attachment added: "Card0.Codecs.codec.1.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248103/+files/Card0.Codecs.codec.1.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248105/+files/Lspci.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] PciMultimedia.txt
apport information ** Attachment added: "PciMultimedia.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248106/+files/PciMultimedia.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248107/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] ProcEnviron.txt
apport information ** Attachment added: "ProcEnviron.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248108/+files/ProcEnviron.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248109/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248110/+files/ProcModules.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] PulseList.txt
apport information ** Attachment added: "PulseList.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248111/+files/PulseList.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248112/+files/UdevDb.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] UdevLog.txt
apport information ** Attachment added: "UdevLog.txt" https://bugs.launchpad.net/bugs/1029159/+attachment/3248113/+files/UdevLog.txt ** Tags removed: needs-upstream-testing ** Tags added: kernel-bug-exists-upstream -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
Hi Christopher, thanks for your guidance! Kernel 3.6-rc1 unfortunately oopsed an froze with something like Oops: SMP early in initrd. I can't say when exactly this appeared. From Hardy I upgraded to Lucid, there had an issue with wlan. It was a known bug filed on rt2x00.serialmonkey.com and fixed in a later version. Instead of using backports I decided to upgrade to the current ubuntu release. So I realised this bug first in Oneiric. But I think I booted the older Kernels and it worked, but not shure. I'll check. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok
This bug just occurs with kernel mode setting. Suspend is working with nomodeset. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: 1002:5975 kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] [NEW] kms radeon drm: suspend freezes graphics, hibernate reinits ok
Public bug reported: With ums (nomodeset kernel parameter) this laptop suspends to ram just fine. However ums seems deprecated nowadays and we don't have direct rendering anymore: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/946677 With the default kms, during resume from suspend I'm getting: [drm:r100_ring_test] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD) [drm:r100_cp_init] *ERROR* radeon: cp isn't working (-22). afterwards the log and VTs are flooded with [drm:radeon_ib_schedule] *ERROR* radeon: couldn't schedule IB(4). [drm:radeon_cs_ioctl] *ERROR* Failed to schedule IB ! The graphic is frozen but looks intact and the mouse pointer moves. It's possible to change to VTs. >From this state, a reboot hangs somewhere down the line shortly after the >plymouth splash appears and looks normal. Interestingly this can be rescued by pm-hibernate from the console. After waking up from hibernate the X session continues as if nothing went wrong in between. I tried with 3.4.0-030400-generic-pae from kernel-ppa/mainline, it doesn't flood the logs anymore but the first two errors and the frozen graphic is the same. Attached is the syslog of a hibernate suspend hibernate cycle and lspci -vvv before, during and after. ** Affects: linux (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "dmesg" https://bugs.launchpad.net/bugs/1029159/+attachment/3236111/+files/dmesg -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "lspci-vnvn.log" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236112/+files/lspci-vnvn.log -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "syslog_hibernate_wakeup-broken_suspend-hibernate_rescue" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236113/+files/syslog_hibernate_wakeup-broken_suspend-hibernate_rescue -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "pm-suspend.log" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236114/+files/pm-suspend.log -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "lspci-vvv_after_hibernate_ok" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236115/+files/lspci-vvv_after_hibernate_ok -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "lspci-vvv_after_suspend_broken" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236116/+files/lspci-vvv_after_suspend_broken -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 1029159] Re: kms radeon drm: suspend freezes graphics, hibernate reinits ok
** Attachment added: "lspci-vvv_after_hiber_ok_again" https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+attachment/3236117/+files/lspci-vvv_after_hiber_ok_again -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1029159 Title: kms radeon drm: suspend freezes graphics, hibernate reinits ok To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1029159/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 987460] Re: battery indicator does not show battery remaining
Hi Tuomas, it seems that your broken battery is coincidence. I reported this problem a while ago: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942 And it is still present in 12.04. My Laptop ran Hardy for years without this issue and I upgraded straight to 11.10, so it might also be with earlyer releases. But the kernel goes to: $ cat /sys/class/power_supply/BAT1/voltage_now 14791000 $ cat /sys/class/power_supply/BAT1/current_now cat: /sys/class/power_supply/BAT1/current_now: Kein passendes Gerät gefunden $ cat /sys/class/power_supply/BAT1/voltage_now 1000 minutes after reboot and I'm pretty shure Hardy's wouldn't, as also the other OS shows the battery just fine. The voltage_now value above is wrong, the panel showed a 100% battery whereas it was around 50% judged from runtime and the seemingly correct print with win. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/987460 Title: battery indicator does not show battery remaining To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/987460/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 987460] Re: battery indicator does not show battery remaining
*** This bug is a duplicate of bug 889942 *** https://bugs.launchpad.net/bugs/889942 ** This bug has been marked a duplicate of bug 889942 ACPI power_supply battery errors to: No such device -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/987460 Title: battery indicator does not show battery remaining To manage notifications about this bug go to: https://bugs.launchpad.net/linux/+bug/987460/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
apport information ** Tags added: apport-collected running-unity ** Description changed: On 11.10 a few minutes after reboot on this notebook the battery symbol in the panel turns to no battery available, normal values in the sys interface turn to 'No such device' messages and 'voltage_now' gives a wrong number. Here is a recent thread http://ubuntuforums.org/showthread.php?t=1865832 and 'BAT1/current_now' gives 'No such device' on post #7 This: --- user@box:~$ cat /proc/acpi/battery/BAT1/state present: yes capacity state: ok charging state: charged present rate:0 mA remaining capacity: 4182 mAh present voltage: 16586 mV user@box:~$ cat /proc/acpi/battery/BAT1/info present: yes design capacity: 4800 mAh last full capacity: 4397 mAh battery technology: rechargeable design voltage: 14800 mV design capacity warning: 0 mAh design capacity low: 0 mAh cycle count:0 capacity granularity 1: 1 mAh capacity granularity 2: 1 mAh model number:MS-1058 serial number: battery type:LION OEM info:MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/ alarm manufacturertechnology charge_full model_name type charge_full_design power/ uevent charge_now present voltage_min_design current_now serial_number voltage_now cycle_count status device/ subsystem/ user@box:~$ cat /sys/class/power_supply/BAT1/alarm 0 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full 4397000 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full_design 480 user@box:~$ cat /sys/class/power_supply/BAT1/charge_now 4182000 user@box:~$ cat /sys/class/power_supply/BAT1/current_now 0 user@box:~$ cat /sys/class/power_supply/BAT1/cycle_count 0 user@box:~$ cat /sys/class/power_supply/BAT1/manufacturer MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/model_name MS-1058 user@box:~$ cat /sys/class/power_supply/BAT1/present 1 user@box:~$ cat /sys/class/power_supply/BAT1/serial_number user@box:~$ cat /sys/class/power_supply/BAT1/status Unknown user@box:~$ cat /sys/class/power_supply/BAT1/technology Unknown user@box:~$ cat /sys/class/power_supply/BAT1/type Battery user@box:~$ cat /sys/class/power_supply/BAT1/voltage_min_design 1480 user@box:~$ cat /sys/class/power_supply/BAT1/voltage_now 16586000 user@box:~$ cat /proc/acpi/ac_adapter/ADP1/state state: on-line user@box:~$ cat /sys/class/power_supply/ADP1/ device/online power/ subsystem/ type uevent user@box:~$ cat /sys/class/power_supply/ADP1/online 1 user@box:~$ cat /sys/class/power_supply/ADP1/type Mains changes to: user@box:~$ cat /proc/acpi/battery/BAT1/state present: yes capacity state: ok charging state: charged present rate:unknown remaining capacity: unknown present voltage: 1 mV user@box:~$ cat /proc/acpi/battery/BAT1/info present: yes design capacity: 4800 mAh last full capacity: 4397 mAh battery technology: rechargeable design voltage: 14800 mV design capacity warning: 0 mAh design capacity low: 0 mAh cycle count:0 capacity granularity 1: 1 mAh capacity granularity 2: 1 mAh model number:MS-1058 serial number: battery type:LION OEM info:MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/ cat: /sys/class/power_supply/BAT1/: Ist ein Verzeichnis user@box:~$ cat /sys/class/power_supply/BAT1/alarm 0 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full 4397000 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full_design 480 user@box:~$ cat /sys/class/power_supply/BAT1/charge_now cat: /sys/class/power_supply/BAT1/charge_now: Kein passendes Gerät gefunden user@box:~$ LANGUAGE=en_GB:en cat /sys/class/power_supply/BAT1/charge_now cat: /sys/class/power_supply/BAT1/charge_now: No such device user@box:~$ cat /sys/class/power_supply/BAT1/current_now cat: /sys/class/power_supply/BAT1/current_now: Kein passendes Gerät gefunden user@box:~$ LANGUAGE=en_GB:en cat /sys/class/power_supply/BAT1/current_now cat: /sys/class/power_supply/BAT1/current_now: No such device user@box:~$ cat /sys/class/power_supply/BAT1/cycle_count 0 user@box:~$ cat /sys/class/power_supply/BAT1/manufacturer MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/model_name MS-1058 user@box:~$ cat /sys/class/power_supply/BAT1/present 1 user@box:~$ cat /sys/class/power_supply/BAT1/serial_number
[Bug 889942] AlsaDevices.txt
apport information ** Attachment added: "AlsaDevices.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760992/+files/AlsaDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] AplayDevices.txt
apport information ** Attachment added: "AplayDevices.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760993/+files/AplayDevices.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] BootDmesg.txt
apport information ** Attachment added: "BootDmesg.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760994/+files/BootDmesg.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Card0.Amixer.values.txt
apport information ** Attachment added: "Card0.Amixer.values.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760995/+files/Card0.Amixer.values.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Card0.Codecs.codec.0.txt
apport information ** Attachment added: "Card0.Codecs.codec.0.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760996/+files/Card0.Codecs.codec.0.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Card0.Codecs.codec.1.txt
apport information ** Attachment added: "Card0.Codecs.codec.1.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760997/+files/Card0.Codecs.codec.1.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760998/+files/CurrentDmesg.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Dependencies.txt
apport information ** Attachment added: "Dependencies.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2760999/+files/Dependencies.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] IwConfig.txt
apport information ** Attachment added: "IwConfig.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761000/+files/IwConfig.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] Lspci.txt
apport information ** Attachment added: "Lspci.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761001/+files/Lspci.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] PciMultimedia.txt
apport information ** Attachment added: "PciMultimedia.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761002/+files/PciMultimedia.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761003/+files/ProcCpuinfo.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] ProcInterrupts.txt
apport information ** Attachment added: "ProcInterrupts.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761004/+files/ProcInterrupts.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] ProcModules.txt
apport information ** Attachment added: "ProcModules.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761005/+files/ProcModules.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] PulseSinks.txt
apport information ** Attachment added: "PulseSinks.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761006/+files/PulseSinks.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] PulseSources.txt
apport information ** Attachment added: "PulseSources.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761007/+files/PulseSources.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] UdevDb.txt
apport information ** Attachment added: "UdevDb.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761008/+files/UdevDb.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] UdevLog.txt
apport information ** Attachment added: "UdevLog.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761009/+files/UdevLog.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] UserAsoundrcAsoundconf.txt
apport information ** Attachment added: "UserAsoundrcAsoundconf.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761010/+files/UserAsoundrcAsoundconf.txt -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] WifiSyslog.txt
apport information ** Attachment added: "WifiSyslog.txt" https://bugs.launchpad.net/bugs/889942/+attachment/2761011/+files/WifiSyslog.txt ** Changed in: linux (Ubuntu) Status: Incomplete => Confirmed -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889812] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')
Public bug reported: Die Systemaktualisierung wird fortgesetzt, aber das Paket »/var/cache/apt/archives/samba_2%3a3.5.11~dfsg-1ubuntu2.1_i386.deb« könnte sich in einem nicht funktionsfähigen Zustand befinden. Bitte ziehen Sie in Betracht, diesen Fehler zu melden. ProblemType: Package DistroRelease: Ubuntu 11.10 Package: samba 2:3.5.8~dfsg-1ubuntu2.3 ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8 Uname: Linux 2.6.38-12-generic i686 ApportVersion: 1.23-0ubuntu4 Architecture: i386 Date: Sun Nov 13 12:04:47 2011 ErrorMessage: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed') NmbdLog: OtherFailedConnect: Yes SambaServerRegression: Yes SmbConfIncluded: Yes SmbLog: SourcePackage: samba Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed') UpgradeStatus: Upgraded to oneiric on 2011-11-13 (0 days ago) ** Affects: samba (Ubuntu) Importance: Undecided Status: New ** Tags: apport-package i386 oneiric -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889812 Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed') To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/889812/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889812] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889812 Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed') To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/889812/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889812] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')
*** This bug is a duplicate of bug 877852 *** https://bugs.launchpad.net/bugs/877852 manually running dpkg -i /var/cache/apt/archives/samba_2%3a3.5.11~dfsg-1ubuntu2.1_i386.deb dpkg-reconfigure --default-priority samba after distribution upgrade stopped with this report seems to work without error. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889812 Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed') To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/889812/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 889942] [NEW] ACPI power_supply battery errors to: No such device
Public bug reported: On 11.10 a few minutes after reboot on this notebook the battery symbol in the panel turns to no battery available, normal values in the sys interface turn to 'No such device' messages and 'voltage_now' gives a wrong number. Here is a recent thread http://ubuntuforums.org/showthread.php?t=1865832 and 'BAT1/current_now' gives 'No such device' on post #7 This: --- user@box:~$ cat /proc/acpi/battery/BAT1/state present: yes capacity state: ok charging state: charged present rate:0 mA remaining capacity: 4182 mAh present voltage: 16586 mV user@box:~$ cat /proc/acpi/battery/BAT1/info present: yes design capacity: 4800 mAh last full capacity: 4397 mAh battery technology: rechargeable design voltage: 14800 mV design capacity warning: 0 mAh design capacity low: 0 mAh cycle count: 0 capacity granularity 1: 1 mAh capacity granularity 2: 1 mAh model number:MS-1058 serial number: battery type:LION OEM info:MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/ alarm manufacturertechnology charge_full model_name type charge_full_design power/ uevent charge_now present voltage_min_design current_now serial_number voltage_now cycle_count status device/ subsystem/ user@box:~$ cat /sys/class/power_supply/BAT1/alarm 0 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full 4397000 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full_design 480 user@box:~$ cat /sys/class/power_supply/BAT1/charge_now 4182000 user@box:~$ cat /sys/class/power_supply/BAT1/current_now 0 user@box:~$ cat /sys/class/power_supply/BAT1/cycle_count 0 user@box:~$ cat /sys/class/power_supply/BAT1/manufacturer MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/model_name MS-1058 user@box:~$ cat /sys/class/power_supply/BAT1/present 1 user@box:~$ cat /sys/class/power_supply/BAT1/serial_number user@box:~$ cat /sys/class/power_supply/BAT1/status Unknown user@box:~$ cat /sys/class/power_supply/BAT1/technology Unknown user@box:~$ cat /sys/class/power_supply/BAT1/type Battery user@box:~$ cat /sys/class/power_supply/BAT1/voltage_min_design 1480 user@box:~$ cat /sys/class/power_supply/BAT1/voltage_now 16586000 user@box:~$ cat /proc/acpi/ac_adapter/ADP1/state state: on-line user@box:~$ cat /sys/class/power_supply/ADP1/ device/online power/ subsystem/ type uevent user@box:~$ cat /sys/class/power_supply/ADP1/online 1 user@box:~$ cat /sys/class/power_supply/ADP1/type Mains changes to: user@box:~$ cat /proc/acpi/battery/BAT1/state present: yes capacity state: ok charging state: charged present rate:unknown remaining capacity: unknown present voltage: 1 mV user@box:~$ cat /proc/acpi/battery/BAT1/info present: yes design capacity: 4800 mAh last full capacity: 4397 mAh battery technology: rechargeable design voltage: 14800 mV design capacity warning: 0 mAh design capacity low: 0 mAh cycle count: 0 capacity granularity 1: 1 mAh capacity granularity 2: 1 mAh model number:MS-1058 serial number: battery type:LION OEM info:MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/ cat: /sys/class/power_supply/BAT1/: Ist ein Verzeichnis user@box:~$ cat /sys/class/power_supply/BAT1/alarm 0 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full 4397000 user@box:~$ cat /sys/class/power_supply/BAT1/charge_full_design 480 user@box:~$ cat /sys/class/power_supply/BAT1/charge_now cat: /sys/class/power_supply/BAT1/charge_now: Kein passendes Gerät gefunden user@box:~$ LANGUAGE=en_GB:en cat /sys/class/power_supply/BAT1/charge_now cat: /sys/class/power_supply/BAT1/charge_now: No such device user@box:~$ cat /sys/class/power_supply/BAT1/current_now cat: /sys/class/power_supply/BAT1/current_now: Kein passendes Gerät gefunden user@box:~$ LANGUAGE=en_GB:en cat /sys/class/power_supply/BAT1/current_now cat: /sys/class/power_supply/BAT1/current_now: No such device user@box:~$ cat /sys/class/power_supply/BAT1/cycle_count 0 user@box:~$ cat /sys/class/power_supply/BAT1/manufacturer MSI Corp. user@box:~$ cat /sys/class/power_supply/BAT1/model_name MS-1058 user@box:~$ cat /sys/class/power_supply/BAT1/present 1 user@box:~$ cat /sys/class/power_supply/BAT1/serial_number user@box:~$ cat /sys/class/power_supply/BAT1/status Unknown user@box:~$ cat /sys/class/power_supply/BAT1/technology Unknown user@box:~$ cat /sys/class/power_supply/BAT1/type Battery user@box:~$ cat /sys/class/power_supply/BAT1/voltage_min_design 1480 user@box:~$ cat /sys/class/power_supply/BAT1/voltage_now 1000 user@box:~$ cat /sys/class/power_suppl
[Bug 889942] Re: ACPI power_supply battery errors to: No such device
** Attachment added: "dmesg.log" https://bugs.launchpad.net/bugs/889942/+attachment/2595804/+files/dmesg.log -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/889942 Title: ACPI power_supply battery errors to: No such device To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/linux-meta/+bug/889942/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 784203] Re: cryptroot hook does not handle quotes in fstab
Hey, sorry I didn't check back here for a while. Steve you are right, on the first glance two unrelated things. My use case gives the relation: I was restoring a box from file system backups to a crypt container with new file systems and UUIDs and used blkid output to edit my fstab. I saw the output and thought, ok do we put quotes there now? In the changeroot 'mount -a' worked with quotes so it seemed the way to go. But building the initrd failed with warnings about invalid lines. I changed back the quotes, still got the warning but found my conf/conf.d/cryptroot in the ramdisk image. So I investigated the reason for the warning that didn't give helpful information. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/784203 Title: cryptroot hook does not handle quotes in fstab To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/cryptsetup/+bug/784203/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 703133] [NEW] upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured'
Public bug reported: Binary package hint: update-manager An upgrade from 8.04 LTS to 10.04 LTS using the gnome update-manager. These messages were all dialog boxes: Paket adduser ist schon installiert und konfiguriert Paket libxrender1 ist schon installiert und konfiguriert Paket libkeyutils1 ist schon installiert und konfiguriert Paket libsasl2-2 ist schon installiert und konfiguriert Paket libldap-2.4-2 ist schon installiert und konfiguriert Paket libavahi-common-data ist schon installiert und konfiguriert Paket libavahi-common3 ist schon installiert und konfiguriert Paket libavahi-client3 ist schon installiert und konfiguriert Paket libbz2-1.0 ist schon installiert und konfiguriert Paket libgdbm3 ist schon installiert und konfiguriert Paket libtiff4 ist schon installiert und konfiguriert Paket libgmp3c2 ist schon installiert und konfiguriert Paket procps ist schon installiert und konfiguriert Paket liblcms1 ist schon installiert und konfiguriert Paket dbus ist schon installiert und konfiguriert Paket dbus-x11 ist schon installiert und konfiguriert Paket wget ist schon installiert und konfiguriert Paket make ist schon installiert und konfiguriert Paket liburi-perl ist schon installiert und konfiguriert Paket libhtml-tagset-perl ist schon installiert und konfiguriert Paket libmpfr1ldbl ist schon installiert und konfiguriert Kein Paket namens »cpp-4.4« ist installiert, kann nicht konfigurieren Paket cpp ist schon installiert und konfiguriert Paket libidl0 ist schon installiert und konfiguriert Paket liborbit2 ist schon installiert und konfiguriert Paket psmisc ist schon installiert und konfiguriert Paket x11proto-render-dev ist schon installiert und konfiguriert Paket libxrender-dev ist schon installiert und konfiguriert Paket libwrap0 ist schon installiert und konfiguriert Paket libsasl2-modules ist schon installiert und konfiguriert Paket libusb-0.1-4 ist schon installiert und konfiguriert Kein Paket namens »libgp11-0« ist installiert, kann nicht konfigurieren Kein Paket namens »libfile-copy-recursive-perl« ist installiert, kann nicht konfigurieren Paket update-inetd ist schon installiert und konfiguriert Paket bzip2 ist schon installiert und konfiguriert Paket makedev ist schon installiert und konfiguriert Paket libijs-0.35 ist schon installiert und konfiguriert Paket libpaper1 ist schon installiert und konfiguriert Paket libslp1 ist schon installiert und konfiguriert Paket ghostscript-x ist schon installiert und konfiguriert Paket libpaper-utils ist schon installiert und konfiguriert Paket libncurses5-dev ist schon installiert und konfiguriert Paket libusb-dev ist schon installiert und konfiguriert Paket libbz2-dev ist schon installiert und konfiguriert Paket libslang2-dev ist schon installiert und konfiguriert All those packages were kept on the hardy version, then update-manager said the upgrade was canceled and the system is in an unusable state. It will recover with: dpkg --configure -a === >> The real bug about this is that it gave a success message after that and said upgrade completed! The first time I didn't pay so much attention and rebooted. Don't reboot! The easy fix was to restart the update-manager once again. It made a partial upgrade and fetched all the missed packages. update-manager should restart the process after an dpkg --configure -a event. Output of dpkg --configure -a before starting update-manager for the second time is attached. Always backup Bye ProblemType: Package DistroRelease: Ubuntu 10.04 Package: update-manager 1:0.134.11 ProcVersionSignature: Ubuntu 2.6.32-27.49-generic 2.6.32.26+drm33.12 Uname: Linux 2.6.32-27-generic i686 NonfreeKernelModules: nvidia Architecture: i386 Date: Tue Jan 11 16:31:24 2011 ErrorMessage: Abhängigkeitsprobleme - lasse es unkonfiguriert PackageArchitecture: all SourcePackage: update-manager Title: package update-manager 1:0.134.11 failed to install/upgrade: Abhängigkeitsprobleme - lasse es unkonfiguriert ** Affects: update-manager (Ubuntu) Importance: Undecided Status: New ** Tags: apport-package i386 lucid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/703133 Title: upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured' -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 703133] Re: upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured'
** Attachment added: ""dpkg_--configure_-a" https://bugs.launchpad.net/bugs/703133/+attachment/1794222/+files/%22dpkg_--configure_-a -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/703133 Title: upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured' -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 703133] Re: upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured'
** Attachment added: "/var/log/dist-upgrade" https://bugs.launchpad.net/ubuntu/+source/update-manager/+bug/703133/+attachment/1794228/+files/main.log -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/703133 Title: upgrade hardy -> lucid: a bunch of packages show dialog 'already installed and configured' -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 784203] [NEW] cryptroot hook does not handle quotes in fstab
Public bug reported: Binary package hint: cryptsetup Hello! It seems all the utils handle UUID="" and LABEL="" statements in fstab with quotes like blkid prints them. While chasing a missing conf/conf.d/cryptroot in initrd.img I noticed a misleading warning message, but sure enough another opened crypto container does not need to be in /etc/crypttab so this should not be reason to complain about an invalid line. [ -h "$dev" ] fails on something like "/dev/disk/by-uuid/"foo"" so I would suggest we strip quotes first. ** Affects: cryptsetup (Ubuntu) Importance: Undecided Status: New -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/784203 Title: cryptroot hook does not handle quotes in fstab -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 784203] Re: cryptroot hook does not handle quotes in fstab
** Patch added: "cryptsetup-1.1.3_patch" https://bugs.launchpad.net/bugs/784203/+attachment/2132738/+files/cryptsetup-1.1.3_patch -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/784203 Title: cryptroot hook does not handle quotes in fstab -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs