Re: [9fans] List of companies that use Plan 9.

2024-05-14 Thread John the Scott
finding nothing on google for Nantahala. any links? -john On Mon, May 13, 2024 at 3:42 AM wrote: > > Thank you, Sirjofri, nice idea. > > There are two private U.S. companies that are investing, developing, and > using a closed source Plan 9 distribution called ᴁOS (aka ᴁ9). The companies >

[Kernel-packages] [Bug 2008992] Re: suspend fails on Dell XPS 9350

2023-03-02 Thread John Steele Scott
Changing the BIOS Fastboot option to "Thorough" seems to have got it working again. Not sure why this would be necessary now. ** Changed in: linux-signed-oem-5.17 (Ubuntu) Status: New => Invalid -- You received this bug notification because you are a member of Kernel Packages, which is

[Kernel-packages] [Bug 2008992] Re: suspend fails on Dell XPS 9350

2023-03-02 Thread John Steele Scott
Upgrading to linux-image- unsigned-6.2.1-060201-generic_6.2.1-060201.202302251141 did not fix the issue. Nor did rolling back to 5.17.0-1021-oem. And along the way I found a log file which showed suspend working one time with 5.17.0-1027-oem. So now I'm not sure what changed to stop this

[Kernel-packages] [Bug 2008992] [NEW] suspend fails on Dell XPS 9350

2023-03-01 Thread John Steele Scott
Public bug reported: After upgrading to 5.17.0-1027-oem, my laptop fails to suspend. Instead it turns off. Journald output: Mar 02 17:31:47 nugget systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully. Mar 02 17:31:53 nugget NetworkManager[940]: [1677740513.3571] manager:

[Bug 1970898] Re: unable to use nfs client to mount nfs in Ubuntu 22.04

2022-05-01 Thread John Steele Scott
I was also unable to use NFS mounts since upgrading my client to 22.04. My server is a QNAP running version 5.0.0.1986. Enabling NFSv4 on the server did not solve the issue. Adding vers=3 as a mount option on the client lets NFS mounts work again for me. -- You received this bug notification

Re: rum index supported on pg13?

2020-10-21 Thread John the Scott
excellent. pg13+rum passes all our tests. thanks-john On Thu, Oct 15, 2020 at 3:18 AM Teodor Sigaev wrote: > > Done, thank you > > On 14.10.2020 19:30, Devrim Gündüz wrote: > > > > Hi Teodor, > > > > On Wed, 2020-10-14 at 18:49 +0300, Teodor Sigaev wrote: > >> Thank you, fixed and published. >

Re: rum index supported on pg13?

2020-10-12 Thread John the Scott
successful, we may be able to justify resources to fixing the compile issues with pg13, but the effort will be considerable. -john On Sun, Oct 11, 2020 at 7:16 PM Michael Paquier wrote: > > On Thu, Oct 08, 2020 at 09:29:31PM -0500, John the Scott wrote: > > will rum index from postgrespro

rum index supported on pg13?

2020-10-08 Thread John the Scott
will rum index from postgrespro be supported in pg13? numerous errors occur when compiling rum in pg13 and no replies from github. the differences from pg12 to pg13 seem to be significant https://github.com/postgrespro/rum thanks for such a brilliant extension. perhaps i should jump in and

bug#31332: touch unnecessarily calls dup2

2018-11-12 Thread John Steele Scott
On 13/11/18 8:53 am, Paul Eggert wrote: > John Steele Scott wrote: >> I'd much much obliged if one of you could enlighten me as to why touch needs >> to treat /dev/stdin as a special case after the file has been opened though. >> Wouldn't the following work just as well,

bug#31332: touch unnecessarily calls dup2

2018-10-30 Thread John Steele Scott
On 30/10/18 4:08 pm, Paul Eggert wrote: > John Steele Scott wrote: >> Prior >> tohttp://git.savannah.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=e373bb19 >>   fd_reopen() initially did "close(desired_fd); fd = open(...)" which would >> always do the ri

bug#31332: touch unnecessarily calls dup2

2018-10-29 Thread John Steele Scott
Hi Assif, Thanks for your reply. On 30/10/18 1:47 pm, Assaf Gordon wrote: > tags 31332 notabug > close 31332 > stop > > On 2018-05-01 4:38 a.m., John Steele Scott wrote: >>  From >> https://stackoverflow.com/questions/40446555/why-does-touch-call-the-dup2-syscall >

bug#31332: touch unnecessarily calls dup2

2018-05-01 Thread John Steele Scott
>From >https://stackoverflow.com/questions/40446555/why-does-touch-call-the-dup2-syscall jscott@citra:/tmp$ touch --version | head -1 touch (GNU coreutils) 8.25 jscott@citra:/tmp$ strace -ttt touch foo 2>&1 | tail -9 1525170579.952032 open("foo", O_WRONLY|O_CREAT|O_NOCTTY|O_NONBLOCK, 0666) = 3

