[Bug 275379] Re: Intrepid: KDM Sometimes Doesn't Appear

2009-03-22 Thread Martin Eve
I too have had this problem with nvidia 177 on intrepid with kde4.2. Disabling usplash in grub fixes the problem. -- Intrepid: KDM Sometimes Doesn't Appear https://bugs.launchpad.net/bugs/275379 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubu

[Bug 354059] Re: [jaunty] kickoff focus issue (4.2.2 regression)

2009-04-05 Thread Martin Eve
Confirmed; extremely irritating! -- [jaunty] kickoff focus issue (4.2.2 regression) https://bugs.launchpad.net/bugs/354059 You received this bug notification because you are a member of Kubuntu Bugs, which is subscribed to kdebase-workspace in ubuntu. -- kubuntu-bugs mailing list kubuntu-b...@l

[Bug 397628] Re: KDE 4.3RC1: Gwenview and Konqueror crash/partially broken with message:symbol lookup error: /usr/lib/libnepomuk.so.4: undefined symbol: _ZN7Soprano4NodeC1ERKNS_12LiteralValueE

2009-08-22 Thread Martin Eve
I am also experiencing this bug after an upgrade to 4.3.0 via the ppa. Here's some further diagnostics: $ ls -al /usr/lib/libnepomuk.so* lrwxrwxrwx 1 root root 19 2009-08-06 17:49 /usr/lib/libnepomuk.so.4 -> libnepomuk.so.4.3.0 -rw-r--r-- 1 root root 412456 2009-07-31 13:38 /usr/lib/libnepo

[Bug 397628] Re: KDE 4.3RC1: Gwenview and Konqueror crash/partially broken with message:symbol lookup error: /usr/lib/libnepomuk.so.4: undefined symbol: _ZN7Soprano4NodeC1ERKNS_12LiteralValueE

2009-08-22 Thread Martin Eve
If it's of any use: lrwxrwxrwx 1 root root 15 2009-08-06 17:49 /usr/lib/libsoprano.so -> libsoprano.so.4 lrwxrwxrwx 1 root root 19 2009-08-06 17:49 /usr/lib/libsoprano.so.4 -> libsoprano.so.4.2.0 -rw-r--r-- 1 root root 940296 2009-07-23 05:20 /usr/lib/libsop

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-22 Thread Martin Eve
Andrew: devs had summit last week, so it's slow going on patch review. In the meantime, you can copy this attached file over your /etc/bash_completion.d/ssh file and you will again have support. ** Attachment added: "ssh" http://launchpadlibrarian.net/35953337/ssh -- regression for completin

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-22 Thread Martin Eve
humble_coffee: thanks for that - I'll try and work out what's going on there! -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-23 Thread Martin Eve
Here's a revised version that fixes the initial bug, as well as defaulting to homedir on remote when pressing [TAB] after ":". Hoping to package this into a quilt patch soon. Users on Karmic can use this until a proper patch is released. ** Attachment added: "ssh" http://launchpadlibrarian.ne

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-23 Thread Martin Eve
And one further fix to the above attached here. Would appreciate a sponsorship review of the debdiff attached, while the "ssh" attached can be used by current users. ** Attachment added: "ssh" http://launchpadlibrarian.net/35968198/ssh -- regression for completing remote files/dirs over ssh

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-23 Thread Martin Eve
And the debdiff. ** Attachment added: "bash-completion_scp_fixes.debdiff" http://launchpadlibrarian.net/35968265/bash_completion_scp_fixes.debdiff -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-01-19 Thread Martin Eve
Hi, This patch doesn't actually change the input passed to scp, but rather alters the way that scp completes on the bash prompt. For example, say on the remote server I have: ~/Hello Folder One ~/Hello Folder Two ~/Hello Different Three Typing: scp -r remote:~/Hell[TAB] will result, with this

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-01-19 Thread Martin Eve
As one additional point to above, this patch also handles: scp -r remote:~/Hello\ Fol[TAB] which will result in: scp -r remote:~/Hello\\\ Folder\\\ so basically, it standardizes \[SPACE] to \\\[SPACE] but also allows for repeated completions using either scheme. -- bash completion for scp ove

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2010-02-24 Thread Martin Eve
zandolf: seems strange... When I do: touch my_file scp my_f[TAB] I get: scp my_file -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ub

