[Bug 865268] [NEW] snmpd reports wrong value for hrStorageSize

2011-10-03 Thread Brian Candler
Public bug reported: Look at hrStorageSize.34 in the below table. Notice that: (1) it's smaller than hrStorageUsed.34, so it can't possibly be right (2) it's the same as the previous row, hrStorageSize.33 $ snmpwalk -c public -v2c hostname hrStorageTable HOST-RESOURCES-MIB::hrStorageIndex.1 =

[Bug 865268] Re: snmpd reports wrong value for hrStorageSize

2011-10-03 Thread Brian Candler
Looks like it could be related to this: https://bugzilla.redhat.com/show_bug.cgi?id=654384 Apparently a newer snmpd would clamp this value to 2^31, and an even newer snmpd would use a fake larger block size so as to be able to report on large filesystems:

[Bug 865268] Re: snmpd reports wrong value for hrStorageSize on large filesystem

2012-10-24 Thread Brian Candler
Also confirmed, this remains broken in 12.04 $ snmpwalk -v2c -c public storage3 hrStorageTable | grep \\.34HOST-RESOURCES-MIB::hrStorageIndex.34 = INTEGER: 34 HOST-RESOURCES-MIB::hrStorageType.34 = OID: HOST-RESOURCES-TYPES::hrStorageFixedDisk HOST-RESOURCES-MIB::hrStorageDescr.34 = STRING:

[Bug 865268] Re: snmpd reports wrong value for hrStorageSize on large filesystem

2012-10-24 Thread Brian Candler
Looking at the source of net-snmp-5.4.3~dfsg, it appears to make no attempt to scale the block size to avoid 2^32 wrapping - see agent/mibgroup/host/hr_storage.c, var_hrstore() I have made a simple patch which fixes just this particular problem, so should be suitable for backporting to LTS. Once

[Bug 430732] Re: radclient doesn't work

2011-02-09 Thread Brian Candler
Still a problem in 10.04 LTS -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to freeradius in ubuntu. https://bugs.launchpad.net/bugs/430732 Title: radclient doesn't work -- Ubuntu-server-bugs mailing list

[Bug 1278466] Re: [FFe] ceph firefly stable release

2014-04-03 Thread Brian Candler
Just a note for early adopters to beware of: https://ceph.com/releases/v0-78-released/ Please note that while it is possible to create and test erasure coded pools in this release, the pools will not be usable when you upgrade to v0.79 as the OSDMap encoding will subtlely change. Please do not

[Bug 1310653] [NEW] python-vm-builder in Precise unable to build Trusty images

2014-04-21 Thread Brian Candler
Public bug reported: Please backport python-vm-builder in Precise so that it can build Trusty images. In Trusty: python-vm-builder version 0.12.4+bzr489-0ubuntu2 $ ls /usr/lib/python2.7/dist-packages/VMBuilder/plugins/ubuntu/ dapper.py feisty.pycintrepid.py lucid.pyc precise.py

[Bug 1185756] Re: drbd8-utils not compatible with linux-lts-raring kernel in 12.04

2014-04-24 Thread Brian Candler
I'm not sure if anyone has mentioned it yet, but the command syntax to the drbdsetup command has changed totally between drbd8-utils 8.3 and 8.4 e.g. if you are using drbd-utils 8.3 then the command is drbdsetup /dev/drbd0 show if you are using drbd-utils 8.4 then the command is drbdsetup show

[Bug 1185756] Re: drbd8-utils not compatible with linux-lts-raring kernel in 12.04

2014-04-24 Thread Brian Candler
Hmm, just to clarify: when using the drbd8-utils 8.4 package and the kernel module 8.3, then drbdsetup execs the drbdsetup-83 compatibility module which implements the old syntax, and will also if necessary swap the first two arguments for forward compatibility However there are some commands

[Bug 1310653] Re: python-vm-builder in Precise unable to build Trusty images

