[Bug 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048
I *think* the problem may be that this code: +if (width > screen->maxTextureSize || height > screen->maxTextureSize) needs to be: +if (width >= screen->maxTextureSize || height >= screen->maxTextureSize) ** Changed in: compiz (Ubuntu Lucid) Milestone: None => ubuntu-10.04 ** Changed in: compiz (Ubuntu Lucid) Assignee: Canonical Desktop Team (canonical-desktop-team) => (unassigned) -- compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048 https://bugs.launchpad.net/bugs/428769 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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048
While the tone of comment #8 is entirely inappropriate, I agree with its assessment that, if indeed this is a regression with compiz, it is quite serious and needs attention soon ** Also affects: compiz (Ubuntu Lucid) Importance: Undecided Status: New ** Changed in: compiz (Ubuntu Lucid) Importance: Undecided => Critical ** Changed in: compiz (Ubuntu Lucid) Assignee: (unassigned) => Canonical Desktop Team (canonical-desktop-team) -- compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048 https://bugs.launchpad.net/bugs/428769 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 428769] Re: compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048
I took another look at this as part of handling bug #556631. In Karmic, /usr/bin/compiz was a shell script, which included a check for max texture size: check_texture_size() { # Check how many screens we've got and iterate over them N=$(xdpyinfo | grep -i "number of screens" | sed 's/.*[^0-9]//g') for i in $(seq 1 $N); do verbose "Checking screen $i" TEXTURE_LIMIT=$(glxinfo -l | grep GL_MAX_TEXTURE_SIZE | sed -n "$i s/^.*=[^0-9]//g p") RESOLUTION=$(xdpyinfo | grep -i dimensions: | sed -n -e "$i s/^ *dimensions: *\([0-9]*x[0-9]*\) pixels.*/\1/ p") VRES=$(echo $RESOLUTION | sed 's/.*x//') HRES=$(echo $RESOLUTION | sed 's/x.*//') verbose "Comparing resolution ($RESOLUTION) to maximum 3D texture size ($TEXTURE_LIMIT): "; if [ $VRES -gt $TEXTURE_LIMIT ] || [ $HRES -gt $TEXTURE_LIMIT ]; then verbose "Failed.\n" return 1; fi verbose "Passed.\n" done return 0 } It appears that as of 1:0.8.4-0ubuntu4 in lucid, the checks that the compiz wrapper had been doing have moved to the compiz binary itself: br...@blumonc:~$ cat /etc/lsb-release ; file /usr/bin/compiz DISTRIB_ID=Ubuntu DISTRIB_RELEASE=10.04 DISTRIB_CODENAME=lucid DISTRIB_DESCRIPTION="Ubuntu lucid (development branch)" /usr/bin/compiz: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped compiz (1:0.8.4-0ubuntu4) lucid; urgency=low ... [ Travis Watkins ] * debian/patches/060_move_checks_to_compiz.patch: - add all relevant checks from compiz-manager to compiz itself Compiz already checks for almost everything it needs so there is no need to check twice. So the texture size check appears to be occurring in this chunk of the patch: @@ -244,13 +246,21 @@ CompFBConfig *config = &screen->glxPixmapFBConfigs[depth]; int attribs[7], i = 0; +if (width > screen->maxTextureSize || height > screen->maxTextureSize) +{ + compLogMessage ("core", CompLogLevelWarn, + "Exceeded max texture size"); + + launchFallbackWM (); +} + if (!config->fbConfig) { compLogMessage ("core", CompLogLevelWarn, "No GLXFBConfig for depth %d", depth); - return FALSE; + launchFallbackWM (); } attribs[i++] = GLX_TEXTURE_FORMAT_EXT; So that all looks like it should work... You should get an error message "Exceeded max texture size" in your compiz log -- compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048 https://bugs.launchpad.net/bugs/428769 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 557606] Re: CANNOT CHANGE START MENU
I've also tried adding -s, otherwise, as you said, there's a lot of extra comments on the line. To make sure I understand: do you confirm this is a bug linked to a space problem in GRUB DISTRIBUTOR? In that case I stop trials waiting for bug correction Otherwise if you know what to do so far, please just let me know Have a nice day. BTW, this is a wonderful version -- CANNOT CHANGE START MENU https://bugs.launchpad.net/bugs/557606 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 556631] Re: Portion of second monitor unusable
** This bug has been marked a duplicate of bug 428769 compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048 ** This bug is no longer a duplicate of bug 428769 compiz starts with a blank screen on a 2048x1152 monitor due to hw limit with textures > 2048 ** Summary changed: - Portion of second monitor unusable + Compiz showing corruption because not refusing to run when rez > max texture size -- Compiz showing corruption because not refusing to run when rez > max texture size https://bugs.launchpad.net/bugs/556631 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 557842] Re: digikam crash when clicking on .MOV file in album
** Changed in: digikam Status: Unknown => New -- digikam crash when clicking on .MOV file in album https://bugs.launchpad.net/bugs/557842 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 503802] Re: terminator crashed with KeyError in _match_right()
0.92 has hit Lucid and should fix this. ** Changed in: terminator (Ubuntu) Status: New => Fix Released -- terminator crashed with KeyError in _match_right() https://bugs.launchpad.net/bugs/503802 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 537992] Re: the ppa voria for samsung nc10 does not work in 10.04
Not a firefox issue. Needs reassignment. ** Package changed: firefox-3.5 (Ubuntu) => ubuntu -- the ppa voria for samsung nc10 does not work in 10.04 https://bugs.launchpad.net/bugs/537992 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 540399] Re: Adobe FP no have!!!!!!!!
Thank you for reporting this to Ubuntu. Please provide the results of the following command run in a terminal: apt-cache policy flashplugin-installer flashplugin-nonfree swfdec- mozilla mozilla-plugin-gnash adobe-flashplugin This will let us know what flash players you have installed so that we can better diagnose your issue. Thank you. ** Changed in: firefox-3.5 (Ubuntu) Status: New => Incomplete -- Adobe FP no have https://bugs.launchpad.net/bugs/540399 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 541688] Re: Activex not compatible
Thank you for reporting this to Ubuntu. Unfortunately, Active X is a Microsoft technology that is only supported by Internet Explorer. There is nothing we can do to add support for this at present. Please report any other issues you may find. ** Changed in: firefox-3.5 (Ubuntu) Status: New => Invalid -- Activex not compatible https://bugs.launchpad.net/bugs/541688 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 541879] Re: ftbfs on armel - test suite fails on armel because of floating point endianess
** Changed in: libplist (Debian) Status: New => Fix Released -- ftbfs on armel - test suite fails on armel because of floating point endianess https://bugs.launchpad.net/bugs/541879 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 549834] Re: Terminal background gone from transparent to opaque on updates
0.92 has hit Lucid and should fix this. ** Changed in: terminator (Ubuntu) Status: Confirmed => Fix Released -- Terminal background gone from transparent to opaque on updates https://bugs.launchpad.net/bugs/549834 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 554079] Re: Lucid boot failed to complete after fsck
Nevermind about ureadahead. I uninstalled it and got the same behavior. -- Lucid boot failed to complete after fsck https://bugs.launchpad.net/bugs/554079 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 392520] Re: terminator crashed with SIGFPE in PyEval_EvalFrameEx()
0.92 has hit Lucid and should fix this. ** Changed in: terminator (Ubuntu) Status: Confirmed => Fix Released -- terminator crashed with SIGFPE in PyEval_EvalFrameEx() https://bugs.launchpad.net/bugs/392520 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 428173] Re: Odd behaviour when closing a maximised terminal
0.92 has hit Lucid and should fix this. ** Changed in: terminator (Ubuntu) Status: Confirmed => Fix Released -- Odd behaviour when closing a maximised terminal https://bugs.launchpad.net/bugs/428173 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 445052] Re: Terminator window flickers when using tab completion or deleting text
0.92 has hit Lucid and should fix this. ** Changed in: terminator (Ubuntu) Status: Fix Committed => Fix Released -- Terminator window flickers when using tab completion or deleting text https://bugs.launchpad.net/bugs/445052 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
Re: [Bug 552505] Re: Evolution opens and freezes. No folders shown
Pedro, Thanks for your advice. I read the instructions at http://wiki.ubuntu.com/DebuggingProgramCrash to upload the backtrace. My version is Ubuntu 8.04.4 LTS \n \l 1. My Linux skills are not good enough to do all that. 2. As this email proves, Evolution is behaving normally again. Maybe I just needed to power down and reboot? 3. The last line of the instructions How do we remove all this stuff after getting the trace and get back to a normal system? scares me too. 4. If the problem repeats I will get a friend to help me do the backtrace. I am looking forward to the next LTS version. Ubuntu 10.04? Thanks again for super software. - iron...@nashuaisp.co.za Home +2711 782 8623 Mobile +2783 588 0028 * -Original Message- From: Pedro Villavicencio To: iron...@nashuaisp.co.za Subject: [Bug 552505] Re: Evolution opens and freezes. No folders shown Date: Tue, 06 Apr 2010 12:55:06 - Thanks for the report, there's no way to fix a bug without the proper information which was not added to this bug report, please try to obtain a backtrace of that freeze following the instructions at http://wiki.ubuntu.com/DebuggingProgramCrash and upload the backtrace (as an attachment) to the bug report. This will greatly help us in tracking down your problem. Or try to reproduce the same with Lucid. Thanks. ** Changed in: evolution (Ubuntu) Importance: Undecided => Medium ** Changed in: evolution (Ubuntu) Status: New => Incomplete -- Evolution opens and freezes. No folders shown https://bugs.launchpad.net/bugs/552505 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 556631] Re: Portion of second monitor unusable
*** This bug is a duplicate of bug 428769 *** https://bugs.launchpad.net/bugs/428769 Ah interesting - as per the upstream bug report, your hardware supports only up to 2048x2048 with compiz - see bug #555641 which I guess this is a dupe of. However, compiz *should* be checking for max texture size and refusing to start up in this case. Not totally sure how it's changed in lucid, but in karmic it looks at the max texture size reported by glxinfo, and compares it with the current dimensions reported by xdpyinfo, and if the latter is larger than the former it refuses to start. Not sure why that didn't do it's thing in this case. Anyway, this is bug #428769 -- Portion of second monitor unusable https://bugs.launchpad.net/bugs/556631 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 517903] Re: Firefox 3.6 won't work if user profile is accessed via a link
Is this fixed with the latest Firefox package in Lucid? -- Firefox 3.6 won't work if user profile is accessed via a link https://bugs.launchpad.net/bugs/517903 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 543897] Re: Cisco VPN fails to be shown in under configuring VPN connections
Moving to network-manager-vpnc for triage. ** Package changed: firefox (Ubuntu) => network-manager-vpnc (Ubuntu) -- Cisco VPN fails to be shown in under configuring VPN connections https://bugs.launchpad.net/bugs/543897 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 552954] Re: "can't find the info directory"
The bug watch for ocp was changed because of a bug in Launchpad, apparently. Reverting that change. ** Changed in: ocp (Debian) Importance: Undecided => Unknown ** Changed in: ocp (Debian) Status: New => Unknown ** Changed in: ocp (Debian) Remote watch: None => Debian Bug tracker #537835 -- "can't find the info directory" https://bugs.launchpad.net/bugs/552954 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 552954] Re: "can't find the info directory"
> How is this "Fix Released"? It doesn't make sense that I have to > install package B in order to fix a bug in package A, even though > package B may have the same or similar bug. This bug is divided into "tasks". The task for ocp is Fix Released, meaning the problem which used to cause users of ocp to experience this problem (that it included /usr/share/info/dir.gz in the package) has been fixed in that package. Other packages which still have tasks open are still affected; in your case, the task for emacs-jabber remains open. As a workaround, you could install the newest Debian emacs-jabber package, but since you already devised a different workaround, that's moot in your case. ** Also affects: emacs-jabber (Debian) Importance: Undecided Status: New ** Changed in: ocp (Debian) Importance: Unknown => Undecided ** Changed in: ocp (Debian) Status: Unknown => New ** Changed in: ocp (Debian) Remote watch: Debian Bug tracker #537835 => None ** Changed in: emacs-jabber (Debian) Status: New => Fix Released -- "can't find the info directory" https://bugs.launchpad.net/bugs/552954 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 554079] Re: Lucid boot failed to complete after fsck
also after a successful reboot, I get a crash report for plymouthd (#553745) -- Lucid boot failed to complete after fsck https://bugs.launchpad.net/bugs/554079 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 554079] Re: Lucid boot failed to complete after fsck
Could ureadahead have something to do with this? I noticed this on my laptop when fooling around with ureadahead. After testing in a vm I can do the following: sudo touch /forcefsck reboot. fsck stalls at 70% for a sec, and the screen jumps directly to the desktop. ls / shows forcefsck still exists for about 40 secs. After removing the pack file for ureadahead and touching /forcefsck again...rebooting gets me a disk check to 70% and the screen goes blank, and it doesn't seem to ever bring up the desktop. host cpu usage is idle. I can ctrl-alt-f1 and log in. /var/lib/ureadahead/pack was created. /forcefsck is never removed next reboot, disk check appears again (because forcefsck wasn't removed), and the desktop is loaded. /forcefsck is removed. It is possible that the above users have been experiencing issues because many updates trigger a reprofile (such as installing/removing the nvidia driver) -- Lucid boot failed to complete after fsck https://bugs.launchpad.net/bugs/554079 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 555600] Re: Ubuntu 10.04 Alternate Install CD on Intel D875PB2 system, hangs indefinitely on boot
** Changed in: plymouth (Ubuntu) Status: Incomplete => New ** Changed in: plymouth (Ubuntu) Status: New => Incomplete -- Ubuntu 10.04 Alternate Install CD on Intel D875PB2 system, hangs indefinitely on boot https://bugs.launchpad.net/bugs/555600 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 457004] Re: Kernel oops caught by apport
This would be a good test iff there was a good way to reproduce that kernel oops. However, I've only ever seen this once, so I can't even reproduce on the current kernel. -- Kernel oops caught by apport https://bugs.launchpad.net/bugs/457004 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 557860] Re: iup
Depends on 557863 and 557866 -- iup https://bugs.launchpad.net/bugs/557860 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 557863] [NEW] cd (Canvas Draw, A 2D Graphics Library)
Public bug reported: CD (Canvas Draw) is a platform-independent graphics library. It is implemented in several platforms using native graphics libraries: Microsoft Windows (GDI) and X-Windows (XLIB). The library contains functions to support both vector and image applications, and the visualization surface can be either a window or a more abstract surface, such as Image, Clipboard, Metafile, PS, and so on. License: MIT URL: http://www.tecgraf.puc-rio.br/cd/ ** Affects: ubuntu Importance: Undecided Status: New ** Tags: needs-packaging -- cd (Canvas Draw, A 2D Graphics Library) https://bugs.launchpad.net/bugs/557863 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 557866] [NEW] IM (An Imaging Tool)
Public bug reported: IM is a toolkit for Digital Imaging. IM is based on 4 concepts: Image Representation, Storage, Processing and Capture. The main goal of the library is to provide a simple API and abstraction of images for scientific applications. The most popular file formats are supported: TIFF, BMP, PNG, JPEG, GIF and AVI. Image representation includes scientific data types. About a hundred Image Processing operations are available. License: MIT URL: http://www.tecgraf.puc-rio.br/im/ ** Affects: ubuntu Importance: Undecided Status: New ** Tags: needs-packaging -- IM (An Imaging Tool) https://bugs.launchpad.net/bugs/557866 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 291207] Re: Missing apply-button in the webui configuration tab.
I would go for an Apply button. -- Missing apply-button in the webui configuration tab. https://bugs.launchpad.net/bugs/291207 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 557255] Re: lucid: localization (de_DE) missing?
Hi there; debian#570122 indeed seems to be the cause here too, with the exception that in the first thunar window opened, only the top-level (window) menus are German. As far as the context menus are concerned, locales are ignored in the first window instance as well. And, the "first instance" of course only works while invoking thunar using commandline or in example from Xubuntus "places" menu. While opening "Home" using the desktop icon, locales are ignored immediately - desktop icons are "first thunar instance" then? Strange, on desktop icons however, context menus do use the "right" locale... -- lucid: localization (de_DE) missing? https://bugs.launchpad.net/bugs/557255 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 557860] [NEW] iup
Public bug reported: IUP is a graphical toolkit License: MIT URL: http://www.tecgraf.puc-rio.br/iup/ ** Affects: ubuntu Importance: Undecided Status: New ** Tags: needs-packaging -- iup https://bugs.launchpad.net/bugs/557860 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 514881] Re: powersave-policy-sata-link-power false:Returned exit code 1.
I have this same problem in 10.4 and 9.10 :\ -- powersave-policy-sata-link-power false:Returned exit code 1. https://bugs.launchpad.net/bugs/514881 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 546568] Re: After lucid upgrade, fonts look jagged or too thin
*** This bug is a duplicate of bug 512615 *** https://bugs.launchpad.net/bugs/512615 Thank you for taking the time to report this bug and helping to make Ubuntu better. This particular bug has already been reported and is a duplicate of bug 512615, so it is being marked as such. Please look at the other bug report to see if there is any missing information that you can provide, or to see if there is a workaround for the bug. Additionally, any further discussion regarding the bug should occur in the other report. Please continue to report any other bugs you may find. ** This bug has been marked a duplicate of bug 512615 fonts are incorrectly rendered due to not using system cairo -- After lucid upgrade, fonts look jagged or too thin https://bugs.launchpad.net/bugs/546568 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 546766] Re: firefox won't load after new kernel
*** This bug is a duplicate of bug 518422 *** https://bugs.launchpad.net/bugs/518422 Thank you for taking the time to report this bug and helping to make Ubuntu better. This particular bug has already been reported and is a duplicate of bug 518422, so it is being marked as such. Please look at the other bug report to see if there is any missing information that you can provide, or to see if there is a workaround for the bug. Additionally, any further discussion regarding the bug should occur in the other report. Please continue to report any other bugs you may find. ** This bug has been marked a duplicate of bug 518422 [MASTER] Firefox does not start with certain addons installed -- firefox won't load after new kernel https://bugs.launchpad.net/bugs/546766 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 556259] Re: boot hangs 20+ minutes
update: commented out the "recordfail" timeout to reduce the boot timefrom 20+ minutes to 3-5 minutes -- boot hangs 20+ minutes https://bugs.launchpad.net/bugs/556259 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 557412] Re: Bugs on Sony vaio PCG - r505Gl
I have these same problems. I also have a Sony Vaio PCG-R505GL. I can verify 1) and 3) above but I haven't tried 2) -- Bugs on Sony vaio PCG - r505Gl https://bugs.launchpad.net/bugs/557412 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 332654] -Hi-
http://sites.google.com/site/fgu45ythjg/hvuv2v -- [Gateway DX300] hibernate/resume problem [non-free: fglrx] https://bugs.launchpad.net/bugs/332654 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 499425] Re: getpwnam shows shadow passwords of NIS users
** Changed in: glibc Status: Incomplete => Fix Released -- getpwnam shows shadow passwords of NIS users https://bugs.launchpad.net/bugs/499425 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 557798] Re: Overlapping descriptions in software centre
** Attachment added: "screenshot.png" http://launchpadlibrarian.net/43411761/screenshot.png -- Overlapping descriptions in software centre https://bugs.launchpad.net/bugs/557798 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 557798] Re: Overlapping descriptions in software centre
Sorry but I can´t reproduce this, I have the same software center version and Spanish language by default. I´ve attached screenshot. ** Changed in: software-center (Ubuntu) Status: New => Incomplete -- Overlapping descriptions in software centre https://bugs.launchpad.net/bugs/557798 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 557856] Re: package linux-image-2.6.31-21 -generic 2.6.31-21.59 failed to install/upgrade: i nstalled post-installation script alfolyamat 1 hibakó ddal kilépett
** Attachment added: "AptOrdering.txt" http://launchpadlibrarian.net/43411591/AptOrdering.txt ** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/43411592/Dependencies.txt ** Attachment added: "Dmesg.txt" http://launchpadlibrarian.net/43411593/Dmesg.txt ** Attachment added: "DpkgTerminalLog.txt" http://launchpadlibrarian.net/43411594/DpkgTerminalLog.txt -- package linux-image-2.6.31-21-generic 2.6.31-21.59 failed to install/upgrade: installed post-installation script alfolyamat 1 hibakóddal kilépett https://bugs.launchpad.net/bugs/557856 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 557856] [NEW] package linux-image-2.6.3 1-21-generic 2.6.31-21.59 failed to install/upgrade : installed post-installation script alfolyamat 1 hibak óddal kilépett
Public bug reported: Binary package hint: grub - ProblemType: Package Architecture: i386 Date: Thu Apr 8 08:12:07 2010 DistroRelease: Ubuntu 9.10 ErrorMessage: installed post-installation script alfolyamat 1 hibakóddal kilépett InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5) NonfreeKernelModules: nvidia Package: linux-image-2.6.31-21-generic 2.6.31-21.59 ProcVersionSignature: Ubuntu 2.6.31-20.58-generic SourcePackage: grub Title: package linux-image-2.6.31-21-generic 2.6.31-21.59 failed to install/upgrade: installed post-installation script alfolyamat 1 hibakóddal kilépett Uname: Linux 2.6.31-20-generic i686 ** Affects: grub (Ubuntu) Importance: Undecided Status: New ** Tags: apport-package i386 -- package linux-image-2.6.31-21-generic 2.6.31-21.59 failed to install/upgrade: installed post-installation script alfolyamat 1 hibakóddal kilépett https://bugs.launchpad.net/bugs/557856 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 69598] Re: Default settings prevent BitTorrent from downloading multiple files simultaneously
Thank's ** Changed in: bittorrent (Ubuntu) Status: Confirmed => Fix Committed -- Default settings prevent BitTorrent from downloading multiple files simultaneously https://bugs.launchpad.net/bugs/69598 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 270123] Re: Wrong battery status
I am not sure if this is the same bug... but I thought I could give it a try. Running Lucid Beta 10.04 on a Dell Inspiron 5100. As stated in the beginning, my battery applet currently states that the system is funny charged, with the system not plugged into an adapter for charging. However, lo...@lrc-laptop:~$ acpi -a -b Battery 0: Discharging, 31%, 00:48:15 remaining Adapter 0: on-line Which seems to be correct. When I plug in the adapter the status of the power-manager applet does not change (still fully charged) but: lo...@lrc-laptop:~$ acpi -a -b Battery 0: Charging, 30%, 01:29:43 until charged Adapter 0: on-line lo...@lrc-laptop:~$ Which is correct. Attached is output of: Output of ls -la /proc/acpi/*/* cat /proc/acpi/*/*/* hal-find-by-capability --capability "battery" | xargs -n 1 hal-device hal-find-by-capability --capability "ac_adapter" | xargs -n 1 hal-device Once with adapter plugged in, and once with adapter unplugged. So this seems to be a bug with the applet, and not acpi. Any other information needed for this (new?) but, I will be happy to give. Thank you team for your work on this bug! -- Wrong battery status https://bugs.launchpad.net/bugs/270123 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 557855] Re: gthumb hangs when run to import photos from USB stick
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/43410876/Dependencies.txt -- gthumb hangs when run to import photos from USB stick https://bugs.launchpad.net/bugs/557855 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 557855] [NEW] gthumb hangs when run to import photos from USB stick
Public bug reported: Binary package hint: gthumb In lucid, when I insert a USB memory stick, something will automatically mount the USB stick, and then prompt me for which action I wish to take. I select "Open gThumb Photo Import Tool". The USB stick is then immediately unmounted, and nothing else happens. "ps" shows that "gthumb --import-photos" was run. strace on that process shows that it is hung doing nothing: [swar...@esk ~]$ ps auxww|grep gth swarren 3173 1.6 0.8 25300 9012 ?S00:00 0:00 gthumb --import-photos swarren 3181 0.0 0.0 3320 784 pts/0S+ 00:01 0:00 grep gth [swar...@esk ~]$ strace -p 3173 Process 3173 attached - interrupt to quit restart_syscall(<... resuming interrupted call ...> Manually running "gthumb --import-photos" from an X terminal with the disk mounted produces the same results (gthumb hangs). ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: gthumb 3:2.11.2.1-2 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic i686 Architecture: i386 Date: Wed Apr 7 23:56:54 2010 ProcEnviron: PATH=(custom, user) LANG=en_US.utf8 SHELL=/bin/bash SourcePackage: gthumb ** Affects: gthumb (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 lucid -- gthumb hangs when run to import photos from USB stick https://bugs.launchpad.net/bugs/557855 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 399636] Re: [i915gm] karmic 2.6.31-2 and -3 lid closing blacks screen until reboot on thinkpad r52
The “screen doesn't come back from blank when opening the lid” part of this bug has should have been fixed by the 2.6.32-19 kernel. I'm marking this bug as fixed, since you've indicated that this particular problem is fixed. Although it's got a similar trigger, the “no cursor after opening the lid” will be a separate problem. Could you please file a new bug about that? It'll be much easier to keep track of the problem as a separate bug. ** Changed in: xserver-xorg-video-intel (Ubuntu) Status: Confirmed => Fix Released -- [i915gm] karmic 2.6.31-2 and -3 lid closing blacks screen until reboot on thinkpad r52 https://bugs.launchpad.net/bugs/399636 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
Re: [Bug 528026] Re: [gm45] Often freezes before GDM login screen appears
Hello Chris, The incorrect display still persist. In the moment when X and GDM start the Plymouth purple boot screen is stretched in top left corner, then the image is corrupted in horizontal repeating bars. Then the default GDM background appears and everything gos back to normal... well except the cases when GDM login widgets donot appear. Daniel On 04/08/2010 03:37 AM, Chris Halse Rogers wrote: > But the incorrect display during boot is still present with 2.6.32-19? > > -- [gm45] Often freezes before GDM login screen appears https://bugs.launchpad.net/bugs/528026 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 541620] Re: Ralink RT3090 Wireless Not Supported in Lucid
Hi: The link by Markus Heberling used to work in Karmic, after the last kernel update (2.6.31-21-generic) doesn't any more. Same happen to me trying the Betas from Lucid. Wifi is something everybody needs, please come up with a solution!!! If someone needs outputs of both, the driver working and not working, please let me know. By the way the Markus patch used to work flawlessly! -- Ralink RT3090 Wireless Not Supported in Lucid https://bugs.launchpad.net/bugs/541620 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 557850] Re: gtk-gnash crashed with SIGSEGV in std::istream::tellg()
*** This bug is a duplicate of bug 549437 *** https://bugs.launchpad.net/bugs/549437 Thank you for taking the time to report this crash and helping to make Ubuntu better. This particular crash has already been reported and is a duplicate of bug #549437, so is being marked as such. Please look at the other bug report to see if there is any missing information that you can provide, or to see if there is a workaround for the bug. Additionally, any further discussion regarding the bug should occur in the other report. Please continue to report any other bugs you may find. ** Attachment removed: "CoreDump.gz" http://launchpadlibrarian.net/43410050/CoreDump.gz ** Attachment removed: "Dependencies.txt" http://launchpadlibrarian.net/43410051/Dependencies.txt ** Attachment removed: "Disassembly.txt" http://launchpadlibrarian.net/43410052/Disassembly.txt ** Attachment removed: "ProcMaps.txt" http://launchpadlibrarian.net/43410053/ProcMaps.txt ** Attachment removed: "ProcStatus.txt" http://launchpadlibrarian.net/43410054/ProcStatus.txt ** Attachment removed: "Registers.txt" http://launchpadlibrarian.net/43410055/Registers.txt ** Attachment removed: "Stacktrace.txt" http://launchpadlibrarian.net/43410056/Stacktrace.txt ** Attachment removed: "ThreadStacktrace.txt" http://launchpadlibrarian.net/43410057/ThreadStacktrace.txt ** This bug has been marked a duplicate of bug 549437 gnash crashed when loading desenatori.ro new drawing application ; gtk-gnash crashed with SIGSEGV in std::istream::tellg() ** Visibility changed to: Public ** Tags removed: need-amd64-retrace -- gtk-gnash crashed with SIGSEGV in std::istream::tellg() https://bugs.launchpad.net/bugs/557850 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 442652] Re: Messages shown during boot
This bug report was marked as Triaged a while ago but has not had any updated comments for quite some time. Please let us know if this issue remains in the current Ubuntu release, http://www.ubuntu.com/getubuntu/download . If the issue remains, click on the current status under the Status column and change the status back to "New". Thanks. [This is an automated message. Apologies if it has reached you inappropriately; please just reply to this message indicating so.] -- Messages shown during boot https://bugs.launchpad.net/bugs/442652 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 549727] Re: [10.04] Touchpad stop working after login
Can confirm this bug on Acer Aspire 5536G -- [10.04] Touchpad stop working after login https://bugs.launchpad.net/bugs/549727 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 532128] Re: [lucid] thunderbird on lucid 64 bit doesn't work: Segmentation fault (core dumped)
Is this a dupe of Bug #507089? -- [lucid] thunderbird on lucid 64 bit doesn't work: Segmentation fault (core dumped) https://bugs.launchpad.net/bugs/532128 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
Re: [Bug 381650] Re: help.ubuntu.com does not tell you how to determine which version you have
Sir/ Madam Today, I receive a Packet of Three OS Ubandu, i am thankfull to you for this regard. I will try this OS on my PC and I Reply quickly for the result of OS, Any thanks Muhammad Asif Anwar Cell No: +92-300-8885072 Ph No: +92-608-362928 Pakistan. From: Matthew Paul Thomas To: asif.an...@ymail.com Sent: Wed, April 7, 2010 8:47:39 PM Subject: [Bug 381650] Re: help.ubuntu.com does not tell you how to determine which version you have I don't run help.ubuntu.com and I don't know who does, sorry. -- help.ubuntu.com does not tell you how to determine which version you have https://bugs.launchpad.net/bugs/381650 You received this bug notification because you are subscribed to ubuntu- docs in ubuntu. Status in One Hundred Paper Cuts: Invalid Status in “ubuntu-docs” package in Ubuntu: In Progress Bug description: Binary package hint: ubuntu-docs The very first thing you see on the help.ubuntu.com page is to choose your version, but what if you don't know the version? How do you find that out? The information on how to determine which version should be on the front page. That way you go to the correct version of your documents. -- help.ubuntu.com does not tell you how to determine which version you have https://bugs.launchpad.net/bugs/381650 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 498182] Re: Indicator-application does not support vertical panels
Pulling in ubuntu-release-notes here, since (according to #ubuntu-bugs), this regression isn't going to change for lucid. ** Also affects: ubuntu-release-notes Importance: Undecided Status: New -- Indicator-application does not support vertical panels https://bugs.launchpad.net/bugs/498182 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 546992] Re: Xubuntu 10.04 usb automount fails if autologin is on
~/.xsession-errors log ** Attachment added: ".xsession-errors" http://launchpadlibrarian.net/43410232/.xsession-errors -- Xubuntu 10.04 usb automount fails if autologin is on https://bugs.launchpad.net/bugs/546992 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 554034] Re: WARNING: at /build/buildd/linux-2.6.32/net/wireless/core.c:614 wdev_cleanup_work 0xe9/0x110 [cfg80211]()
This happened on resume from sleep. -- WARNING: at /build/buildd/linux-2.6.32/net/wireless/core.c:614 wdev_cleanup_work 0xe9/0x110 [cfg80211]() https://bugs.launchpad.net/bugs/554034 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 557598] Re: xbindkeys mapping wrong keys
Figured out the problem. For some reason, my keymap was set for Ireland instead of Generic 104. Don't ask me how. After resetting to the correct one (and applying it to system), all is good and xbindkeys -k maps the correct keycodes. YEA!!! Narnie ** Tags added: string-fix -- xbindkeys mapping wrong keys https://bugs.launchpad.net/bugs/557598 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 557847] Re: very low connection bit rate
u...@pc:~$ sudo lspci -v -s 12:00.0 12:00.0 Network controller: Broadcom Corporation BCM43224 802.11a/b/g/n (rev 01) Subsystem: Dell Device 000e Flags: bus master, fast devsel, latency 0, IRQ 17 Memory at fbe0 (64-bit, non-prefetchable) [size=16K] Capabilities: [40] Power Management version 3 Capabilities: [58] Vendor Specific Information Capabilities: [48] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable- Capabilities: [d0] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [13c] Virtual Channel Capabilities: [160] Device Serial Number 17-c4-XX-XX-XX-XX-XX-XX Capabilities: [16c] Power Budgeting Kernel driver in use: wl Kernel modules: wl -- very low connection bit rate https://bugs.launchpad.net/bugs/557847 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 557847] Re: very low connection bit rate
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/43409917/Dependencies.txt -- very low connection bit rate https://bugs.launchpad.net/bugs/557847 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 557847] [NEW] very low connection bit rate
Public bug reported: The driver give me very bad bit rate. u...@pc:~$ sudo iwconfig eth1 eth1 IEEE 802.11abgn ESSID:"home.lan" Mode:Managed Frequency:5.24 GHz Access Point: 00:23:69:3B:2B:80 Bit Rate=2 Mb/s Tx-Power:24 dBm Retry min limit:7 RTS thr:off Fragment thr:off Encryption key:off Power Managementmode:All packets received Link Quality=4/5 Signal level=-58 dBm Noise level=-94 dBm Rx invalid nwid:0 Rx invalid crypt:1 Rx invalid frag:0 Tx excessive retries:1381 Invalid misc:1 Missed beacon:0 On Windows, I get ~300 Mbps My AccessPoint is an Linksys WRT610N with FW: 1.00.03 B15 ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: bcmwl-kernel-source 5.60.48.36+bdcom-0ubuntu2 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic-pae 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic-pae i686 NonfreeKernelModules: nvidia wl Architecture: i386 Date: Thu Apr 8 07:32:56 2010 EcryptfsInUse: Yes InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100318) ProcEnviron: LANG=de_DE.utf8 SHELL=/bin/bash SourcePackage: bcmwl ** Affects: bcmwl (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 lucid -- very low connection bit rate https://bugs.launchpad.net/bugs/557847 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 557849] Re: kopete doesn't realise it's been disconnected and therefore won't reconnect
** Attachment added: "Dependencies.txt" http://launchpadlibrarian.net/43392595/Dependencies.txt ** Attachment added: "XsessionErrors.txt" http://launchpadlibrarian.net/43392596/XsessionErrors.txt -- kopete doesn't realise it's been disconnected and therefore won't reconnect https://bugs.launchpad.net/bugs/557849 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to kopete in ubuntu. -- kubuntu-bugs mailing list kubuntu-b...@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs
[Bug 557849] [NEW] kopete doesn't realise it's been disconnected and therefore won't reconnect
Public bug reported: Binary package hint: kopete Kopete doesn't realise it has been disconnected, at least when connected to XMPP servers, and therefore doesn't automatically reconnect. Therefore it always has to be manually disconnected and reconnected after, say, every sleep-wake cycle. Steps to reproduce: 1. Configure Kopete to connect to XMPP servers. Mine is connected to Facebook chat and Google Chat. 2. Set Kopete running. Check that some contacts show up as being online. 3. Put your machine to sleep and wake it up again. 4. Look at your contacts. They are all marked offline. 5. Change status to online. This will not work. 4. Change status to offline and then to online. Now your contacts will appear to come online again. ProblemType: Bug Architecture: amd64 Date: Thu Apr 8 01:08:58 2010 DistroRelease: Ubuntu 9.10 InstallationMedia: Kubuntu 9.10 "Karmic Koala" - Release amd64 (20091027) Package: kopete 4:4.3.2-0ubuntu4 ProcEnviron: LANGUAGE= PATH=(custom, no user) LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: kdenetwork Uname: Linux 2.6.31.6-rt19 x86_64 ** Affects: kopete (Ubuntu) Importance: Undecided Status: New ** Tags: amd64 apport-bug -- kopete doesn't realise it's been disconnected and therefore won't reconnect https://bugs.launchpad.net/bugs/557849 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 484648] Re: Regression: Suspend no longer works with linux 2.6.31-15 on Dell mini10v
This bug report was marked as Incomplete and has not had any updated comments for quite some time. As a result this bug is being closed. Please reopen if this is still an issue in the current Ubuntu release http://www.ubuntu.com/getubuntu/download . Also, please be sure to provide any requested information that may have been missing. To reopen the bug, click on the current status under the Status column and change the status back to "New". Thanks. [This is an automated message. Apologies if it has reached you inappropriately; please just reply to this message indicating so.] -- Regression: Suspend no longer works with linux 2.6.31-15 on Dell mini10v https://bugs.launchpad.net/bugs/484648 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 533502] Re: Cannot install package
yeah it needs a patch from upstream to build against the new API. ** Changed in: xserver-xorg-input-mutouch (Ubuntu) Status: New => In Progress ** Changed in: xserver-xorg-input-mutouch (Ubuntu) Assignee: (unassigned) => Timo Aaltonen (tjaalton) -- Cannot install package https://bugs.launchpad.net/bugs/533502 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 548952] Re: gnome-nettool crashed with SIGSEGV in on_ping_graph_expose()
** Bug watch added: GNOME Bug Tracker #615142 https://bugzilla.gnome.org/show_bug.cgi?id=615142 ** Changed in: murrine Importance: Undecided => Unknown ** Changed in: murrine Status: New => Unknown ** Changed in: murrine Remote watch: None => GNOME Bug Tracker #615142 -- gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() https://bugs.launchpad.net/bugs/548952 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 557842] Re: digikam crash when clicking on .MOV file in album
I attempted to report this upstream and have this bug track that, but bugs.kde.org is broken right now, at least for reporting bugs. ** Bug watch added: KDE Bug Tracking System #233691 http://bugs.kde.org/show_bug.cgi?id=233691 ** Also affects: digikam via http://bugs.kde.org/show_bug.cgi?id=233691 Importance: Unknown Status: Unknown -- digikam crash when clicking on .MOV file in album https://bugs.launchpad.net/bugs/557842 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 552165] Re: ureadahead should be disabled by default
Disabling ureadahead by default does not seem like a reasonable solution. There might be another problem that is compounded by ureadahead. It might help if you post a bootchart. You might want to look at this thread: http://ubuntuforums.org/showthread.php?t=1434502 -- ureadahead should be disabled by default https://bugs.launchpad.net/bugs/552165 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 557749] Re: Soundcard not detected Lucid EEEpc 1000He
I forgot to add that the situation didn't with the linux-alsa-driver- modules-$(uname -r) from ppa:ubuntu-audio-dev. -- Soundcard not detected Lucid EEEpc 1000He https://bugs.launchpad.net/bugs/557749 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 557749] Re: Soundcard not detected Lucid EEEpc 1000He
In the boot log, there an error report from alsa. "No codecs found!", unfortunately I don't know how to correct it. -- Soundcard not detected Lucid EEEpc 1000He https://bugs.launchpad.net/bugs/557749 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 557749] ProcCpuinfo.txt
apport information ** Attachment added: "ProcCpuinfo.txt" http://launchpadlibrarian.net/43409683/ProcCpuinfo.txt -- Soundcard not detected Lucid EEEpc 1000He https://bugs.launchpad.net/bugs/557749 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 557749] PciMultimedia.txt
apport information ** Attachment added: "PciMultimedia.txt" http://launchpadlibrarian.net/43409657/PciMultimedia.txt -- Soundcard not detected Lucid EEEpc 1000He https://bugs.launchpad.net/bugs/557749 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 557749] CurrentDmesg.txt
apport information ** Attachment added: "CurrentDmesg.txt" http://launchpadlibrarian.net/43409656/CurrentDmesg.txt -- Soundcard not detected Lucid EEEpc 1000He https://bugs.launchpad.net/bugs/557749 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 557749] Re: Soundcard not detected Lucid EEEpc 1000He
apport information ** Description changed: I had this problem in Karmic but did not report report the bug. As it is still not working in Lucid, I decided to report this. the soundcard is not detected and I hear crackling noises during boot and while the laptop is running. The sound worked perfectly in Jaunty. ProblemType: Bug DistroRelease: Ubuntu 10.04 Package: alsa-base 1.0.22.1+dfsg-0ubuntu3 ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Uname: Linux 2.6.32-19-generic i686 AlsaDevices: total 0 crw-rw+ 1 root audio 116, 3 2010-04-08 00:20 seq crw-rw+ 1 root audio 116, 2 2010-04-08 00:20 timer AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21. AplayDevices: aplay: device_list:223: no soundcards found... Architecture: i386 ArecordDevices: arecord: device_list:223: no soundcards found... AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: Date: Thu Apr 8 01:18:56 2010 LiveMediaBuild: Ubuntu-Netbook 10.04 "Lucid Lynx" - Beta i386 (20100406.1) PackageArchitecture: all ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash SourcePackage: alsa-driver Symptom: audio Title: Soundcard not detected dmi.bios.date: 03/05/2009 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0607 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: 1000HE dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: x.xx dmi.chassis.asset.tag: 0x dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTek Computer INC. dmi.chassis.version: x.x dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0607:bd03/05/2009:svnASUSTeKComputerINC.:pn1000HE:pvrx.x:rvnASUSTeKComputerINC.:rn1000HE:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x: dmi.product.name: 1000HE dmi.product.version: x.x dmi.sys.vendor: ASUSTeK Computer INC. --- AlsaDevices: total 0 crw-rw+ 1 root audio 116, 1 2010-04-08 06:03 seq crw-rw+ 1 root audio 116, 33 2010-04-08 06:03 timer AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.22.1. Compiled on Apr 7 2010 for kernel 2.6.32-19-generic (SMP). AplayDevices: aplay: device_list:223: no soundcards found... Architecture: i386 ArecordDevices: arecord: device_list:223: no soundcards found... AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: DistroRelease: Ubuntu 10.04 InstallationMedia: Ubuntu-Netbook 10.04 "Lucid Lynx" - Beta i386 (20100406.1) Package: alsa-driver (not installed) ProcEnviron: LANGUAGE=pt:pt_BR:en LANG=pt_PT.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 Tags: lucid ubuntu-une Uname: Linux 2.6.32-19-generic i686 UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare dmi.bios.date: 03/05/2009 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0607 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: 1000HE dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: x.xx dmi.chassis.asset.tag: 0x dmi.chassis.type: 10 dmi.chassis.vendor: ASUSTek Computer INC. dmi.chassis.version: x.x dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0607:bd03/05/2009:svnASUSTeKComputerINC.:pn1000HE:pvrx.x:rvnASUSTeKComputerINC.:rn1000HE:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x: dmi.product.name: 1000HE dmi.product.version: x.x dmi.sys.vendor: ASUSTeK Computer INC. + + --- + AlsaDevices: + total 0 + crw-rw+ 1 root audio 116, 1 2010-04-08 06:03 seq + crw-rw+ 1 root audio 116, 33 2010-04-08 06:03 timer + AlsaVersion: + Advanced Linux Sound Architecture Driver Version 1.0.22.1. + Compiled on Apr 7 2010 for kernel 2.6.32-19-generic (SMP). + AplayDevices: aplay: device_list:223: no soundcards found... + Architecture: i386 + ArecordDevices: arecord: device_list:223: no soundcards found... + AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', '/dev/snd/timer', '/dev/sequencer2', '/dev/sequencer'] failed with exit code 1: + DistroRelease: Ubuntu 10.04 + InstallationMedia: Ubuntu-Netbook 10.04 "Lucid Lynx" - Beta i386 (20100406.1) + Package: alsa-driver (not installed) + ProcEnviron: + LANGUAGE=pt:pt_BR:en + LANG=pt_PT.UTF-8 + SHELL=/bin/bash + ProcVersionSignature: Ubuntu 2.6.32-19.28-generic 2.6.32.10+drm33.1 + Tags: lucid ubuntu-une + Uname: Linux 2.6.32-19-generic i686 + UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare + dmi.bios.date: 03/05/2009 + dmi.bios.vendor: American Megatrends Inc. + dmi.bios.version: 0607 + dmi.board.asset.tag: To Be Filled By O.E.M. + dmi.board.name: 1000HE + dmi.board.vendor: ASUSTeK Computer INC. + dmi.board.version: x.xx + dmi.chassis.asset.tag: 0x + dmi.chassis.type: 10 + dmi.chassis.vendor: ASUSTek Computer INC. + dmi.chassis.version: x.x + dmi.m
[Bug 557844] [NEW] homepage specified in manpage does not exist
Public bug reported: Binary package hint: gatos http://manpages.ubuntu.com/manpages/karmic/man1/gatos.1.html says "The GATOS homepage is located at: http://www.core.binghamton.edu/~insomnia/gatos/"; but that domain does not exist. So likewise the maintainer listed there will not be contactable. ** Affects: gatos (Ubuntu) Importance: Undecided Status: New -- homepage specified in manpage does not exist https://bugs.launchpad.net/bugs/557844 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 194494] Re: telepathy-butterfly crashed with NotImplementedError in _on_error()
looking through the stacktrace: http://gist.github.com/359791 looks like SwitchboardP2PTransport isn't implementing __on_message_undelivered(command) so the base class SwitchboardClient tries to call _on_error but SwitchboardP2PTransport hasn't overridden _on_error, so SwitchboardClient raises a NotImplementedError So Switchboard needs to implement _on_error, but I'm not sure what the implementation should look like. -- telepathy-butterfly crashed with NotImplementedError in _on_error() https://bugs.launchpad.net/bugs/194494 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 532095] Re: Changing left/right balance in sound-preferences changes the output volume slider
I too seem to be affected by this bug. Ubuntu 10.04 LTS updated as of last week: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14 gnome-media 2.30.0-0ubuntu1 libasound2 1.0.22-0ubuntu6 I have both an SBLive! card and built-in audio in this system - the inability to adjust left/right balance (and associated lowering of main volume) via g-v-c applies to both of them. # aplay -l List of PLAYBACK Hardware Devices card 0: Live [SB Live! Value [CT4670]], device 0: emu10k1 [ADC Capture/Standard PCM Playback] Subdevices: 31/32 Subdevice #0: subdevice #0 ... Subdevice #31: subdevice #31 card 0: Live [SB Live! Value [CT4670]], device 2: emu10k1 efx [Multichannel Capture/PT Playback] Subdevices: 8/8 Subdevice #0: subdevice #0 ... Subdevice #7: subdevice #7 card 0: Live [SB Live! Value [CT4670]], device 3: emu10k1 [Multichannel Playback] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Intel [HDA Intel], device 0: ALC889A Analog [ALC889A Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 1: Intel [HDA Intel], device 1: ALC889A Digital [ALC889A Digital] Subdevices: 1/1 Subdevice #0: subdevice #0 Let me know if there is any other specific information I can provide to help pinpoint the issue. -- Changing left/right balance in sound-preferences changes the output volume slider https://bugs.launchpad.net/bugs/532095 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 539206] Re: Two packaging issues; debug package and setuid for sippasswd
This bug was fixed in the package sipwitch - 0.7.4-0ubuntu1 --- sipwitch (0.7.4-0ubuntu1) lucid; urgency=high * New upstream version (LP: #539206): - Upstream fix for sippasswd sending realm instead of hash - Upstream fix for server uuid realm when no realm set - New server debugging and management options from upstream * debian/rules: - Fix for sippasswd setuid by using override_dh_fixperms - Added back debug symbols by using override_dh_strip * debian/control: - bump Standards-version to 3.8.4. No changes required. - New sipwitch-cgi subpackage for proper install of cgi webservice - Updated short and long descriptions * debian/sipwitch.install: do not install cgi related files -- David SugarMon, 15 Mar 2010 14:35:01 -0400 ** Changed in: sipwitch (Ubuntu) Status: Fix Committed => Fix Released -- Two packaging issues; debug package and setuid for sippasswd https://bugs.launchpad.net/bugs/539206 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 546718] Re: gnome-nettool crashed with SIGSEGV in gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in gtk_paint_layout() https://bugs.launchpad.net/bugs/546718 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 548952] Re: gnome-nettool crashed with SIGSEGV in on_ping_graph_expose()
This is not a gnome-nettool problem, but a problem in murrine engine instead. The crash only happen with this GTK+ engine. This is the line where the program crash: http://git.gnome.org/browse/gnome-nettool/tree/src/ping.c#n166 ** Also affects: gtk2-engines-murrine Importance: Undecided Status: New ** Also affects: murrine Importance: Undecided Status: New -- gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() https://bugs.launchpad.net/bugs/548952 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 549048] Re: gnome-nettool crashed with SIGSEGV in gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in gtk_paint_layout() https://bugs.launchpad.net/bugs/549048 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 549928] Re: gnome-nettool crashed with SIGSEGV in IA__gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in IA__gtk_paint_layout() https://bugs.launchpad.net/bugs/549928 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 555758] Re: when i to ping using Network tools provided with ubuntu the app crashes
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- when i to ping using Network tools provided with ubuntu the app crashes https://bugs.launchpad.net/bugs/555758 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 555877] Re: gnome-nettool crashed with SIGSEGV in gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in gtk_paint_layout() https://bugs.launchpad.net/bugs/555877 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 556228] Re: gnome-nettool crashed with SIGSEGV in gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in gtk_paint_layout() https://bugs.launchpad.net/bugs/556228 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 557827] Re: FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main)
** Attachment added: "Install log" http://launchpadlibrarian.net/43409710/install.log -- FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main) https://bugs.launchpad.net/bugs/557827 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 557827] Re: FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main)
** Attachment added: "Upgrade log" http://launchpadlibrarian.net/43409706/upgrade.log -- FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main) https://bugs.launchpad.net/bugs/557827 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 557842] [NEW] digikam crash when clicking on .MOV file in album
Public bug reported: Binary package hint: digikam Application: digikam (1.1.0) KDE Platform Version: 4.4.2 (KDE 4.4.2) Qt Version: 4.6.2 Operating System: Linux 2.6.32-19-generic i686 Distribution: Ubuntu lucid (development branch) Steps: Select the "Albums" view/tab, navigate to an album which contains a bunch of photos and at least 1 .MOV file, click (single) on the .MOV file. digikam will immediately crash. The KDE crash handler generated the backtrace information below. However, it gave it a 0-star rating and said the information was useless, I guess because the crashing thread's stack appears to be corrupt. Note that the KDE crash handler's automatic installation of -dbg packages was also extremely poor, since it missed the packages for a ton of libraries; I manually installed those. Application: digiKam (digikam), signal: Segmentation fault [Current thread is 1 (Thread 0xb7810760 (LWP 2147))] Thread 18 (Thread 0xb61d8b70 (LWP 2150)): #0 0x00d92422 in __kernel_vsyscall () #1 0x00d5e015 in pthread_cond_wait@@GLIBC_2.3.2 () at ../nptl/sysdeps/unix/sysv/linux/i386/i686/../i486/pthread_cond_wait.S:122 #2 0x0463b287 in QWaitConditionPrivate::wait (this=0x8733a30, mutex=0x8733a2c, time=4294967295) at thread/qwaitcondition_unix.cpp:87 #3 QWaitCondition::wait (this=0x8733a30, mutex=0x8733a2c, time=4294967295) at thread/qwaitcondition_unix.cpp:159 #4 0x0830dca4 in Digikam::ScanController::run (this=0x873b718) at /build/buildd/digikam-1.1.0/digikam/scancontroller.cpp:502 #5 0x0463a32e in QThreadPrivate::start (arg=0x873b718) at thread/qthread_unix.cpp:248 #6 0x00d5996e in start_thread (arg=0xb61d8b70) at pthread_create.c:300 #7 0x0195e9de in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130 Thread 17 (Thread 0xb593fb70 (LWP 2152)): #0 0x01d39e16 in *__GI_clock_gettime (clock_id=30662644, tp=0xb593efa8) at ../sysdeps/unix/clock_gettime.c:100 #1 0x047656fb in qt_gettime () at kernel/qcore_unix.cpp:111 #2 0x0476a825 in QTimerInfoList::updateCurrentTime (this=0x897c834) at kernel/qeventdispatcher_unix.cpp:340 #3 0x0476a86a in QTimerInfoList::timerWait (this=0x897c834, tm=...) at kernel/qeventdispatcher_unix.cpp:443 #4 0x04768818 in timerSourcePrepareHelper (src=, timeout=0xb593f0bc) at kernel/qeventdispatcher_glib.cpp:136 #5 0x047688a5 in timerSourcePrepare (source=0x0, timeout=0x1d3dff4) at kernel/qeventdispatcher_glib.cpp:169 #6 0x01c92aca in IA__g_main_context_prepare (context=0x8a21f00, priority=0xb593f13c) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2280 #7 0x01c92ee9 in g_main_context_iterate (context=0x8a21f00, block=, dispatch=1, self=0x8746b90) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2571 #8 0x01c934b8 in IA__g_main_context_iteration (context=0x8a21f00, may_block=1) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2654 #9 0x0476860f in QEventDispatcherGlib::processEvents (this=0x8a29798, flags=...) at kernel/qeventdispatcher_glib.cpp:414 #10 0x0473b059 in QEventLoop::processEvents (this=0xb593f280, flags=) at kernel/qeventloop.cpp:149 #11 0x0473b4aa in QEventLoop::exec (this=0xb593f280, flags=...) at kernel/qeventloop.cpp:201 #12 0x046375a8 in QThread::exec (this=0x89fcc48) at thread/qthread.cpp:487 #13 0x003661ed in Digikam::ImageFilterModelWorker::Thread::run (this=0x89fcc48) at /build/buildd/digikam-1.1.0/obj-i486-linux-gnu/digikam/../../libs/models/imagefiltermodelthreads.h:66 #14 0x0463a32e in QThreadPrivate::start (arg=0x89fcc48) at thread/qthread_unix.cpp:248 #15 0x00d5996e in start_thread (arg=0xb593fb70) at pthread_create.c:300 #16 0x0195e9de in clone () at ../sysdeps/unix/sysv/linux/i386/clone.S:130 Thread 16 (Thread 0xb4effb70 (LWP 2153)): #0 0x01d39e16 in *__GI_clock_gettime (clock_id=30662644, tp=0xb4efefa8) at ../sysdeps/unix/clock_gettime.c:100 #1 0x047656fb in qt_gettime () at kernel/qcore_unix.cpp:111 #2 0x0476a825 in QTimerInfoList::updateCurrentTime (this=0x899b8cc) at kernel/qeventdispatcher_unix.cpp:340 #3 0x0476a86a in QTimerInfoList::timerWait (this=0x899b8cc, tm=...) at kernel/qeventdispatcher_unix.cpp:443 #4 0x04768818 in timerSourcePrepareHelper (src=, timeout=0xb4eff0bc) at kernel/qeventdispatcher_glib.cpp:136 #5 0x047688a5 in timerSourcePrepare (source=0x0, timeout=0x1d3dff4) at kernel/qeventdispatcher_glib.cpp:169 #6 0x01c92aca in IA__g_main_context_prepare (context=0x8772c58, priority=0xb4eff13c) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2280 #7 0x01c92ee9 in g_main_context_iterate (context=0x8772c58, block=, dispatch=1, self=0x8a9a280) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2571 #8 0x01c934b8 in IA__g_main_context_iteration (context=0x8772c58, may_block=1) at /build/buildd/glib2.0-2.24.0/glib/gmain.c:2654 #9 0x0476860f in QEventDispatcherGlib::processEvents (this=0x8968a78, flags=...) at kernel/qeventdispatcher_glib.cpp:414 #10 0x0473b059 in QEventLoop::processEvents (this=0xb4eff280, flags=) at kernel/qeventloop.cpp:149 #11 0x0473b4aa in QEventLoop::exec (this=0xb4eff280, flags=...) at kernel/
[Bug 557827] Re: FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main)
** Attachment added: "Build log" http://launchpadlibrarian.net/43409566/pyfribidi_0.10.0-2.buildlog -- FFe: Sync pyfribidi 0.10.0-2 (universe) from Debian testing (main) https://bugs.launchpad.net/bugs/557827 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 267330] Re: update-apt-xapian-index crashed with OSError in getmtime()
Another on Me too on lucid beta 3 . -- update-apt-xapian-index crashed with OSError in getmtime() https://bugs.launchpad.net/bugs/267330 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 539206] Re: Two packaging issues; debug package and setuid for sippasswd
Uploaded. Thanks for your work! I only reworked the changelog, to make clearer the affected files. Thanks, Fabrice ** Changed in: sipwitch (Ubuntu) Status: Confirmed => Fix Committed -- Two packaging issues; debug package and setuid for sippasswd https://bugs.launchpad.net/bugs/539206 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 539999] Re: aptd crashed with SIGSEGV in __fprintf_chk()
I got a crash report after automatically updating some packages. -- aptd crashed with SIGSEGV in __fprintf_chk() https://bugs.launchpad.net/bugs/53 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
Re: [Bug 544520] Re: Cannot resize partition on drive where swap partition resides
You are missing the point. Re-read the initial bug. I can resize a partition on a drive that has another partition mounted on it (say, ntfs, or ext3). However I cannot resize a partition on a drive where the swap partition resides unless I run swapoff. Perhaps this is inherent, but I have never noticed it before. -Matthew Gardiner http://www.az1photo.com --- On Wed, 4/7/10, Jan Claeys wrote: From: Jan Claeys Subject: [Bug 544520] Re: Cannot resize partition on drive where swap partition resides To: flash...@yahoo.com Date: Wednesday, April 7, 2010, 9:35 PM > Still seems like a bug, as this behavior is exclusive to Lucid. I have never been able to resize partitions on a device that's "in use", so this is certainly not exclusive to Lucid? -- Cannot resize partition on drive where swap partition resides https://bugs.launchpad.net/bugs/544520 You received this bug notification because you are a direct subscriber of the bug. Status in “gparted” package in Ubuntu: New Bug description: Binary package hint: gparted Have 3 physical discs. SDB is partitioned as follows: SDB1- 680GB NTFS - Label "media". SDB3 - 10 GB ext3 label "Puppy". SDB4 - 8 GB Swap partition. I am able to freely manage all partitions on all drives with one exception: I cannot resize any partitions on SDB, though the option to delete or format them is there. I am assuming this has something to do with the swap partition being on that drive (it is the only thing that could be an indicator, as all 3 drives have both NTFS and ext2, 3, or 4 partitions on them. ProblemType: Bug Architecture: i386 Date: Mon Mar 22 20:56:27 2010 DistroRelease: Ubuntu 10.04 LiveMediaBuild: Ubuntu 10.04 "Lucid Lynx" - Beta i386 (20100318) Package: gparted 0.5.1-1ubuntu2 ProcEnviron: LANG=en_US.UTF-8 SHELL=/bin/bash ProcVersionSignature: Ubuntu 2.6.32-16.25-generic SourcePackage: gparted Uname: Linux 2.6.32-16-generic i686 To unsubscribe from this bug, go to: https://bugs.launchpad.net/ubuntu/+source/gparted/+bug/544520/+subscribe -- Cannot resize partition on drive where swap partition resides https://bugs.launchpad.net/bugs/544520 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 553628] Re: gnome-nettool crashed with SIGSEGV in gtk_paint_layout()
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug is no longer a duplicate of bug 549048 gnome-nettool crashed with SIGSEGV in gtk_paint_layout() ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashed with SIGSEGV in gtk_paint_layout() https://bugs.launchpad.net/bugs/553628 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 557838] Re: Candidate revision 2.16.1-4ubuntu1
Buildlogs for i386 & amd64 can be found at: https://launchpad.net/~aelmahmoudy/+archive/ppa/+build/1681201/+files /buildlog_ubuntu-lucid-i386.guile-gnome- platform_2.16.1-4ubuntu1_FULLYBUILT.txt.gz https://launchpad.net/~aelmahmoudy/+archive/ppa/+build/1681200/+files /buildlog_ubuntu-lucid-amd64.guile-gnome- platform_2.16.1-4ubuntu1_FULLYBUILT.txt.gz -- Candidate revision 2.16.1-4ubuntu1 https://bugs.launchpad.net/bugs/557838 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 557838] Re: Candidate revision 2.16.1-4ubuntu1
** Attachment added: "Debdiff against Debian's guile-gnome-platform 2.16.1-4" http://launchpadlibrarian.net/43409461/guile-gnome-platform_2.16.1-4ubuntu1.debdiff -- Candidate revision 2.16.1-4ubuntu1 https://bugs.launchpad.net/bugs/557838 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 557838] [NEW] Candidate revision 2.16.1-4ubuntu1
Public bug reported: A previous revision of this package was removed from lucid because it FTBFS. guile-gnome-platform (2.16.1-4ubuntu1) lucid; urgency=low * Merge from debian unstable, remaining changes: - Add -s -noreset to xvfb-run call in debian/rules -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 07 Apr 2010 23:25:02 +0200 ** Affects: guile-gnome-platform (Ubuntu) Importance: Undecided Status: New ** Description changed: + A previous revision of this package was removed from lucid because it + FTBFS. + guile-gnome-platform (2.16.1-4ubuntu1) lucid; urgency=low - * Merge from debian unstable, remaining changes: - - Add -s -noreset to xvfb-run call in debian/rules + * Merge from debian unstable, remaining changes: + - Add -s -noreset to xvfb-run call in debian/rules - -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 07 + -- أحمد المحمودي (Ahmed El-Mahmoudy) Wed, 07 Apr 2010 23:25:02 +0200 -- Candidate revision 2.16.1-4ubuntu1 https://bugs.launchpad.net/bugs/557838 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 543030] Re: GTK-Jockey does not activate the network interface
Hi Karsten. your post, lspci_ubuntu_bugreport.txt indicates you wireless card model to be bcm4353 and thus is not supported by the b43/STA driver package bcmwl-kernel-source. -- GTK-Jockey does not activate the network interface https://bugs.launchpad.net/bugs/543030 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 551963] Re: gnome-nettool crashes ping tab segfault
*** This bug is a duplicate of bug 548952 *** https://bugs.launchpad.net/bugs/548952 ** This bug has been marked a duplicate of bug 548952 gnome-nettool crashed with SIGSEGV in on_ping_graph_expose() -- gnome-nettool crashes ping tab segfault https://bugs.launchpad.net/bugs/551963 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