[Bug 481310] [NEW] ssh/scp autocompletion broken in Karmic

2009-11-12 Thread Martin Eve
Public bug reported: Binary package hint: bash-completion When passwordless authentication is setup, scp allows autocompletion of the nature: scp host:/home/martin/Doc This appears to be broken in Karmic (Kubuntu anyway) as this line in /etc/bash_completion.d/ssh causes local expansion of dire

[Bug 481310] Re: ssh/scp autocompletion broken in Karmic

2009-11-12 Thread Martin Eve
I have written a succinct patch that appears to fix the issue. Regards, Martin ** Attachment added: "Patch" http://launchpadlibrarian.net/35575757/bash-completion_1.0-3ubuntu3.debdiff -- ssh/scp autocompletion broken in Karmic https://bugs.launchpad.net/bugs/481310 You received this bug not

[Bug 481310] Re: ssh/scp autocompletion broken in Karmic

2009-11-12 Thread Martin Eve
*** This bug is a duplicate of bug 449349 *** https://bugs.launchpad.net/bugs/449349 ** This bug has been marked a duplicate of bug 449349 regression for completing remote files/dirs over ssh -- ssh/scp autocompletion broken in Karmic https://bugs.launchpad.net/bugs/481310 You received th

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-12 Thread Martin Eve
Here's an alternate patch that I wrote that works exclusively on bash 4. Instead of using get_cword, this patch completes where a colon was the previous token. ** Attachment added: "bash-completion_1.0-3ubuntu3.debdiff" http://launchpadlibrarian.net/35576055/bash-completion_1.0-3ubuntu3.debdif

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-04-13 Thread Martin Eve
@Thierry: Yes, I see what you mean; scp completion on directories with other special characters does, indeed, fail with this patch. It would be nice to have their more complete fix, but (unless we sync the entire unstable git branch) I don't know how the contrib/ssh component will interact with th

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2010-04-13 Thread Martin Eve
Patch forwarded to bash-completion mailing list. -- Bash completion for wget -o doesn't escape spaces. https://bugs.launchpad.net/bugs/435055 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.

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2010-04-13 Thread Martin Eve
Fixed upstream: http://git.debian.org/?p=bash-completion/bash- completion.git;a=commitdiff;h=855edbfdb7d46b7533b0f08843fb808b104c1d1f -- Bash completion for wget -o doesn't escape spaces. https://bugs.launchpad.net/bugs/435055 You received this bug notification because you are a member of Ubuntu

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2010-04-06 Thread Martin Eve
Hi Thierry, Apologies for that garbled last message - I've been somewhat ill lately! I was actually referring to another bug that I will shortly fix. In the meanwhile, here is an updated patch for lucid to fix this minor annoyance. Best, Martin ** Attachment added: "bash-completion_1.1-3ubuntu

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2010-04-06 Thread Martin Eve
** Tags added: lucid -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 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.u

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-04-06 Thread Martin Eve
** Tags added: lucid ** This bug is no longer a duplicate of bug 449349 regression for completing remote files/dirs over ssh -- bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ") https://bugs.launchpad.net/bugs/482753 You received this bug no

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-04-06 Thread Martin Eve
This issue is still present in Lucid. This single line patch works and has been tested (as the many comments at https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/449349 will testify. Please review as a fix for this regression in Lucid. Martin ** Attachment added: "bash-completion_1

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2010-04-06 Thread Martin Eve
Note: this bug is fixed upstream in *version control*. However, upstream will certainly not release in time for Lucid, hence the patch here. -- Bash completion for wget -o doesn't escape spaces. https://bugs.launchpad.net/bugs/435055 You received this bug notification because you are a member of

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-04-06 Thread Martin Eve
Note: this bug is fixed upstream in *version control*. However, upstream will certainly not release in time for Lucid, hence the patch here. -- bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ") https://bugs.launchpad.net/bugs/482753 You receive

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2010-03-30 Thread Martin Eve
@Thierry: I doubt I will be able to do this in time for lucid; I'll have a go this week. The latest bash-completion package (unstable) does work. Could be worth porting in their "ssh" file... -- Bash completion for wget -o doesn't escape spaces. https://bugs.launchpad.net/bugs/435055 You received

[Bug 397628] Re: KDE 4.3RC1: Gwenview and Konqueror crash/partially broken with message:symbol lookup error: /usr/lib/libnepomuk.so.4: undefined symbol: _ZN7Soprano4NodeC1ERKNS_12LiteralValueE

2009-10-09 Thread Martin Eve
Rechistov: that is incorrect, I am able to reproduce this on both of my Kubuntu (9.04 with KDE 4.3.1) 32 bit installs. I haven't tested on 9.10, but it seems that Alex is still experiencing it. Alex - are you 32 or 64 bit? -- KDE 4.3RC1: Gwenview and Konqueror crash/partially broken with message

[Bug 397628] Re: KDE 4.3RC1: Gwenview and Konqueror crash/partially broken with message:symbol lookup error: /usr/lib/libnepomuk.so.4: undefined symbol: _ZN7Soprano4NodeC1ERKNS_12LiteralValueE

2009-10-09 Thread Martin Eve
Interesting, so how did Grigory manage to get it working on a 32 bit variant? Indeed, although I don't know if anyone has actually looked at it... I am, sadly, not technically competent to work out what's going wrong (I assume this is some kind of dependency hell) -- KDE 4.3RC1: Gwenview and Kon

[Bug 482753] Re: bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2010-01-15 Thread Martin Eve
Patch at https://bugs.launchpad.net/ubuntu/+source/bash- completion/+bug/449349 comment #25: http://launchpadlibrarian.net/35968265/bash_completion_scp_fixes.debdiff ** Changed in: bash-completion (Ubuntu) Status: New => Confirmed ** Tags added: regression-release -- bash completion for

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2010-01-15 Thread Martin Eve
Hi Tim, Could you please clarify what exactly fails? What are your symptoms? Does remote completion fail when you use my fix? Does my fix break something that worked previously? The patch attached is meant to fix the issue arising in 9.10 (Karmic) where remote file/directory completion over SSH n

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2010-01-15 Thread Martin Eve
Minor amendment to previous comment: "For example, scp remote.host:~/my_fil[TAB] should (in this hypothetical scenario) complete to: scp ~/my_file" should read: For example, scp remote.host:~/my_fil[TAB] should (in this hypothetical scenario) complete to: scp remote.host:~/my_file -- regressio

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2010-01-15 Thread Martin Eve
(oh and Tim, please use the revised patch in comments #23 and #24 - not #20) -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs m

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-13 Thread Martin Eve
Just to clarify, I will test this patch out on a Jaunty install later as I believe it should also work on Bash 3. Kudos to Marc for his patch, but this one is a mere 3 lines worth of changes in bash_completion.d/ssh Also, can anyone qualify the function of "_expand || return 0" in _scp()? My patc

[Bug 477753] Re: autocompletion is partly broken in Karmic

2009-11-13 Thread Martin Eve
Can you give some more information on this please? I am on Kubuntu Karmic and, when I type: sudo apt-get install monode it completes to: sudo apt-get install monodevelop as expected. Is this present in the final release? -- autocompletion is partly broken in Karmic https://bugs.launchpad.ne

[Bug 470037] Re: sudo tab autocomplete shows erratic behavior with spaces in names

2009-11-13 Thread Martin Eve
I am able to reproduce this bug which is also present in Jaunty. ** Changed in: bash-completion (Ubuntu) Status: New => Confirmed -- sudo tab autocomplete shows erratic behavior with spaces in names https://bugs.launchpad.net/bugs/470037 You received this bug notification because you are

[Bug 470037] Re: sudo tab autocomplete shows erratic behavior with spaces in names

2009-11-13 Thread Martin Eve
Furthermore, this is not AMD64 specific; I am replicating on i386. -- sudo tab autocomplete shows erratic behavior with spaces in names https://bugs.launchpad.net/bugs/470037 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bug

[Bug 435055] Re: Bash completion for wget doesn't escape spaces.

2009-11-13 Thread Martin Eve
I am able to reproduce this bug on Jaunty and Karmic i386. Steps: wget -o ~/folder/start-of-folder-with-spaces-in-it Expected result: wget -o /home/martin/fully\ escaped\ name\ of\ folder Actual result: wget -o /home/martin/fully escaped name of folder ** Changed in: bash-completion (Ubuntu)

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2009-11-13 Thread Martin Eve
Patch to fix attached. Works by removing wget from the list of programs that supposedly don't take filenames. ** Attachment added: "Patch to fix bug 435055" http://launchpadlibrarian.net/35641824/bash-completion_1.0-3ubuntu3.debdiff -- Bash completion for wget -o doesn't escape spaces. https

[Bug 477753] Re: autocompletion is partly broken in Karmic

2009-11-13 Thread Martin Eve
Hi there, Could you please post the results of: uname -a and the contents of: /etc/apt/sources.list It might also be helpful to see: apt-cache show bash-completion -- autocompletion is partly broken in Karmic https://bugs.launchpad.net/bugs/477753 You received this bug notification because

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-14 Thread Martin Eve
According to my last dpkg test, my patch appears to work on Jaunty also. -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs maili

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-14 Thread Martin Eve
Here is an attached path that fixes several issues with the previous, following a discussion in #ubuntu-motu: target is now lucid LP: notation used in changelog quilt patch system used ** Attachment added: "Revised patch to fix #449349" http://launchpadlibrarian.net/35682400/bash-completion_1.

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-14 Thread Martin Eve
Argh! My apologies - my last message *only* is attached to the WRONG bug. Message #16 no longer applies in this thread. -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 435055] Re: Bash completion for wget -o doesn't escape spaces.

2009-11-14 Thread Martin Eve
Here is an attached path that fixes several issues with the previous, following a discussion in #ubuntu-motu: target is now lucid LP: notation used in changelog quilt patch system used ** Attachment added: "Revised patch to fix #435055" http://launchpadlibrarian.net/35682496/bash-completion_1.

[Bug 482643] [NEW] jockey-kde activate button does nothing with Nvidia card on Karmic

2009-11-14 Thread Martin Eve
Public bug reported: New install of Karmic, fully patched as of 2009-11-14. Hardware Drivers dialog (jockey-kde) displays the new driver and says it isn't activated. Upon clicking "activate": Expected: The driver should be installed and activated Actual: Nothing. jockey-log indicates that the

[Bug 482753] [NEW] bash completion for scp overescapes spaces and does not correctly re-filter ("\\\ " instead of "\ ")

2009-11-14 Thread Martin Eve
Public bug reported: Binary package hint: bash-completion OS: Karmic 9.10 Directory structure on target: /home/martin/directory 1/directory 2/file.txt Type: scp target:/home/martin/directory Expected: scp target:/home/martin/directory 1/directory 2/ Actual: scp target:/home/martin/directo

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-11-14 Thread Martin Eve
Ok, here's the patch that was meant to be attached. This addresses the issue of scp completion. In addition it fixes the issue described at https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/482753 This path should therefore close #449349 and #482753 Apologies if I've made any mista

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-12-25 Thread Martin Eve
Jerome: did you restart bash once you'd replaced it? -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-12-25 Thread Martin Eve
(also, can I confirm that you definitely have passwordless ssh working please?) -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bug

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-12-25 Thread Martin Eve
Hi guys, r...@expresso2:/usr/local/lib# ls -la /etc/bash_completion.d/ssh* -rw-r--r-- 1 root root 3048 2009-12-25 19:49 /etc/bash_completion.d/ssh -rw-r--r-- 1 root root 3012 2009-12-25 19:49 /etc/bash_completion.d/ssh.orig Can you try moving the ssh.orig file out of the directory please? It cou

[Bug 449349] Re: regression for completing remote files/dirs over ssh

2009-12-27 Thread Martin Eve
No problems guys; hope some sponsorship review can take place soon :p -- regression for completing remote files/dirs over ssh https://bugs.launchpad.net/bugs/449349 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing

[Bug 684640] [NEW] USB Natty alpha images fail to boot

2010-12-03 Thread Martin Eve
Public bug reported: Binary package hint: syslinux Toshiba Satellite C650D. Created USB image of Natty Alpha 1 from my desktop (Lucid) machine as per http://www.jonobacon.org/2010/11/30/testing-natty-and-unity-safely- with-a-usb-stick/ . Reboot, get SYSLINUX line and it hangs there. ProblemTyp

[Bug 684640] Re: USB Natty alpha images fail to boot

2010-12-03 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/684640 Title: USB Natty alpha images fail to boot -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/

[Bug 766992] Re: Regression: Mouse wheel stopped working

2011-11-09 Thread Martin Eve
** Changed in: xorg-server (Ubuntu) Status: Incomplete => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/766992 Title: Regression: Mouse wheel stopped working To manage notificat

[Bug 757680] Re: Unity extremely slow on Toshiba Satellite C650D

2011-11-09 Thread Martin Eve
** Changed in: fglrx-installer (Ubuntu) Status: Incomplete => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/757680 Title: Unity extremely slow on Toshiba Satellite C650D To mana

[Bug 841823] Re: After hibernate, display never returns

2011-09-08 Thread Martin Eve
As of today, option to suspend/hibernate disappeared from KDE menu options (some kernel param?) and closing the lid no longer presents this problem, although I'm not sure if the laptop now sleeps when closed... -- You received this bug notification because you are a member of Ubuntu Bugs, which i

[Bug 760463] Re: 50% of the time, boot hangs on Natty

2011-10-16 Thread Martin Eve
Yes, I also have this fixed in Oneiric. Will mark as fixed released. ** Changed in: plymouth (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/760463 Title:

[Bug 749397] Re: Wireless network fails to reconnect after suspend (Natty Beta 1)

2011-04-19 Thread Martin Eve
Hmmm, this could be; it certainly seemed to be trying to get a DHCP address and failing. Had suspended for about an hour. Will test again. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/749397 Title:

[Bug 749397] Re: Wireless network fails to reconnect after suspend (Natty Beta 1)

2011-04-19 Thread Martin Eve
This seems to happen to me on multiple networks whenever a DHCP request is put in automatically. My networks do not connect on first boot or on resume. Clicking the icon manually allows the connection. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscri

[Bug 647358] [NEW] Maverick setup needs acpi=copy_dsdt on Toshiba Satellite C650D

2010-09-25 Thread Martin Eve
Public bug reported: 10.10 Maverick Beta [25th September 2010] Booting from either Desktop or Alternative fails unless ACPI=off is specified. As per workaround at https://bugs.launchpad.net/ubuntu/+bug/612341, enabling ACPI=copy_dsdt allows the Ethernet card to work as well. I assume some sort

[Bug 648013] [NEW] Maverick splash screen messed up by ATI proprietary drivers

2010-09-26 Thread Martin Eve
Public bug reported: Binary package hint: plymouth Maverick beta 10.10. Crypted boot per guided installation on Alternate CD. Booting without the FGLRX graphics driver is slick and smooth. Booting with it drops down to a far rougher version (for instance text to enter crypt password is massive

[Bug 648013] Re: Maverick splash screen messed up by ATI proprietary drivers

2010-09-26 Thread Martin Eve
** Attachment added: "BootDmesg.txt" https://bugs.launchpad.net/bugs/648013/+attachment/1638205/+files/BootDmesg.txt ** Attachment added: "CurrentDmesg.txt" https://bugs.launchpad.net/bugs/648013/+attachment/1638206/+files/CurrentDmesg.txt ** Attachment added: "Dependencies.txt" http

[Bug 699922] Re: Thunderbird displays notification on wrong monitor

2011-02-28 Thread Martin Eve
My card info: 01:00.0 VGA compatible controller: nVidia Corporation G92 [GeForce 9800 GT] (rev a2) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/699922 Title: Thunderbird displays notification on w

[Bug 699922] Re: Thunderbird displays notification on wrong monitor

2011-03-08 Thread Martin Eve
Thunderbird -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/699922 Title: Thunderbird displays notification on wrong monitor -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ub

[Bug 749397] Re: Wireless network fails to reconnect after suspend (Natty Beta 1)

2011-04-03 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/749397 Title: Wireless network fails to reconnect after suspend (Natty Beta 1) -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.u

[Bug 749397] [NEW] Wireless network fails to reconnect after suspend (Natty Beta 1)

2011-04-03 Thread Martin Eve
Public bug reported: Binary package hint: network-manager Toshiba Satellite C650; suspend to RAM by closing lid. Re-open and Network Manager attempts to reconnect to wireless network, but fails. Looks like some kind of DHCP timeout as it kept trying, but worked if I manually clicked the network

[Bug 751067] [NEW] Colors are mangled in Thunderbird in Natty

2011-04-05 Thread Martin Eve
Public bug reported: Binary package hint: thunderbird As per the attached screenshot, using fglrx driver under Unity on Natty Beta 1 using daily compiz (to work around fglrx problems), the icons in Thunderbird are shown in very unappealing colors. ProblemType: Bug DistroRelease: Ubuntu 11.04 Pac

[Bug 751067] Re: Colors are mangled in Thunderbird in Natty

2011-04-05 Thread Martin Eve
** Attachment added: "colors.png" https://bugs.launchpad.net/bugs/751067/+attachment/1981359/+files/colors.png -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/751067 Title: Colors are mangled in Th

[Bug 751067] Re: Colors are mangled in Thunderbird in Natty

2011-04-05 Thread Martin Eve
OK, this seems to not be Thunderbird specific; I'm also experiencing it across multiple applications, including in some web pages. Could be a specific type of image file, perhaps? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https:/

[Bug 751067] Re: Colors are mangled in Natty

2011-04-05 Thread Martin Eve
** Summary changed: - Colors are mangled in Thunderbird in Natty + Colors are mangled in Natty ** Description changed: Binary package hint: thunderbird As per the attached screenshot, using fglrx driver under Unity on Natty Beta 1 using daily compiz (to work around fglrx problems), the

[Bug 751067] Re: Colors are mangled in Natty

2011-04-05 Thread Martin Eve
Ok, I can definitely confirm that this is only happening on PNG files. Any PNG file displayed in an application or browser has a completely distorted color palette. I also appreciate that my screenshot might not be showing up the problem; if a photograph will help I can provide that instead? --

[Bug 751175] [NEW] Time and Date Settings don't load (Natty Beta 1)

2011-04-05 Thread Martin Eve
Public bug reported: Binary package hint: indicator-datetime Clicking the time in the indicator gives the option "Time and Date Settings..." Clicking this menu option has no effect; time and date settings do not appear. The same result is apparent if attempting to launch time and date settings

[Bug 751175] Re: Time and Date Settings don't load (Natty Beta 1)

2011-04-05 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/751175 Title: Time and Date Settings don't load (Natty Beta 1) -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailma

[Bug 751182] Re: LibreOffice Menubar lacks shortcut keys

2011-04-05 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/751182 Title: LibreOffice Menubar lacks shortcut keys -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinf

[Bug 751182] [NEW] LibreOffice Menubar lacks shortcut keys

2011-04-05 Thread Martin Eve
Public bug reported: Binary package hint: lo-menubar The present implementation of lo-menubar is great, but does not currently have support for ALT+F (for example) shortcut keys. ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: lo-menubar 0.1.0-0ubuntu1 ProcVersionSignature: Ubuntu 2.6.38-7

[Bug 751193] [NEW] Usability: it is unclear that to show launcher bar you must hover to the extreme left

2011-04-05 Thread Martin Eve
Public bug reported: Binary package hint: unity What happens: As one hovers over the Ubuntu logo at the top left, the launcher panel starts to move out. However, it is unclear that one has to move to the extreme left and uppermost point for the panel to appear. Expected result: Hovering anywhere

[Bug 751193] Re: Usability: it is unclear that to show launcher bar you must hover to the extreme left

2011-04-05 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/751193 Title: Usability: it is unclear that to show launcher bar you must hover to the extreme left -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubu

[Bug 751585] [NEW] Usability: launcher should respond to multiple FN+numeric presses

2011-04-05 Thread Martin Eve
Public bug reported: Binary package hint: unity Unity's launcher should respond to multiple shortcut requests without releasing the function key. Current behaviour: FN key held down Numeric digit 1 is pressed: window 1 comes into focus FN key remains held down Numeric digit 2 is pressed: this ke

[Bug 751585] Re: Usability: launcher should respond to multiple FN+numeric presses

2011-04-05 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/751585 Title: Usability: launcher should respond to multiple FN+numeric presses -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.

[Bug 751067] Re: Colors are mangled in Natty

2011-04-05 Thread Martin Eve
Attached screenshot of Google homepage showing colour distortion. ** Attachment added: "IMAG0047.jpg" https://bugs.launchpad.net/ubuntu/+source/unity/+bug/751067/+attachment/1983627/+files/IMAG0047.jpg -- You received this bug notification because you are a member of Ubuntu Bugs, which is su

[Bug 751067] Re: Colors are mangled in Natty

2011-04-05 Thread Martin Eve
** Description changed: - Binary package hint: thunderbird + Binary package hint: unity As per the attached screenshot, using fglrx driver under Unity on Natty Beta 1 using daily compiz (to work around fglrx problems), the icons in Thunderbird are shown in very unappealing colors. Pr

[Bug 841823] [NEW] After hibernate, display never returns

2011-09-05 Thread Martin Eve
Public bug reported: Oneiric, all packages up to date as of 2011-09-05, 3.0.0-10-generic on a Toshiba Satellite C650D, using proprietary fglrx graphics driver. Closing the lid of the laptop puts the machine into hibernate. Opening the lid, the display flickers on and off, but never returns. Prob

[Bug 841823] Re: After hibernate, display never returns

2011-09-05 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/841823 Title: After hibernate, display never returns To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/8

[Bug 841823] Re: After hibernate, display never returns

2011-09-06 Thread Martin Eve
Unfortunately, no luck. Same problem. I've also added acpi=copy_dsdt to kernel boot line in case this was a problem (Maverick wouldn't boot without), but unfortunately not. Any ideas for debugging further? -- You received this bug notification because you are a member of Ubuntu Bugs, which is s

[Bug 680844] [NEW] [Conexant CX20585] Headphone jack doesn't work

2010-11-24 Thread Martin Eve
Public bug reported: Toshiba Satellite C650D. Headphone Jack has no playback and doesn't mute speaker. Solution is to add options snd-hda-intel model=ideapad to /etc/modprobe.d/alsa-base.conf ProblemType: Bug DistroRelease: Ubuntu 10.10 Package: alsa-base 1.0.23+dfsg-1ubuntu4 ProcVersionSignatur

[Bug 680844] Re: [Conexant CX20585] Headphone jack doesn't work

2010-11-24 Thread Martin Eve
-- [Conexant CX20585] Headphone jack doesn't work https://bugs.launchpad.net/bugs/680844 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

[Bug 680844] Re: [Conexant CX20585] Headphone jack doesn't work

2010-11-24 Thread Martin Eve
Hi Daniel, When using the model quirk the speakers mute and the headphones play. I haven't been able to test Microphone recording. Martin -- [Conexant CX20585] Headphone jack doesn't work https://bugs.launchpad.net/bugs/680844 You received this bug notification because you are a member of Ubunt

[Bug 699922] Re: Thunderbird displays notification on wrong monitor

2011-01-07 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/699922 Title: Thunderbird displays notification on wrong monitor -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/ma

[Bug 699922] [NEW] Thunderbird displays notification on wrong monitor

2011-01-07 Thread Martin Eve
Public bug reported: Binary package hint: thunderbird In a multiple monitor setup, Thunderbird displays its notification in the bottom right of the leftmost monitor, rather than the window on which it is currently active. ProblemType: Bug DistroRelease: Ubuntu 10.10 Package: thunderbird 3.1.7+bu

[Bug 690172] [NEW] Docky won't relaunch Thunderbird

2010-12-14 Thread Martin Eve
Public bug reported: Binary package hint: docky Running Maverick with all updates as of 14th December, I am encountering a problem I haven't seen before that persists between reboots. If I launch Thunderbird from Docky, and then close it, Docky will not restart the application. If I then right

[Bug 690172] Re: Docky won't relaunch Thunderbird

2010-12-14 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/690172 Title: Docky won't relaunch Thunderbird -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubu

[Bug 757680] Re: Unity extremely slow on Toshiba Satellite C650D

2011-05-02 Thread Martin Eve
@Alex: as I said, turning off Sync to VBlank has not fixed the problem; this doesn't seem like a duplicate of that bug, which is specifically about Sync to VBlank being off. ** This bug is no longer a duplicate of bug 763005 Fglrx with Compiz's "Sync to Vblank" makes Unity/Compiz plugins to cra

[Bug 648013] Re: Boot splash screen messed up with ATI fglrx drivers

2011-04-28 Thread Martin Eve
Interesting; my boot screen is, at least, centered but nevertheless looks like that. If I uninstall FGLRX, I end up with the boot screen moved to the top left, as per your example, but then GDM won't start (!) -- You received this bug notification because you are a member of Ubuntu Bugs, which i

[Bug 756564] Re: Ater Maverick to Natty upgrade, grub won't boot and displays "symbol not found : 'grub_env_export'"

2011-04-28 Thread Martin Eve
Just encountered this on an upgrade; not great, going to attempt the grub2 recovery. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/756564 Title: Ater Maverick to Natty upgrade, grub won't boot and d

[Bug 752286] [NEW] Regression: super + numeric shortcuts no longer working

2011-04-06 Thread Martin Eve
Public bug reported: Binary package hint: unity Daily unity build 2011-03-06 from ppa. SUPER+numeric shortcut keys will no longer launch or switch to an application. SUPER+s still launches the workspace switcher, but SUPER+a does *not* launch applications and SUPER+f does not launch files and f

[Bug 752286] Re: Regression: super + numeric shortcuts no longer working

2011-04-06 Thread Martin Eve
** Tags added: regression -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/752286 Title: Regression: super + numeric shortcuts no longer working -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.c

[Bug 752289] [NEW] Graphical programs directing console output to non-associated terminals

2011-04-06 Thread Martin Eve
Public bug reported: Binary package hint: gnome-terminal Launched an instance of gnome-terminal Launched an instance of firefox Firefox is redirecting its console output to the gnome-terminal, even though I did *not* launch firefox from this terminal, but rather from the unity launcher. This tex

[Bug 752289] Re: Graphical programs directing console output to non-associated terminals

2011-04-06 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/752289 Title: Graphical programs directing console output to non-associated terminals -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https:

[Bug 752371] [NEW] Applications that use "close to system tray" are removed from launcher, but continue to run

2011-04-06 Thread Martin Eve
Public bug reported: Binary package hint: unity Certain applications, for instance Deluge bittorrent client, have an option that close ("x") will not terminate the program, but rather minimize to the system tray. Under unity, this does not work. Upon clicking close the application is removed fro

[Bug 752371] Re: Applications that use "close to system tray" are removed from launcher, but continue to run

2011-04-06 Thread Martin Eve
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/752371 Title: Applications that use "close to system tray" are removed from launcher, but continue to run -- ubuntu-bugs mailing list ubuntu-bugs@lis

[Bug 752376] [NEW] Software center won't allow install from .deb file

2011-04-06 Thread Martin Eve
Public bug reported: Binary package hint: software-center Downloaded the dropbox deb file and attempted to open with software center. Expected result: installer launches. Actual result: "There isn't a software package called "File:" in your current software sources." ProblemType: Bug DistroRel

  1   2   >