2014-06-19 Thread Brian Candler
related (duplicate of?) #1287943 -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vm-builder in Ubuntu. https://bugs.launchpad.net/bugs/1310653 Title: python-vm-builder in Precise unable to build Trusty images To manage

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
I see hang at Base system installed successfully too, building Trusty VM under Precise 64-bit. Last three lines of ps auxwww are: root 20430 0.1 0.0 40060 9716 pts/2S+ 10:36 0:00 /usr/bin/python /usr/bin/vmbuilder kvm ubuntu --suite trusty --hostname trusty --mem 512 --debug

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
There is a nasty race condition in the code, which is easily fixed: --- /usr/share/pyshared/VMBuilder/util.py.orig 2010-06-10 17:20:58.0 + +++ /usr/share/pyshared/VMBuilder/util.py 2014-06-19 10:57:09.723017475 + @@ -108,9 +108,12 @@ mystdout =

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
I can replicate this issue with a standalone python script. http://pastebin.com/vTREYc9n It hangs at: read stdout: 'I: Base system installed successfully.\n' Furthermore, if I add a timeout to select and force it to read anyway, I get an IOError: read stdout: [Errno 11] Resource temporarily

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
FYI: the system I'm using has kernel 3.8.0-42-generic, i.e. it was installed at the time when the raring enablement stack was active. I can now reproduce with just a few lines: --- import subprocess args = ['/usr/sbin/debootstrap', '--arch=i386', 'trusty', '/tmp/tmpBQAxhc',

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
Argh. Scrub what I said about python. I can reproduce without python! # /usr/sbin/debootstrap --arch=i386 trusty /tmp/tmpBQAxhc http://archive.ubuntu.com/ubuntu | strace cat db.out ... read(0, I: Configuring initramfs-tools., 32768) = 34 write(1, I: Configuring initramfs-tools., 34) = 34

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
OK, I found it. During debootstrap run, a process udevd --daemon is started. It persists when debootstrap gets to the end. If you kill it, the process reading from debootstrap's stdout is able to terminate. My guess is that stdout is being passed to that daemon, and it's holding it open. No

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
I have raised these: Bug #1332155: debootstrap launches spurious udevd --daemon Bug #1332165: udevd --daemon does not close stdout -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vm-builder in Ubuntu.

[Bug 1287943] Re: vm-builder needs trusty suite

2014-06-19 Thread Brian Candler
The race condition in comment #17 is only true if mystdout.closed can become True asynchronously before we have called mystdout.close(). I'm not sure if there's any possibility of that. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to

[Bug 1342949] [NEW] nbd-server claims oldstyle exports not configured

2014-07-16 Thread Brian Candler
Public bug reported: [ubuntu 14.04] Given the following config file: /etc/nbd-server/config [generic] # If you want to run everything as root rather than the nbd user, you # may either say root in the two following lines, or remove them # altogether. Do not remove the [generic]

[Bug 568687] Re: Built vm image file retains random temp filename

2014-07-17 Thread Brian Candler
Still in 14.04. The other problem with the current directory containing temporary name approach is that it does not properly map to any libvirt storage type (either 'file' or 'directory'), and therefore cannot be managed properly through virsh or virt-manager, e.g. you can't clone it. -- You

[Bug 1348672] [NEW] virsh memtune fails with LXC guests (lxcDomainGetMemoryParameters)