[Bug 1161962] Re: XPS 13 wakes up from suspend spontaneously

2017-01-17 Thread John Steele Scott
This is still an issue with 4.8.0-32-generic, on the 2016 Dell XPS 13. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1161962 Title: XPS 13 wakes up from suspend spontaneously To manage

[Kernel-packages] [Bug 1161962] Re: XPS 13 wakes up from suspend spontaneously

2017-01-17 Thread John Steele Scott
This is still an issue with 4.8.0-32-generic, on the 2016 Dell XPS 13. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to linux in Ubuntu. https://bugs.launchpad.net/bugs/1161962 Title: XPS 13 wakes up from suspend spontaneously Status

Re: [cfe-users] Clang tries to use GCC's stdatomic.h, and fails.

2015-05-17 Thread John Steele Scott
On 15/05/15 15:58, John Steele Scott wrote: Is there any way around this, besides hacking Clang's version of stdatomic to not do the #include_next? https://llvm.org/bugs/show_bug.cgi?id=22740 suggests a workaround, but then I run into another problem, because my codebase has atomics embedded

[cfe-users] Clang tries to use GCC's stdatomic.h, and fails.

2015-05-15 Thread John Steele Scott
Consider the following source: jscott@citra:/tmp$ cat /tmp/atomic.c #include stdatomic.h int f (atomic_int *p_x) { return atomic_load(p_x); } On my system, Clang 3.6.1 fails to compile this, because it attempts to use GCC 5's stdatomic.h, which contains stuff it doesn't understand. [GCC

Re: [cfe-users] Clang and __gnu_cxx::simd_fast_mersenne_twister_engine. SSE2 bug?

2014-04-03 Thread John Steele Scott
On 01/04/14 17:02, John Steele Scott wrote: GCC 4.8 added an SSE2 optimized simd_fast_mersenne_twister_engine in the __gnu_cxx namespace. I've been able to use this successfully with both GCC and ICC, but when I use it with Clang, it doesn't give consistent results. Ah, this is http

slow rendering of some HTML mail threads in emacs/notmuch due to shr.

2013-04-20 Thread John Steele Scott
On 20/04/13 12:29, John Steele Scott wrote: > I've been enjoying using notmuch in emacs to handle my email, but some > threads take ges to render. I'm talking three minutes for a thread with > 15 messages. I'm not sure what it is in particular about this thread. Some >

slow rendering of some HTML mail threads in emacs/notmuch due to shr.

2013-04-20 Thread John Steele Scott
I've been enjoying using notmuch in emacs to handle my email, but some threads take ges to render. I'm talking three minutes for a thread with 15 messages. I'm not sure what it is in particular about this thread. Some combination of Outlook generated HTML and much repeated top-posting

slow rendering of some HTML mail threads in emacs/notmuch due to shr.

2013-04-19 Thread John Steele Scott
I've been enjoying using notmuch in emacs to handle my email, but some threads take ges to render. I'm talking three minutes for a thread with 15 messages. I'm not sure what it is in particular about this thread. Some combination of Outlook generated HTML and much repeated top-posting

Re: slow rendering of some HTML mail threads in emacs/notmuch due to shr.

2013-04-19 Thread John Steele Scott
On 20/04/13 12:29, John Steele Scott wrote: I've been enjoying using notmuch in emacs to handle my email, but some threads take ges to render. I'm talking three minutes for a thread with 15 messages. I'm not sure what it is in particular about this thread. Some combination of Outlook

Re: [lttng-dev] lttng-ust with --std=c99 -pedantic

2012-06-18 Thread John Steele Scott
On 13/06/12 01:25, Mathieu Desnoyers wrote: * Mathieu Desnoyers (mathieu.desnoy...@efficios.com) wrote: Hi John, * John Steele Scott (tooj...@toojays.net) wrote: I want to add lttng-ust tracepoints to a program which builds with --std=c99 -pedantic. Right now this does not work. Using

Re: [lttng-dev] urcu commit a767fd requires autoconf = 2.64.

2012-06-13 Thread John Steele Scott
On 13/06/12 17:40, Mathieu Desnoyers wrote: * John Steele Scott (tooj...@toojays.net) wrote: http://lists.lttng.org/pipermail/lttng-dev/2012-May/017927.html I tried to build the latest urcu (git master e51500) on a Centos 6.2 box, and got: jscott@dxi0-62:~/src/userspace-rcu$ make -j4

[lttng-dev] LTTng on RHEL 6 or Centos 6?

2012-05-13 Thread John Steele Scott
I'd like to do some analysis on a Centos 6.2 system.* At http://www.dorsal.polymtl.ca/blog/yannick-brosseau/running-lttng-20-rhel-6-centos-6 I found an old article where Yannick says support for a patched 2.6.32 kernel would go into lttng-modules. Did this happen at any stage? A quick search