2014-07-25 Thread Brian Candler
Public bug reported: [ubuntu 14.04 amd64 on Mac Mini, fully up to date] The virsh memtune function (see ftp://libvirt.org/libvirt/virshcmdref/html/sect-memtune.html) completely fails with LXC guests; it looks to be some sort of protocol/ABI problem. $ virsh -c

[Bug 1348688] [NEW] LXC does not limit swap usage (memory.memsw.limit_in_bytes missing)

2014-07-25 Thread Brian Candler
Public bug reported: (Sorry I'm not sure exactly what package to report this against - kernel perhaps? libvirt is what I was using to replicate the problem) Host platform: ubuntu 14.04 amd64, Mac Mini, 16GB RAM. Short version: create an LXC domain with memtune swap_hard_limit set in the XML:

[Bug 1348698] [NEW] libvirtd with lxc: cannot destroy domain (apparmor blocks kill signal)

2014-07-25 Thread Brian Candler
Public bug reported: Host: ubuntu 14.04 amd64, Mac mini 16GB. * Prepare an Ubuntu 14.04 guest rootfs * Define an LXC instance using libvirt XML (see below) * virsh start -c lxc: domain * virsh destroy -c lxc: domain gives the following error: $ virsh -c lxc: destroy gold-lxc-20140717 error:

[Bug 1037607] Re: vmbuilder completely fails on Quantal due to kernel pae detection failure

2014-07-30 Thread Brian Candler
I also confirm the patch in #3 works. However I'd suggest that rather than patching dapper.py, it would be better to do modify the quantal.py subclass (if that's the first release which requires /proc to be mounted). Otherwise you're going to change the build behaviour for all previous releases

[Bug 1037607] Re: vmbuilder completely fails on Quantal due to kernel pae detection failure

2014-08-21 Thread Brian Candler
Maybe you're right. I just followed the original patch. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to vm-builder in Ubuntu. https://bugs.launchpad.net/bugs/1037607 Title: vmbuilder completely fails on Quantal due to kernel pae

[Bug 222194] [NEW] Hardy: ubuntu-xen-server will not install

2008-04-25 Thread Brian Candler
Public bug reported: On a Hardy system (which was originally Dapper but upgraded using update-manager -d) # apt-get install ubuntu-xen-server ... The following packages have unmet dependencies. ubuntu-xen-server: Depends: linux-xen but it is not going to be installed E: Broken packages #

[Bug 222194] Re: Hardy: ubuntu-xen-server will not install

2008-06-25 Thread Brian Candler
Hmm, server and desktop flavours of hardy may be different in terms of which sources they enabled by default. Check if you have both universe and multiverse enabled in /etc/apt/sources.list. If not, add them, then 'apt-get update', then try again. -- Hardy: ubuntu-xen-server will not install

[Bug 222194] Re: Hardy: ubuntu-xen-server will not install

2008-06-24 Thread Brian Candler
OK, I finally got round to replicating this. Under VMware server, I made two separate installations: ubuntu-6.06.1-desktop-i386 and ubuntu-8.04-desktop-i386 (1) On the 8.04 VM, I let it upgrade all packages (203 of them); shutdown; snapshot; restart. Then I tried apt-get install

[Bug 222194] Re: Hardy: ubuntu-xen-server will not install

2008-06-24 Thread Brian Candler
...and I guess I should add: if ubuntu-xen-server depends unconditionally on a package in the multiverse repository, shouldn't ubuntu-xen-server itself live in multiverse? -- Hardy: ubuntu-xen-server will not install https://bugs.launchpad.net/bugs/222194 You received this bug notification

[Bug 89023] Re: Update of Firefox disables PSM (not more SSL or saved passwords)

2007-03-06 Thread Brian Candler
My wife is affected by this problem too - in firefox, independent of thunderbird. Since the most recent update to firefox was applied (via the orange update icon on the panel), she has been unable to access her on-line banking. It's easy to replicate: enter URL http://www.barclays.co.uk/, then

[Bug 247071] [NEW] Hardy freezes on EPIA Via when switching screens

2008-07-09 Thread Brian Candler
Public bug reported: System description: Epia M1 motherboard, VIA chipset (Nehemiah processor, 1GHz), 1GB RAM, firewire harddrive. Fully updated Hardy, kernel 2.6.24-19-386. This system ran reliably under Dapper for over a year. The normal usage pattern of this system is for my wife and I

[Bug 247071] Re: Hardy freezes on EPIA Via when switching screens

2008-07-10 Thread Brian Candler
Digging around some more, it seems I *do* have acceleration enabled. $ glxinfo | grep render direct rendering: Yes OpenGL renderer string: Mesa DRI CastleRock (CLE266) 20060710 x86/MMX/SSE $ dpkg-query -l | egrep -i '(chrome|via display)' ii libchromexvmc1

[Bug 247071] Re: Hardy freezes on EPIA Via when switching screens

2008-07-10 Thread Brian Candler
Set package to xserver-xorg-video-openchrome ** Changed in: xserver-xorg-video-openchrome (Ubuntu) Sourcepackagename: None = xserver-xorg-video-openchrome -- Hardy freezes on EPIA Via when switching screens https://bugs.launchpad.net/bugs/247071 You received this bug notification because you

[Bug 247071] Re: Hardy freezes on EPIA Via when switching screens

2008-07-11 Thread Brian Candler
Based on an old posting I found I added the following to /etc/X11/xorg.conf and have been unable to reproduce the crash. Presumably my graphics performance is reduced though. Section Module Disable glx Disable xtrap Disable record Disable GLcore Disable dri EndSection --

[Bug 247071] Re: Hardy freezes on EPIA Via when switching screens

2008-11-19 Thread Brian Candler
Last night I tried booting from an Intrepid CD, and switching consoles a few times I wasn't able to replicate the problem. lsmod and X.org.log suggested that the via, openchrome and DRI stuff was in use. However I don't suppose I'll know for sure unless I actually perform an upgrade to Intrepid,

[Bug 486079] Re: installing libmozjs-dev will remove ... firefox ubuntu-desktop ubuntu-docs xulrunner-1.9.1 and a lot more

2009-11-22 Thread Brian Candler
I suffer the same problem - if I want to compile couchdb from source against libmozjs-dev (*1), I am forced to uninstall firefox first (*2) It appears there is a declared package conflict between xulrunner-1.9.1 and libmozjs-dev: $ apt-cache show xulrunner-1.9.1 | grep Conflicts Conflicts:

[Bug 486079] Re: installing libmozjs-dev will remove ... firefox ubuntu-desktop ubuntu-docs xulrunner-1.9.1 and a lot more

2010-01-03 Thread Brian Candler
More specifically: the runtime package xulrunner-1.9.1 may today contain /usr/lib/xulrunner-1.9.1.5/libmozjs.so, but tomorrow may contain /usr/lib/xulrunner-1.9.1.6/libmozjs.so. So any application built against the first (e.g. using LD_RUN_PATH) will stop working when xulrunner is upgraded.

[Bug 366549] Re: Kaffeine player crashes with ATI Catalyst Driver (ati-driver-installer-9-4-x86.x86_64.run)

2010-01-03 Thread Brian Candler
I get approximately 35 of these lines logged when switching between screens (e.g. Ctrl-Alt-F9, Ctrl-Alt-F7) on a Dell Zino HD, which has ATI Radeon HD 3200 (Ubuntu Karmic, 64bit; after install I was asked if I wanted to install the proprietary drivers, and I said yes) ... Jan 3 15:47:07 zino

[Bug 499235] [NEW] Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-21 Thread Brian Candler
Public bug reported: I have a Canon PowerShot A430 camera, with a USB cable to download photos. It worked absolutely fine with my old system: * EPIA VIA motherboard, Ubunty Hardy 32-bit However it does not work at all with my new system: * Dell Zino HD, Ubuntu Karmic 64-bit In the old system

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-21 Thread Brian Candler
** Attachment added: AlsaDevices.txt http://launchpadlibrarian.net/37027076/AlsaDevices.txt ** Attachment added: AplayDevices.txt http://launchpadlibrarian.net/37027077/AplayDevices.txt ** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/37027079/BootDmesg.txt **

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-22 Thread Brian Candler
Thank you. The camera doesn't have a way to change to a different USB mode (I've checked the manual and the menus carefully) - at worst I will have to buy a USB-attached compact flash reader. -- Can't attach Canon A430 camera via USB to Dell Zino HD https://bugs.launchpad.net/bugs/499235 You

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-22 Thread Brian Candler
I have just tried this with my wife's phone, a Sony Ericsson K800i, and I have a similar but not identical problem. After connecting, logs show see several devices with increasing serial numbers being attached. After a minute or two the system tells me that I have a music player (offering to run

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-22 Thread Brian Candler
** Attachment added: lsusb -v output, when it eventually comes http://launchpadlibrarian.net/37101367/lsusb-v.txt -- Can't attach Canon A430 camera via USB to Dell Zino HD https://bugs.launchpad.net/bugs/499235 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-23 Thread Brian Candler
UPDATE: I got the Canon camera to work, by unbinding ehci as per the instructions at http://wiki.ubuntuusers.de/Benutzer/BigMc/Tascam_US-144 That is, # echo -n :00:12.2 | tee -a /sys/bus/pci/drivers/ehci_hcd/unbind # echo -n :00:13.2 | tee -a /sys/bus/pci/drivers/ehci_hcd/unbind Of

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-23 Thread Brian Candler
** Attachment added: lspci-vv.txt http://launchpadlibrarian.net/37119065/lspci-vv.txt -- Can't attach Canon A430 camera via USB to Dell Zino HD https://bugs.launchpad.net/bugs/499235 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-23 Thread Brian Candler
** Attachment added: proc-interrupts.txt http://launchpadlibrarian.net/37119067/proc-interrupts.txt -- Can't attach Canon A430 camera via USB to Dell Zino HD https://bugs.launchpad.net/bugs/499235 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-23 Thread Brian Candler
This is /proc/interrupts after I have rebound ehci. They get 17 and 21, which don't appear to be shared. ** Attachment added: proc-interrupts-with-ehci.txt http://launchpadlibrarian.net/37119111/proc-interrupts-with-ehci.txt -- Can't attach Canon A430 camera via USB to Dell Zino HD

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2009-12-23 Thread Brian Candler
Strangely, even after rebinding ehci, the camera works. However the transfer speeds appear to be just as slow (as witnessed by the time taken to transfer a large AVI file) Dec 23 08:20:13 zino kernel: [ 1525.230032] usb 3-1: new full speed USB device using ohci_hcd and address 11 Dec 23 08:20:13

[Bug 499737] [NEW] duplicate detection for video files doesn't work

2009-12-23 Thread Brian Candler
Public bug reported: Binary package hint: f-spot I have a Canon PowerShot A430 which can take video (AVI) as well as photos. When attaching the camera a second time, duplicate jpegs are skipped but the AVIs are re-imported, with xxx.avi becoming xxx-1.avi $ find Pictures -name '*.avi' | sort

[Bug 499737] Re: duplicate detection for video files doesn't work

2009-12-23 Thread Brian Candler
** Attachment added: Dependencies.txt http://launchpadlibrarian.net/37119421/Dependencies.txt ** Attachment added: XsessionErrors.txt http://launchpadlibrarian.net/37119422/XsessionErrors.txt -- duplicate detection for video files doesn't work https://bugs.launchpad.net/bugs/499737 You

[Bug 70745] Re: erlang-doc-html conflicts with other erlang packages

2009-12-02 Thread Brian Candler
Same problem here with Xubuntu 9.10 $ sudo apt-get install erlang-doc-html Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: libsctp1 tk unixodbc emacsen-common

[Bug 475559] Re: thinkpad x30 suspend/resume problems (was OK under Jaunty)

2009-11-13 Thread Brian Candler
Here is my xorg.conf - it is possibly suboptimal or some settings may be unnecessary, but my machine is stable. ** Attachment added: xorg.conf on Brian Candler's Thinkpad X30 http://launchpadlibrarian.net/35607688/candler-xorg.conf -- thinkpad x30 suspend/resume problems (was OK under

[Bug 475559] Re: thinkpad x30 suspend/resume problems (was OK under Jaunty)

2009-11-14 Thread Brian Candler
Volume/mute are working for me - a small blue volume bar is overlaid across the bottom of the screen (not that I actually use these buttons, I hadn't even tried them before) I don't think I have any thinkpad-specific packages installed, but there is a kernel module: $ lsmod | grep -i think

[Bug 475559] Re: thinkpad x30 suspend/resume problems (was OK under Jaunty)

2009-11-05 Thread Brian Candler
Update: I have solved the Fn-F4 sleep problem (after wasting a lot of time hacking acpi scripts to see what was going on) In the end the solution was just to run /usr/bin/xfce4-power-manager- settings, and change the setting for When the sleep button is pressed from nothing to suspend. I had

[Bug 381791] Re: LDAP::SSLConn from ruby fails, probably from not seeing cert

2009-05-30 Thread Brian Candler
Have you tried 'apt-get install libopenssl-ruby' ? Ubuntu separates out all of the openssl-dependent parts of Ruby into a separate package (including things like net/https as well as openssl) -- LDAP::SSLConn from ruby fails, probably from not seeing cert https://bugs.launchpad.net/bugs/381791

[Bug 381791] Re: LDAP::SSLConn from ruby fails, probably from not seeing cert

2009-06-02 Thread Brian Candler
someone with a little energy could in fact get in and hack this together anyway Please feel free to do so: apt-get source libldap-ruby1.8 You might try building ruby-ldap from source separately to see if you can get it to behave the way you want, and then see what changes are needed to the

[Bug 62060] Re: Running command: sudo update-flashplugin Gives result: automatic installation failed due to network problems or upstream changes

2006-11-16 Thread Brian Candler
*** This bug is a duplicate of bug 50284 *** This patch works for me (under ubuntu-6.06-1) ** Attachment added: update-flashplugin fix http://librarian.launchpad.net/5085003/flashplugin.diff -- Running command: sudo update-flashplugin Gives result: automatic installation failed due to

[Bug 89023] Re: Update of Firefox disables PSM (not more SSL or saved passwords)

2007-03-26 Thread Brian Candler
Do you have any custom certificates installed? In my case, I don't think so. If I run strings .mozilla/firefox/*/cert8.db on both my own account or my wife's, I see only Version. Is there another or more direct way to check? The problem remains. My account can access https sites, but hers

[Bug 89023] Re: Update of Firefox disables PSM (not more SSL or saved passwords)

2007-03-26 Thread Brian Candler
Uninstalling the google toolbar appears to have fixed the problem! At least, I could go to https://signup.tiscali-business.co.uk/ immediately. The first time I tried http://www.barlays.co.uk/ and 'login' I got the same error, but after a couple of retries it was fine. So this needs some more

[Bug 923987] [NEW] bonnie++ crash with increased chunk size

2012-01-30 Thread Brian Candler
Public bug reported: Platform: Ubuntu 11.10 x86_64 server, i3 3.4GHz processor, 8GB RAM. This works fine: # time bonnie++ -d /data/sdb -s 16384k -n 98:800k:500k:1000 -u root It uses transfers of 8192 bytes (as shown by strace). I wanted to test using a larger chunk size: # time bonnie++ -d

[Bug 923987] Re: bonnie++ crash with increased chunk size

2012-01-31 Thread Brian Candler
The bug appears to be here (bonnie++.cpp) void set_io_chunk_size(int size) { delete m_buf; pa_new(size, m_buf, m_buf_pa); m_io_chunk_size = size; } void set_file_chunk_size(int size) { delete m_buf; m_buf = new char[__max(size, m_io_chunk_size)]; m_file_chunk_size = size; }

[Bug 865268] Re: snmpd reports wrong value for hrStorageSize

2011-10-03 Thread Brian Candler
-- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/865268 Title: snmpd reports wrong value for hrStorageSize on large filesystem To manage notifications about this bug go to:

[Bug 865268] [NEW] snmpd reports wrong value for hrStorageSize

2011-10-03 Thread Brian Candler
Public bug reported: Look at hrStorageSize.34 in the below table. Notice that: (1) it's smaller than hrStorageUsed.34, so it can't possibly be right (2) it's the same as the previous row, hrStorageSize.33 $ snmpwalk -c public -v2c hostname hrStorageTable HOST-RESOURCES-MIB::hrStorageIndex.1 =

[Bug 865268] Re: snmpd reports wrong value for hrStorageSize

2011-10-03 Thread Brian Candler
Looks like it could be related to this: https://bugzilla.redhat.com/show_bug.cgi?id=654384 Apparently a newer snmpd would clamp this value to 2^31, and an even newer snmpd would use a fake larger block size so as to be able to report on large filesystems:

[Bug 804665] Re: gnome-settings-daemon crashed with SIGSEGV

2011-09-01 Thread Brian Candler
Note: I turned off Unity shortly after this, and haven't seen the problem again since. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/804665 Title: gnome-settings-daemon crashed with SIGSEGV To

[Bug 484336] Re: /etc/rsyslog.conf permissions incorrect/missing for creation of dynamic files

2011-11-17 Thread Brian Candler
No, that's the same. Commenting out those lines makes rsyslogd run as root (which is very dangerous) Setting $PrivDropToGroup adm (to match $FileGroup adm) is a less dangerous solution to the problem, although still not ideal from a security point of view. Now, rsyslogd has sufficient rights to

[Bug 557736] Re: Lenovo X100e: thinkpad_acpi: Not yet supported ThinkPad detected!

2011-11-10 Thread Brian Candler
Thinkpad ACPI was fine for me in Maverick and Natty. (Still problems with wireless dropping out, and less frequently ethernet, but that's a different issue) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 554099] Re: qualcomm gobi (2000) mobile broadband module not working after upgrade to lucid

2010-07-01 Thread Brian Candler
Works for me too, after v2.6.32-23 update then rebuilding the qualcomm and thinkpad_acpi modules as done originally. I couldn't load the previously-built modules. -- qualcomm gobi (2000) mobile broadband module not working after upgrade to lucid https://bugs.launchpad.net/bugs/554099 You

[Bug 571258] Re: plymouth main process (341) killed by SEGV signal

2010-10-19 Thread Brian Candler
FWIW, I also see the plymouth main process SEGV when starting a 10.10 AMI image under KVM 10.04, with 'console=ttyS0' on the kernel command line. This is similar to the OP's report, except that I see plymouth- splash terminate first, and then plymouth main SEGV. ... [1.480006] EXT4-fs (vda):

[Bug 659466] Re: fetchexc cannot find openjdk java

2010-11-04 Thread Brian Candler
Problem still exists in 10.10. The upgrade installed package fetchexc 2.0-3 and I had to re-edit /usr/bin/fetchexc This time I just added /usr/bin/java to list of paths checked, and that's fine too. -- fetchexc cannot find openjdk java https://bugs.launchpad.net/bugs/659466 You received this

[Bug 671338] [NEW] modemmanager won't initialize gobi 2000 in maverick

2010-11-05 Thread Brian Candler
Public bug reported: Binary package hint: modemmanager Description:Ubuntu 10.10 Release:10.10 I have an IBM Thinkpad X100e with Gobi 2000 3G card. This was working fine under Lucid if I applied the qcserial/wwan kernel patch and built gobi_loader from source (see #554099 for

[Bug 671338] Re: modemmanager won't initialize gobi 2000 in maverick

2010-11-05 Thread Brian Candler
** Attachment added: modem.log.txt https://bugs.launchpad.net/bugs/671338/+attachment/1723725/+files/modem.log.txt -- modemmanager won't initialize gobi 2000 in maverick https://bugs.launchpad.net/bugs/671338 You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 671338] Re: modemmanager won't initialize gobi 2000 in maverick

2010-11-05 Thread Brian Candler
** Attachment added: nm.log.txt https://bugs.launchpad.net/ubuntu/+source/modemmanager/+bug/671338/+attachment/1723726/+files/nm.log.txt -- modemmanager won't initialize gobi 2000 in maverick https://bugs.launchpad.net/bugs/671338 You received this bug notification because you are a member

[Bug 671338] Re: modemmanager won't initialize gobi 2000 in maverick

2010-11-05 Thread Brian Candler
Correction: I'm not using the packaged gobi-loader, it's still using the one I had built myself. br...@x100:~$ dpkg-query -l | grep -i gobi br...@x100:~$ ls -l /lib/udev/gobi_loader -rwxr-xr-x 1 root root 13907 2010-06-09 20:22 /lib/udev/gobi_loader br...@x100:~$ ls -l

[Bug 671338] Re: modemmanager won't initialize gobi 2000 in maverick

2010-11-05 Thread Brian Candler
Correction: I'm not using the packaged gobi-loader, it's still using the one I had built myself. br...@x100:~$ dpkg-query -l | grep -i gobi br...@x100:~$ ls -l /lib/udev/gobi_loader -rwxr-xr-x 1 root root 13907 2010-06-09 20:22 /lib/udev/gobi_loader br...@x100:~$ ls -l

[Bug 554099] Re: Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken

2010-11-05 Thread Brian Candler
@lapistano: to get thinkpad_acpi.c, see #557736 comment #23 The one I was using is: $ grep TPACPI_VERSION /v/build/thinkpad_acpi.c | head -1 #define TPACPI_VERSION 0.24-20100516 $ sha1sum /v/build/thinkpad_acpi.c 029c81cb90b0e0b8d3775913e4ddb5820b50683b /v/build/thinkpad_acpi.c However I've

[Bug 554099] Re: Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken

2010-11-05 Thread Brian Candler
@lapistano: to get thinkpad_acpi.c, see #557736 comment #23 The one I was using is: $ grep TPACPI_VERSION /v/build/thinkpad_acpi.c | head -1 #define TPACPI_VERSION 0.24-20100516 $ sha1sum /v/build/thinkpad_acpi.c 029c81cb90b0e0b8d3775913e4ddb5820b50683b /v/build/thinkpad_acpi.c However I've

[Bug 580408] Re: Option 'No' at question 'Continue without installing GRUB?' does nothing. Forced to answer 'Yes'.

2010-11-25 Thread Brian Candler
This bug still exists in Lucid; I've had it on two separate Lucid Server VMs (the first is i386 running under VMware Server 1.x/RHEL4; the second is x86_64 running under KVM/Karmic) The problem was triggered by a simple upgrade, which pulled in a new versions of grub-common and grub-pc. Here's

[Bug 671338] Re: modemmanager won't initialize gobi 2000 in maverick

2010-11-16 Thread Brian Candler
I have solved this problem, simply by creating a new network connection in Network Manager and using that instead. Investigating why the new one works fine whereas the original one doesn't: if I compare .gconf/system/networking/conenctions/{2,17} - (blanking out the mtime attributes to make it

[Bug 430732] Re: radclient doesn't work

2011-02-09 Thread Brian Candler
Still a problem in 10.04 LTS -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/430732 Title: radclient doesn't work -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com

[Bug 475559] Re: thinkpad x30 suspend/resume problems (was OK under Jaunty)

2010-02-09 Thread Brian Candler
** Attachment added: dmidecode.txt http://launchpadlibrarian.net/38918810/dmidecode.txt -- thinkpad x30 suspend/resume problems (was OK under Jaunty) https://bugs.launchpad.net/bugs/475559 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

[Bug 475559] Re: thinkpad x30 suspend/resume problems (was OK under Jaunty)

2010-02-09 Thread Brian Candler
** Attachment added: acpi.tar.bz http://launchpadlibrarian.net/38918820/acpi.tar.bz -- thinkpad x30 suspend/resume problems (was OK under Jaunty) https://bugs.launchpad.net/bugs/475559 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 554099] Re: qualcomm gobi (2000) mobile broadband module not working after upgrade to lucid

2010-06-23 Thread Brian Candler
It's important to have the three firmware files, and choose the ones with the right md5 checksums (as there were various versions in the Windows drivers under C:\Program Files\QUALCOMM\Images\Lenovo\*) I used the md5sums from here: http://www.thinkwiki.org/wiki/Qualcomm_Gobi_2000 $ md5sum

[Bug 554099] Re: qualcomm gobi (2000) mobile broadband module not working after upgrade to lucid

2010-06-23 Thread Brian Candler
I haven't tried video streaming over 3G as it would be too expensive on my PAYG SIM. But for basic browsing and E-mail it works fine; it hasn't locked up the whole machine. However I'm using the standard Lucid kernel with self-compiled modules for qcserial and thinkpad_acpi, not the mainline

[Bug 554099] Re: qualcomm gobi (2000) mobile broadband module not working after upgrade to lucid

2010-06-24 Thread Brian Candler
For comparison, here's what I have: # cd '/mnt/Program Files/QUALCOMM/Images/Lenovo' find . -name '*.mbn' -print0 | xargs -0 md5sum c3d6fd93ae2e52775ef9cd8fccbc20be ./0/UQCN.mbn 48191d62dc4091fb9d23e0b947611c58 ./1/amss.mbn 4f46a856fcceb197943d0cf3257c3621 ./1/apps.mbn

[Bug 554099] Re: [PATCH] Qualcomm Gobi 2000 3G (gobi_loader/qcserial) broken in 10.04

2010-07-16 Thread Brian Candler
I have this working on my ThinkPad T510 with Vodafone UK, however, it only works intermittently. Sometimes when I start up from cold, the option is not available in NetworkManager and requires another shutdown / startup cycle? Have a look at the output of lsusb, because the device changes its

[Bug 591699] Re: Lenovo Thinkpad x100e freezes when X blanks screen

2010-06-14 Thread Brian Candler
Tried updating BIOS to 1.25, but it doesn't make any difference. I do have a very quick way to replicate the problem now, using xset: (1) login to gdm and bring up a terminal window (2) from another device, start scp'ing a large file to the thinkpad: scp something.iso x.x.x.x:/dev/null (3) on

[Bug 567016] Re: Wireless won't work on Lenovo Thinkpad T510

2010-06-20 Thread Brian Candler
Oh thanks, now I know another way to crash my Thinkpad X100e :-( In return you might want to see if you can crash yours according to bug #591699 (i.e. xset s 1 to blank the screen while transferring a large file over the ethernet). I haven't yet tried repeating the test with various kernel

[Bug 567016] Re: Wireless won't work on Lenovo Thinkpad T510

2010-07-06 Thread Brian Candler
Right at about 1:50 is where i started the file transfer. Want to guess when it completed? Not really, can you explain what you saw? How long did the transfer take, or before it got interrupted? Possible side issue, but have you tried disabling screen blanking (xset s 0) and disabling all other

[Bug 567016] Re: Wireless won't work on Lenovo Thinkpad T510

2010-07-06 Thread Brian Candler
All current Macbooks are x86. You can even boot them into Windows if you buy a copy. As for the mini PCI: Thinkpads do generally have very good hardware maintenance manuals that you can download from the Lenovo support site. You'll be able to check how easy it would be to open up and swap the

[Bug 499235] Re: Can't attach Canon A430 camera via USB to Dell Zino HD

2010-06-03 Thread Brian Candler
I have just upgraded the machine in question to Lucid, and the camera now works without me having to disable ehci explicitly, although it does appear to be at USB1 speeds. Jun 3 22:52:14 zino kernel: [ 1500.970025] usb 3-2: new full speed USB device using ohci_hcd and address 3 Jun 3 22:52:14

[Bug 302314] Re: Pidgin not using existing root TLS/SSL certificates for validation

2010-05-17 Thread Brian Candler
The problem definitely remains. This morning, pidgin under Hardy started giving me the 'invalid certificate' error for login.live.com, asking me blindly whether or not to accept the new certificate. It showed me nothing more than the fingerprint and start/end times to make that choice.

[Bug 535653] Re: Lenovo Thinkpad x100e System freeze during X start-up and while X is running, but only on battery.

2010-06-08 Thread Brian Candler
I have installed Lucid amd64 on a new Thinkpad X100e (model NTS5EUK, dual core Neo L625, BIOS 1.21, 2GB, WLAN and Gobi WWAN). I enabled AMD virtualisation extensions in the BIOS, just because I could :-) I initially found it crashed on pressing the brightness up/down function keys. As this was

[Bug 535653] Re: Lenovo Thinkpad x100e System freeze during X start-up and while X is running, but only on battery.

2010-06-08 Thread Brian Candler
Fortunately this freezing problem is reproducible, even if it takes a little while. My test setup: an ethernet LAN with my new laptop (x100e), old laptop (x30), and desktop (zino HD) On the desktop I monitor the new laptop's health like this, so I can get notified shortly after it drops off the

[Bug 535653] Re: Lenovo Thinkpad x100e System freeze during X start-up and while X is running, but only on battery.

2010-06-08 Thread Brian Candler
Just to be sure, after getting rid of etckeeper I reinstalled fglrx but removed radeon.modeset=0 and re-ran the test, and it froze again. Then I removed fglrx and added radeon.modeset=0 and re-ran the test, and it froze once more (i.e. dropped off network). Again, moving the cursor made the screen

[Bug 535653] Re: Lenovo Thinkpad x100e System freeze during X start-up and while X is running, but only on battery.

2010-06-08 Thread Brian Candler
New experiment: created /etc/X11/xorg.conf with the following: Sections ServerFlags Option BlankTime 1 Option StandbyTime 2 Option SuspendTime 3 Option OffTime 4 EndSection with my copy test: after one minute the screen blanked and the network seemed OK, but within 20 seconds it had frozen, and

[Bug 591699] [NEW] Lenovo Thinkpad x100e freezes when X blanks screen

2010-06-09 Thread Brian Candler
Public bug reported: [Moved from #535653. I have no problem with X starting up, but only when X blanks screen] Machine is a Lenovo Thinkpad X100e model NTS5EUK: AMD Turion(tm) Neo X2 Dual Core Processor L625 stepping 02 + 2GB RAM, internal WLAN (realtek) and WWAN (Gobi 2000) cards. BIOS version

[Bug 591699] Re: Lenovo Thinkpad x100e freezes when X blanks screen

2010-06-09 Thread Brian Candler
** Attachment added: AlsaDevices.txt http://launchpadlibrarian.net/50005529/AlsaDevices.txt ** Attachment added: AplayDevices.txt http://launchpadlibrarian.net/50005530/AplayDevices.txt ** Attachment added: BootDmesg.txt http://launchpadlibrarian.net/50005531/BootDmesg.txt **

[Bug 535653] Re: Lenovo Thinkpad x100e System freeze during X start-up and while X is running, but only on battery.

2010-06-09 Thread Brian Candler
Power management settings dialog says to blank screen after 30 minutes when on AC power, so I think that's where the 30 minutes comes from. I have opened a new bug 591699 with more details and the exact steps to reproduce (this time using i386 instead of amd64, with same results). The bug I'm

[Bug 591699] Re: Lenovo Thinkpad x100e freezes when X blanks screen

2010-06-09 Thread Brian Candler
Did apt-get fglrx and reboot, same behaviour. I will attach /var/log/Xorg.0.log and /var/log/messages both for radeon (original) and after installing fglrx. The messages file has a few [drm] Resetting GPU lines, not sure if they are relevant. ** Attachment added: Xorg.0.log-radeon-i386

  1   2   3   4   >