[Bug 984387] Re: [Dell Studio XPS 1340, Alienware m17x] Kernel panic with 3.0.0-19 and 3.2.0-18 on boot

2012-04-26 Thread John Steele Scott
Martin, I can report that my XPS 1340 failed to boot with 3.2.0-23.36, but 3.2.0-24.37 from -proposed fixed the problem for me. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/984387 Title: [Dell

[Registry] [Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-12-01 Thread John Steele Scott
Hmm, it works across reboots for me, without adding anything to /etc/rc.local. I am back on Ubuntu 10.04 though. One thought is that perhaps you need to update your initramfs to make your config change apply to the module which is loaded during boot. See if running sudo update-initramfs -u makes

[Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-12-01 Thread John Steele Scott
Hmm, it works across reboots for me, without adding anything to /etc/rc.local. I am back on Ubuntu 10.04 though. One thought is that perhaps you need to update your initramfs to make your config change apply to the module which is loaded during boot. See if running sudo update-initramfs -u makes

[Registry] [Bug 12431] Re: openjade 1.4devel1-13 rejects dbttlpg.dsl flow object not accepted by port; only display flow objects accepted

2010-09-14 Thread John Steele Scott
I don't know if it still occurs in Lucid, this bug report was from a past life. I don't need to care about this anymore. The bug description includes a trivially simple method to reproduce. If you wanted to actually help Ubuntu improve (rather than just karma whore) you could attempt to reproduce

[Bug 12431] Re: openjade 1.4devel1-13 rejects dbttlpg.dsl flow object not accepted by port; only display flow objects accepted

2010-09-14 Thread John Steele Scott
I don't know if it still occurs in Lucid, this bug report was from a past life. I don't need to care about this anymore. The bug description includes a trivially simple method to reproduce. If you wanted to actually help Ubuntu improve (rather than just karma whore) you could attempt to reproduce

[Registry] [Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-08-07 Thread John Steele Scott
Disabling ADMA gets around this issue. I've attached a modprobe configuration file which does this. After creating this file into /etc/modprobe.d and reloading the sdhci kernel modules (rmmod sdhci_pci and sdhci, then modprobe sdhci_pci), I can use the card reader on my E6510. ** Attachment

[Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-08-07 Thread John Steele Scott
Disabling ADMA gets around this issue. I've attached a modprobe configuration file which does this. After creating this file into /etc/modprobe.d and reloading the sdhci kernel modules (rmmod sdhci_pci and sdhci, then modprobe sdhci_pci), I can use the card reader on my E6510. ** Attachment

[Registry] [Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-08-04 Thread John Steele Scott
I can confirm this on a Latitude E6510 with 2.6.35-020635rc5-generic from the mainline kernel repo. When I insert an SD card, I get the following in my dmesg: [10620.483522] mmc0: ADMA error [10620.485542] mmc0: Got data interrupt 0x0200 even though no data operation was in progress.

[Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-08-04 Thread John Steele Scott
I can confirm this on a Latitude E6510 with 2.6.35-020635rc5-generic from the mainline kernel repo. When I insert an SD card, I get the following in my dmesg: [10620.483522] mmc0: ADMA error [10620.485542] mmc0: Got data interrupt 0x0200 even though no data operation was in progress.

[Bug 605043] Re: Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card

2010-08-04 Thread John Steele Scott
** Changed in: linux (Ubuntu) Status: Incomplete = Confirmed -- Ubuntu 10.04 64 bit on Dell Lattitude E6410: Failed to read MMC card https://bugs.launchpad.net/bugs/605043 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. --

[Bug 591033] Re: failure to resume after suspending for the second time (Dell Latitude E6510)

2010-06-10 Thread John Steele Scott
Unfortunately I have to take back what I said about this being fixed in 2.6.35-rc1. It still fails to resume from sleep sometimes. Where 2.6.32 would reboot on resume, 26.35-rc1 just hangs instead. It does work sometimes, but not always. -- failure to resume after suspending for the second time

[Bug 591033] Re: failure to resume after suspending for the second time (Dell Latitude E6510)

2010-06-09 Thread John Steele Scott
Sebastian, I suggest opening a separate bug, your issue sounds quite different to mine. My bug is just about suspend, and seems to be already fixed in kernel 2.6.35-rc1. If you think your bug is a kernel bug, you can run ubuntu-bug linux-image-2.6.32-22-generic, which will run a program to upload

[Bug 591033] Re: failure to resume after suspending for the second time (Dell Latitude E6510)

2010-06-08 Thread John Steele Scott
In my original report I said that short suspend periods were okay, but longer periods could not be resumed from. I think what is actually the case is that the first resume works okay, but the second time you try to resume, the machine fails to resume (and then reboots). The duration of time for

[Bug 591033] [NEW] failure to resume after suspending overnight (Dell Latitude E6510)

2010-06-07 Thread John Steele Scott
Public bug reported: I suspend this laptop by closing the lid. If it is only suspended for a short period (e.g. suspend when I leave the office, go home, have dinner, then resume), it resumes with no problem. If it is suspended for a long period (e.g. overnight), it fails to resume. When I open

[Bug 591033] Re: failure to resume after suspending overnight (Dell Latitude E6510)

2010-06-07 Thread John Steele Scott
** Attachment added: AlsaDevices.txt http://launchpadlibrarian.net/49854491/AlsaDevices.txt ** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/49854492/BootDmesg.txt ** Attachment added: Card0.Amixer.values.txt

[Bug 460202] [NEW] WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish+0x7c/0x80()

2009-10-24 Thread John Steele Scott
Public bug reported: Saw the crash report after wake from suspend. ProblemType: KernelOops Annotation: Your system might become unstable now and might need to be restarted. Architecture: amd64 ArecordDevices: List of CAPTURE Hardware Devices card 0: NVidia [HDA NVidia], device 0:

[Bug 460202] Re: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish+0x7c/0x80()

2009-10-24 Thread John Steele Scott
** Attachment added: AlsaDevices.txt http://launchpadlibrarian.net/34346126/AlsaDevices.txt ** Attachment added: AplayDevices.txt http://launchpadlibrarian.net/34346127/AplayDevices.txt ** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/34346128/BootDmesg.txt **

[sane-devel] Samsung SCX-4828FN works with the xerox_mfp driver.

2009-09-29 Thread John Steele Scott
toojays at yoshi:~$ sane-find-scanner ... found USB scanner (vendor=0x04e8 [Samsung Electronics Co., Ltd.], product=0x342d [SCX-4x28 Series]) at libusb:001:019 toojays at yoshi:~$ scanimage -L device `xerox_mfp:libusb:001:019' is a Samsung Samsung SCX-4x28 Series multi-function peripheral I

Accepted openoffice.org-en-au 2.1-5 (source all)

2009-09-23 Thread John Steele Scott
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Tue, 18 Aug 2009 20:23:35 +0930 Source: openoffice.org-en-au Binary: openoffice.org-thesaurus-en-au myspell-en-au Architecture: source all Version: 2.1-5 Distribution: unstable Urgency: low Maintainer: John Steele Scott tooj

Bug#541934: (no subject)

2009-08-18 Thread John Steele Scott
Rene, I have updated the packages to address this bug (and bug #541896). You can pick up the new packages from http://www.users.on.net/~toojays/debian/openoffice.org-en-au/. Note that these packages also include some changes which I emailed you about on 28/03/09. I never heard back from you

Bug#541896: (no subject)

2009-08-18 Thread John Steele Scott
Rene, I have built updated the package to address this bug (and bug #541934). You can pick up the new packages from http://www.users.on.net/~toojays/debian/openoffice.org-en-au/. Note that these packages also include some changes which I emailed you about on 28/03/09. I never heard back

[Bug 379293] [NEW] bash completion for gdb does not complete paths properly

2009-05-21 Thread John Steele Scott
Public bug reported: Binary package hint: bash-completion jsc...@jscott-laptop:~$ lsb_release -rd Description:Ubuntu 9.04 Release:9.04 jsc...@jscott-laptop:~$ apt-cache policy bash-completion bash-completion: Installed: 20080705ubuntu3 Candidate: 20080705ubuntu3 Version table:

[Bug 378172] [NEW] git-core installs emacs vc-git mode which overrides the version from emacs22.

2009-05-18 Thread John Steele Scott
Public bug reported: Binary package hint: git-core After upgrading to Jaunty, I found that one of my elisp functions had broken. It took a bit of digging to work out that this happened because git-core installs its own version of vc-git to git-core:

[Bug 377177] [NEW] Australian English dictionary does not register with Emacs.

2009-05-15 Thread John Steele Scott
Public bug reported: I am the (sponsered) maintainer of the openoffice.org-en-au package in Debian. I have updated the package for the myspell-en-au dictionary so that it installs the files necessary to integrate with the Debian Emacs ispell/flyspell mode according to Debian dictionary policy. I

[Bug 377177] Re: Australian English dictionary does not register with Emacs.

2009-05-15 Thread John Steele Scott
** Attachment added: diff.gz for openoffice.org-en-au 2.1-4 http://launchpadlibrarian.net/26799129/openoffice.org-en-au_2.1-4.diff.gz -- Australian English dictionary does not register with Emacs. https://bugs.launchpad.net/bugs/377177 You received this bug notification because you are a

[Bug 377177] [NEW] Australian English dictionary does not register with Emacs.

2009-05-15 Thread John Steele Scott
Public bug reported: I am the (sponsered) maintainer of the openoffice.org-en-au package in Debian. I have updated the package for the myspell-en-au dictionary so that it installs the files necessary to integrate with the Debian Emacs ispell/flyspell mode according to Debian dictionary policy. I

[Bug 377177] Re: Australian English dictionary does not register with Emacs.

2009-05-15 Thread John Steele Scott
** Attachment added: diff.gz for openoffice.org-en-au 2.1-4 http://launchpadlibrarian.net/26799129/openoffice.org-en-au_2.1-4.diff.gz -- Australian English dictionary does not register with Emacs. https://bugs.launchpad.net/bugs/377177 You received this bug notification because you are a

[Bug 323496] Re: An unfriendly error message is shown when failing to open a DVD.

2009-04-07 Thread John Steele Scott
Sebastien, I cannot reproduce this anymore, so I'll mark it as fixed. This is with gvfs 1.2.1-0ubuntu1. One oddity is that the volume name of the DVD drive in nautilus gets set to the volume label of the first DVD I insert, and does not change when I eject the DVD or insert a different DVD, but

[Bug 323496] Re: An unfriendly error message is shown when failing to open a DVD.

2009-04-07 Thread John Steele Scott
Sebastien, I cannot reproduce this anymore, so I'll mark it as fixed. This is with gvfs 1.2.1-0ubuntu1. One oddity is that the volume name of the DVD drive in nautilus gets set to the volume label of the first DVD I insert, and does not change when I eject the DVD or insert a different DVD, but

[Bug 348852] [NEW] nvidia driver 180.41 is available

2009-03-26 Thread John Steele Scott
Public bug reported: Nvidia driver 180.41 is available. It claims to fix several crashes, see http://www.nvnews.net/vbulletin/showthread.php?p=1963540 for details. ** Affects: nvidia-graphics-drivers-180 (Ubuntu) Importance: Undecided Status: New -- nvidia driver 180.41 is

[Bug 12502] Re: [mga] mode validation seems to treat ModeLines and DDC dtimings differently

2009-03-24 Thread John Steele Scott
I can't test this, I don't believe I have that hardware anymore. -- [mga] mode validation seems to treat ModeLines and DDC dtimings differently https://bugs.launchpad.net/bugs/12502 You received this bug notification because you are a member of Ubuntu Bugs, which is a direct subscriber. --

[Bug 326769] Re: Emulation of middle button and scroll wheel is broken.

2009-03-07 Thread John Steele Scott
It seems that this line: merge key=input.x11_options.ButtonMapping type=string1 8 3 2 9/merge in my HAL policy file was the cause of the problem. Scrolling up was emulating a click of button 4, which was getting re-mapped to button 2, which caused a paste event rather then a scroll event. I have

[Bug 325469] Re: ath9k module spams logs with ForceXPAon: 0

2009-02-19 Thread John Steele Scott
Yep, that fixes it. -- ath9k module spams logs with ForceXPAon: 0 https://bugs.launchpad.net/bugs/325469 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

[Bug 325956] Re: [Unknown 14] ath9k continually spams ForceXPAon: 0

2009-02-19 Thread John Steele Scott
*** This bug is a duplicate of bug 325469 *** https://bugs.launchpad.net/bugs/325469 ** This bug has been marked a duplicate of bug 325469 ath9k module spams logs with ForceXPAon: 0 -- [Unknown 14] ath9k continually spams ForceXPAon: 0 https://bugs.launchpad.net/bugs/325956 You received

[Bug 323496] Re: An unfriendly error message is shown when failing to open a DVD.

2009-02-07 Thread John Steele Scott
This is a clean install of Jaunty. Sorry about the versions, I got them from the wrong place. Looking at my Debian changelogs, the versions currently installed are: nautilus (1:2.25.4-0ubuntu1) jaunty gvfs (1.1.5-0ubuntu1) jaunty It happens every time on the two video DVDs I've tried. Both DVDs

[Bug 323496] Re: An unfriendly error message is shown when failing to open a DVD.

2009-02-07 Thread John Steele Scott
This is a clean install of Jaunty. Sorry about the versions, I got them from the wrong place. Looking at my Debian changelogs, the versions currently installed are: nautilus (1:2.25.4-0ubuntu1) jaunty gvfs (1.1.5-0ubuntu1) jaunty It happens every time on the two video DVDs I've tried. Both DVDs

[Bug 326769] Re: Emulation of middle button and scroll wheel is broken.

2009-02-07 Thread John Steele Scott
** Attachment added: xorg.log http://launchpadlibrarian.net/22156020/xorg-emulation-broken.log ** Tags added: jaunty -- Emulation of middle button and scroll wheel is broken. https://bugs.launchpad.net/bugs/326769 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 326769] [NEW] Emulation of middle button and scroll wheel is broken.

2009-02-07 Thread John Steele Scott
Public bug reported: I use a Logitech Marble Mouse trackball, and have a hal policy file setup with the following rules: ?xml version=1.0 encoding=UTF-8? deviceinfo version=0.2 match key=info.product string=Logitech USB Trackball merge key=input.x11_options.ButtonMapping type=string1 8 3 2

[Bug 325469] Re: ath9k module spams logs with ForceXPAon: 0

2009-02-05 Thread John Steele Scott
** Description changed: linux (2.6.28-6.17) jaunty The kernel spams my logs with hundreds of messages like: Feb 5 07:04:30 yoshi kernel: [ 257.465945] ForceXPAon: 0 Feb 5 07:04:30 yoshi kernel: [ 257.645954] ForceXPAon: 0 Feb 5 07:04:31 yoshi kernel: [ 257.885991]

[Bug 325469] [NEW] ath9k module spams logs with ForceXPAon: 0

2009-02-04 Thread John Steele Scott
Public bug reported: linux (2.6.28-6.17) jaunty The kernel spams my logs with hundreds of messages like: Feb 5 07:04:30 yoshi kernel: [ 257.465945] ForceXPAon: 0 Feb 5 07:04:30 yoshi kernel: [ 257.645954] ForceXPAon: 0 Feb 5 07:04:31 yoshi kernel: [ 257.885991] ForceXPAon: 0 Feb 5

[Bug 323496] [NEW] An unfriendly error message is shown when failing to open a DVD.

2009-01-31 Thread John Steele Scott
Public bug reported: Binary package hint: gvfs Current jaunty: gvfs 1.0.2-0ubuntu1 nautilus 1:2.24.1-0ubuntu1 To reproduce: Insert a DVD into the DVD drive. From the menu at the top of the desktop screen, select Places-CD-RW/DVD±RW Drive. The following error dialog is shown: Unable to scan

[Bug 323496] [NEW] An unfriendly error message is shown when failing to open a DVD.

2009-01-31 Thread John Steele Scott
Public bug reported: Binary package hint: gvfs Current jaunty: gvfs 1.0.2-0ubuntu1 nautilus 1:2.24.1-0ubuntu1 To reproduce: Insert a DVD into the DVD drive. From the menu at the top of the desktop screen, select Places-CD-RW/DVD±RW Drive. The following error dialog is shown: Unable to scan

Re: [Owfs-developers] How to set frequency on DS1921G

2008-09-27 Thread John Steele Scott
On Fri, 19 Sep 2008 13:11:53 +1100, Andrey wrote: Hello, I'm trying to set sample rate for DS1921G-F5. However sample rate always stays as 1 minute and I can not change it. I have the same problem; it's rather annoying. I have a Thermochron I want to log with for a month, so I need ~30

[Bug 201786] Re: ssh Agent admitted failure to sign using the key

2008-05-31 Thread John Steele Scott
I'm also getting this on Fedora 9 PPC. I don't think seahorse is installed. Besides the SSH_AUTH_SOCK workaround, another workaround is to run ssh-add once after logging in. -- ssh Agent admitted failure to sign using the key https://bugs.launchpad.net/bugs/201786 You received this bug

[Bug 201786] Re: ssh Agent admitted failure to sign using the key

2008-05-31 Thread John Steele Scott
I'm also getting this on Fedora 9 PPC. I don't think seahorse is installed. Besides the SSH_AUTH_SOCK workaround, another workaround is to run ssh-add once after logging in. -- ssh Agent admitted failure to sign using the key https://bugs.launchpad.net/bugs/201786 You received this bug

[Bug 218291] Re: xubuntu 8.04 fails mirror selection during install

2008-04-25 Thread John Steele Scott
*** This bug is a duplicate of bug 218801 *** https://bugs.launchpad.net/bugs/218801 ** This bug has been marked a duplicate of bug 218801 [hardy] Cannot install from PowerPC desktop cd. -- xubuntu 8.04 fails mirror selection during install https://bugs.launchpad.net/bugs/218291 You

[Bug 119295] Re: OpenSSH should support VIA PadLock

2008-04-19 Thread John Steele Scott
I've just revisited this after upgrading my system to hardy. I still need to apply my patch to openssl version 4.7 from hardy, including the call to ENGINE_set_default_ciphers(ENGINE_by_id(padlock)). Without that call, I was still only getting about 5.6 MB/s. Ian, are you passing any command line

[Bug 144305] Re: [gutsy] sleep on powerbook crashes

2008-02-16 Thread John Steele Scott
I just assumed it wasn't assigned to anyone because powerpc is no longer a supported architecture. -- [gutsy] sleep on powerbook crashes https://bugs.launchpad.net/bugs/144305 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. --

[Bug 70302] Re: no ghci in edgy (regression vs dapper)

2007-12-23 Thread John Steele Scott
I know this is pending on upstream Debian activity, but just for the record this bug is still current on gutsy/powerpc. -- no ghci in edgy (regression vs dapper) https://bugs.launchpad.net/bugs/70302 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug

Re: About buffering Cairo drawings

2007-12-12 Thread John Steele Scott
On Wed, 12 Dec 2007 08:40:07 +0300, Igor Gorbounov wrote: appears just after cairo_context-stroke() for every path. Is there any way to draw the drawings on some invisible thing and show them all at once? In my program I draw everything to a cairo image surface, and then copy the image

[Bug 164611] Re: [dapper] vmware-player-kernel-2.6.15-2.6.15.10-13 breaks vmware-player

2007-11-25 Thread John Steele Scott (t-tec)
Snam, going back to the older vmware-player-kernel-modules-2.6.15-29 (2.6.15.11-12) would work, but that's disappeared from the archives already so unless you have an old copy somewhere, it's not possible. What I did was remove vmware-player and install it from a tarball provided by VMware. I

[Bug 164611] [dapper] vmware-player-kernel-2.6.15-2.6.15.10-13 breaks vmware-player

2007-11-22 Thread John Steele Scott (t-tec)
Public bug reported: Binary package hint: vmware-player After upgrading from vmware-player-kernel-2.6.15-2.6.15.10-12 to -13, vmware player no longer works. The error message says: Version mismatch with vmmon module: expecting 137.0, got 138.0. You have an incorrect version of the `vmmon'

Re: maemomm: virtual function overrides

2007-11-15 Thread John Steele Scott
Thanks to all who replied to this thread. I did see the page titled changes to gtkmm when I was just getting started with maemomm, but I didn't really understand all of it at the time since I had only just gotten started with gtkmm as well. I have just this week received my N800, and was able

graphical sftp client for bora

2007-11-14 Thread John Steele Scott
Is there a graphical SFTP client which works with bora? I've tried gpe- filemanager, but I couldn't get it's sftp support to work. I found a post about gftp on the N800, but AFAICS that is not at all integrated with the N800 desktop. cheers, John

maemomm: virtual function overrides

2007-11-10 Thread John Steele Scott
I have a Gtkmm application which uses a custom widget derived from Gtk::DrawingArea. This widget overrides the virtual functions of the parent, such as e.g.: void PlotCanvas::on_realize() { Gtk::DrawingArea::on_realize(); // do some other stuff . . . } This works fine on my Ubuntu Gutsy

where are hildonmm packages?

2007-10-28 Thread John Steele Scott
I'm getting into gtkmm and hildonmm in anticipation of a soon-to-be- delivered N800. I tried to follow the installation instructions at http://maemomm.garage.maemo.org/docs/tutorial/html/ch03.html but the repository listed there doesn't seem to have the necessary packages. Have they moved

Re: where are hildonmm packages?

2007-10-28 Thread John Steele Scott
On Sun, 28 Oct 2007 11:49:46 +0100, Murray Cumming wrote: On Sun, 2007-10-28 at 06:01 +, John Steele Scott wrote: I'm getting into gtkmm and hildonmm in anticipation of a soon-to-be- delivered N800. I tried to follow the installation instructions at http://maemomm.garage.maemo.org/docs

[Bug 155735] gamma setting is lost after suspend/resume

2007-10-22 Thread John Steele Scott
Public bug reported: Binary package hint: xserver-xorg-video-ati I run a script which uses the new xrandr features to setup my video outputs depending on whether or not my iBook (with a Radeon 9200) has an external monitor connected. As part of this process, the script will run xgamma -gamma

[Bug 36956] Re: Brightness reset to max when starting/restarting Xorg or waking from sleep

2007-10-22 Thread John Steele Scott
Nope, this bug still exists in gutsy. Timo, do you know what part of X could be causing this? I'm just not sure that the radeon driver is the best package to own this bug. On these iBook/Powerbook systems, the backlight is controlled via the PMU. This bug might be better resolved if the issue

[Bug 140977] Re: suspend-resume regression in ibook under kernel 2.6.22-9 and up

2007-10-22 Thread John Steele Scott
This is a dupe of bug 144305, which has a patch you can try. -- suspend-resume regression in ibook under kernel 2.6.22-9 and up https://bugs.launchpad.net/bugs/140977 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs

[Bug 150092] Re: xrandr and radeon drives BenQ FP231W incorrectly

2007-10-14 Thread John Steele Scott
This bug is still present with xserver-xorg-video-ati 1:6.7.195-1ubuntu2. ** Changed in: xserver-xorg-video-ati (Ubuntu) Status: Incomplete = Confirmed -- xrandr and radeon drives BenQ FP231W incorrectly https://bugs.launchpad.net/bugs/150092 You received this bug notification because

[Bug 144305] Re: [gutsy] sleep on powerbook crashes

2007-10-14 Thread John Steele Scott
Sleep doesn't work on my iBook G4 either. It used to work in Feisty. One strange thing I've noted is that when the machine goes to sleep, after the LED starts breathing (fading in and out to show the machine is asleep), the LCD backlight turns on. Ben, I haven't been able to get your workaround

[Bug 144305] Re: [gutsy] sleep on powerbook crashes

2007-10-14 Thread John Steele Scott
Okay, I'm sure your workaround is the way to go, it's just the implementation which doesn't seem to be the same between my computer and yours. Notes: If I manually switch to vt1 and sleep using /usr/lib/hal/hal-system- power-pmu sleep, it sleeps and resumes fine. Also, if I sleep from X by

[Bug 144305] Re: [gutsy] sleep on powerbook crashes

2007-10-14 Thread John Steele Scott
This patch mostly fixes it for me . . . I can now confidently close the lid to suspend, and open it without a crash. The only issue is that the call to chvt after resume does not always work, so sometimes I need to switch vts manually. But it sure beats having the machine lock-up. ** Attachment

[Bug 152134] Re: openoffice.org-common package conflict

2007-10-12 Thread John Steele Scott
I can confirm this. ** Changed in: openoffice.org (Ubuntu) Status: New = Confirmed -- openoffice.org-common package conflict https://bugs.launchpad.net/bugs/152134 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. --

[Bug 150092] xrandr and radeon drives BenQ FP231W incorrectly

2007-10-07 Thread John Steele Scott
Public bug reported: Just upgraded to gutsy today. I have a BenQ FP231W connected to my laptop's Radeon 9200. I try to turn off the laptop panel and use only the FP231W: xrandr --output LVDS --off --output VGA-0 --auto This does switch off the laptop panel and enable the external display, but

[Bug 119295] Re: OpenSSH should support VIA PadLock

2007-07-07 Thread John Steele Scott
Unfortunately this doesn't actually work. I run the following test: scp -c aes128-cbc 100meg.test localhost:/dev/null And the throughput is the same with openssh 4.6 as it was with openssh 4.3. (6.0 MB/s on my EN12000E board). -- OpenSSH should support VIA PadLock

[Bug 119295] Re: OpenSSH should support VIA PadLock

2007-07-07 Thread John Steele Scott
The original implementation of --with-ssl-engine doesn't seem to me to do anything at all, because it relies on an ugly re'#define which is not included anywhere it's needed. Even with that included in the appropriate spots, the padlock engine is still not being used. I've attached a works for me

[asterisk-users] testing

2007-06-14 Thread John D. Scott
Please disregard. ___ --Bandwidth and Colocation provided by Easynews.com -- asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users

permanently blacklisting an AP; rate setting on bcm43xx

2007-06-02 Thread John Steele Scott
Hi, Is it possible to permanently blacklist an access point by its MAC address? I've tried removing the address in gconf-editor, but this didn't do what I wanted. The situation is that I have two APs in a WDS setup. One of the APs (a Billion 7402VGP) does not work properly with the bcm43xx in my

[Bug 35632] Re: no gl manpages available

2007-04-24 Thread John Steele Scott
*** This bug is a duplicate of bug 32042 *** https://bugs.launchpad.net/bugs/32042 ** Changed in: mesa (Ubuntu) Status: Needs Info = Confirmed -- no gl manpages available https://bugs.launchpad.net/bugs/35632 You received this bug notification because you are a member of Ubuntu Bugs,

[Bug 15398] Re: toshiba satellite 4600 runs at half cpu speed

2007-04-16 Thread John Steele Scott
I'm pretty sure that after I updated this laptop to Breezy and then Dapper there was no problem. The machine is no longer in use; Dapper was the last OS I tried on it. ** Changed in: laptop-detect (Ubuntu) Status: Needs Info = Fix Released -- toshiba satellite 4600 runs at half cpu speed

[Bug 88990] Re: evolution breaks with libnss update

2007-03-01 Thread John Steele Scott \(t-tec\)
Grrr . . . this update should never have got out of dapper-proposed. I can confirm the LD_LIBRARY_PATH=/usr/lib/firefox evolution workaround. -- evolution breaks with libnss update https://launchpad.net/bugs/88990 -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 78281] Re: please upgrade to new version

2007-01-08 Thread John Steele Scott
Here's a diff to apply to the upstream guikachu sources, to create an up to date deb. ** Attachment added: diff.gz for guikachu 1.5.10 http://librarian.launchpad.net/5627592/guikachu_1.5.10-1.diff.gz -- please upgrade to new version https://launchpad.net/bugs/78281 -- ubuntu-bugs mailing

[Bug 78281] please upgrade to new version

2007-01-07 Thread John Steele Scott
Public bug reported: Binary package hint: guikachu The version currently in the repos (1.4.0) is very old (it uses GNOME1), and is buggy. I tried following the tutorial at http://cactus.rulez.org/projects/guikachu/tour/, but it always crashes when I try to add a button during Creating a Form.

Re: [ANN] G-Wrap 1.9.7 released

2007-01-01 Thread John Steele Scott
On Sat, 18 Nov 2006 17:06:56 +0100, Andreas Rottmann wrote: Hi, I have released G-Wrap 1.9.7. Andreas, Will you be updating your Debian packages of G-Wrap for version 1.9.7? cheers, John ___ Guile-user mailing list Guile-user@gnu.org

  1   2   3   >