[00:00] glad we (and Debian) aren't the only ones with that kind of horrible packaging hack ;) [00:02] god [00:02] now I have to figure out how to do this with cdbs [00:02] I don't suppose you know off the top of your head? [00:03] binary-post-install/foo :: [00:03] sed -i in ... what ion_ said [00:03] sed -ire '...' debian/$(cdbs_curpkg)/foo/bar.pc [00:09] doesn't work [00:09] debian/tmp has been wiped by then [00:10] debian/libdbus-1-dev/... [00:10] it's been dh_install-ed [00:10] it's not referenced by dh_install [00:10] literally the whole of debian/tmp is gone, including the directory [00:10] I hate CDBS [00:10] $ fgrep .pc debian/libdbus-1-dev.install [00:10] debian/tmp/lib/pkgconfig/dbus-1.pc usr/lib/pkgconfig [00:10] yeah I removed that in an attempt to do the sed ;) [00:11] put it back and do 'sed -i blah debian/libdbus-1-dev/usr/lib/pkgconfig/dbus-1.pc' in binary-post-install/libdbus-1-dev [00:11] i.e. let it install and then sed in-place [00:13] sed: can't read debian/libdbus-1-dev/usr/lib/pkgconfig/dbus-1.pc: No such file or directory [00:13] nope [00:13] still fail [00:16] * Keybuk finds a place that works [00:17] I would just put it in install/libdbus-1-dev [00:17] When's binary-post-install? === no0tic is now known as maru0tic [00:18] now I ended up with a .pce file ?! [00:19] o_O [00:20] Oh, -i must be separated from -e etc. [00:20] As in, sed -i.backup -re '...' something [00:20] Oh. Heh.. :) === maru0tic is now known as no0uscia === no0uscia is now known as no0tic [00:25] why bother with -e? [00:25] you don't need it [00:25] nor do you need -r in the example Keybuk gave [00:26] True. I just have -e as a habit. And -r is kind of a default for me. :-) [00:26] I didn’t really take a good look at the actual sed expression. [00:27] it has $ where it should have \$ [00:27] Actually, \$$ since it’s in a Makefile. [00:27] oh yes [00:29] ? [00:31] this looks about right [00:31] binary-post-install/libdbus-1-dev:: [00:31] sed -i 's@-I\$${libdir}@-I$${prefix}/lib@' debian/libdbus-1-dev/usr/lib/pkgconfig/dbus-1.pc [00:31] why use ${prefix} there at all? [00:32] and why \$ ? [00:33] \$ because sed thinks $ means end of line [00:33] ${prefix} because the RH code did ;-) and seems neater [00:37] install/libdbus-1-dev:: [00:37] mkdir -p debian/libdbus-1-dev/usr/lib/pkgconfig [00:37] sed -e 's@-I\$${libdir}@-I$${prefix}/lib@' debian/tmp/lib/pkgconfig/dbus-1.pc > debian/libdbus-1-dev/usr/lib/pkgconfig/dbus-1.pc [00:37] was what I went with in the end [00:40] the version I had was sufficient to get openssh building, at any rate [00:41] if yours produces the same .deb contents (as it looks like it should) then we ought to be fine [00:41] openssh depends on dbus now? :) [00:42] consolekit [00:42] sshkit [00:43] my Bad Idea light is going off [00:43] At this rate, /bin/sh, init and finally the kernel will use dbus. ;-) [00:43] ah, you've screwed it back in after spending a week in the same building as me? :) [00:44] ion_: well, two out of three [00:44] Keybuk: new filament in the bulb [00:45] keybuk: dbus being actually useful for some of them was actually supposed to be part of the joke. :-) [00:45] openssh upstream aren't too happy about the fact that dbus is GPL and openssh is rather aggressively not, which unfortunately I'd completely failed to consider [00:45] so I think I need to figure out how to split that stuff out into a helper [00:45] dbus is attempting to be MIT [00:45] that would help [00:45] it's also AFL [00:46] the AFL is a bit impenetrable [00:46] the MIT thing is held up by one of the companies that contributed having vanished [00:46] apparently this is a major stumbling block, because they can't ok it [00:46] to my mind, if they've vanished hard enough, they can't take legal action either :p [00:47] Heh [00:49] I think (on reading it) that the AFL is MIT-like enough for it not to be a legal problem for Ubuntu; it's literally 10 times the line length though [00:49] (which tends to trip openssh upstream's WHATEVER meter) [00:49] yes, but openssh is not on the rational side of the world [00:50] it belongs in that special camp with other upstreams like glibc [00:53] hmm. on re-reading, describing the AFL as MIT-like is definitely false - it requires source code provision [00:53] (not that I object but it's one thing the MIT/BSD licences determinedly don't do) [00:55] err [00:55] not entirely true [00:55] it only requires source code provision of the original work when distributing it [00:55] it doesn't require source code provision _at_all_ for derivative works [00:56] oh, true [00:56] ugh, though, clause 9 is horrible [00:56] you have to make a "reasonable effort" to obtain explicit assent to the licence [00:56] yeah it's a sucky licence [00:56] which is why they want to change it to MIT/X11 [00:57] is there anything I can quote on that, so openssh upstream don't just get fed up and close the bug? :-) [00:57] on the relicense? [00:58] yeah [00:58] lots and lots of ML posts [00:58] but the conclusion is that it's stuck still [01:00] oh, it's on the website, I can quote that [01:00] http://lists.freedesktop.org/archives/dbus/2008-February/009410.html [01:01] the current status is that for almost all of the code, the authors have agreed to an MIT/X11 licence [01:01] (including us! :p) [01:02] ta [01:13] random use of bzr #15 [01:13] import two version of a package [01:13] and use bzr blame to figure out which lines haven't been changed [01:18] like inverse diff? [01:18] yeah [01:18] patchutils doesn't have one ;) [01:19] /usr/bin/same :p [01:19] Heh [01:22] hello. I've submitted a patch upstream (linux-kernel) for detection of macbook pro 4,1 and macbook air keyboards. It'd be nice if it made it into ubuntu sooner. Should I resubmit it for ubuntu, and if so, where? [01:27] ubuntu-kernel [01:30] is that a mailing list? what's the full address? Is there a page that details the patch format for ubuntu etc? [01:32] mailing list [01:32] same general method as lkml [01:33] hm https://lists.ubuntu.com/mailman/listinfo/ubuntu-kernel says no such list [01:33] grep for kernel ;) [01:34] kernel-bugs? [01:34] kernel-team [01:34] ok. thanks guys [01:35] new to this stuff... heh [01:35] https://wiki.ubuntu.com/KernelGitGuide [01:37] can I just resend the patch I sent upstream? [01:44] probably [01:48] done. thanks again :) === asac_ is now known as asac === asac_ is now known as asac [03:14] What does it mean when kill -9 won't kill an process? :P [03:15] It's probably in D state? It'll be waiting in the kernel, and can't recieve signals at all. [03:16] doh, it is in D state [03:16] Stupid firefox :/ [03:17] Yup. Unkillable. [03:17] Weird... new applications won't start :/ [03:17] D state makes the baby jesus cry. [03:18] Now all my applications are going into D state :/ [03:18] Right. Something has died horribly, and the world is ending. [03:20] Reboot is only option? [03:21] If you can get /sbin/shutdown to not D state, yeah :) [03:22] slangasek: thanks for merging ;-) [03:22] n/p [03:23] nooo!!! :( [03:23] * cody-somerville just lost the Xubuntu Strategy document draft 2. === asac_ is now known as asac === pabluk_ is now known as pabluk [05:52] Good Afternoon. [05:54] I was sitting briefly, aghast 'n pondrance, and it became notable to one that there is no cron gui management tool, that one of course being me; if you could so explain some burdened parly to me in the form of a hairdresser in silk stockings, I'd be very delighted, or possibly intrigued to find a solution of some sort. [05:56] ? [06:04] DrVague: that's probably because any gui-driven job scheduler does far more than cron, and the gui comes after the decision that cron is lacking [06:04] lamont: what? you're suggest a replacement backend for cron? [06:05] you're kidding? [06:05] no. I'm saying that a gui for cron is the least of its issues [06:05] if you expose cron to a gui-requiring user, then you also have to teach him shell scripting... [06:07] hurrrrr? [06:07] that doesnt follow for me [06:07] well, what shell commands is he going to put in his crontab? [06:08] i was thinking he would just use the gui to schedule actual sh scripts to run and set the time with a mouse [06:08] 'add new job' ::file selection dialog:: 'time' ::calendar:: [06:08] and then the first thing that anyone who's used an actual job scheduler on (say) a mainframe runs into is "how do I tell it to release job B when job A finishes??" (answer? run a real job scheduler instead of cron, or hack together your own scheduler in the jobs) [06:08] 'save' 'cancel' [06:09] right. and someone has to write those shell scripts... [06:09] and whoever writes those generally drops something to run them into /etc/cron.* [06:09] thats like saying the team who maintains geany should be responsible for teaching everyone perl [06:10] my point is more that anyone who is satisfied with cron in the current world doesn't use a gui, and there is zero motivation to provide one for the developers [06:11] tbh, cron is used for the same, probably 2 dozen unique job scripts anywhere, a pulldown menu would cover most peoples' needs [06:11] rather, no motivation for the developers to produce one, since the user community divides neatly into the group that doesn't see the need, and the group that would ask lots of questions of whoever wrote the gui. [06:11] oh, yeah, well that is def true [06:12] which tends to discourage people from bothering with that, when there are far more interesting/significant things to work on that don't immediately become a support nightmare. [06:12] hrm. i hate that community gap between devs and recreational users. [06:12] good morning [06:12] morning dholbach [06:12] morn' [06:12] morning, lamont, Daniel [06:13] hrm... I think that means it's about bedtime. :-) [06:13] hi lamont DrVague Mithrandir :) [06:14] lamont: hehe. [06:14] well, given that the workday starts in just under 7 hours... [06:15] hrm.. importing a 300MB, 5900 file cvs repo into a real VCS? not so fast. [06:15] are you surprised? [06:16] nope [06:16] I just hope it finishes [06:32] Good morning [06:34] Morning pitti. [06:35] pitti! [06:35] hi pitti, TheMuso, Hobbsee [06:35] Heya dholbach. [06:38] hello pitti [06:51] Hi pitti, Hobbsee, TheMuso, ajmitch [06:52] Anybody got any idea why /dev/mapper contains all of my LVM volumes, but /dev/ doesn't? [06:58] wgrant: /dev/vgname isn't even supposed to exist, AFAIK [06:59] pitti: sbuild seems to want it. [06:59] Well, schroot. [07:06] don't schroot, I'm unarmed [07:16] Riddell: done now [07:42] hmmm [07:43] if you install slocate and run update-alternatives to select it as the preferred locate (over mlocate) [07:43] then the slocate cron.daily script still doesn't fire because it has the following guard [07:43] if [ -x /usr/bin/slocate ] && [ ! -x /usr/bin/mlocate ] [07:43] sdh: that was done to avoid running slocate on gutsy->hardy (or dapper->hardy) upgrades [07:44] since we don't want/can't automatically uninstall slocate completely [07:44] pitti: interesting... why not consult alternatives and act based on that? [07:44] i did a gutsy -> hardy upgrade, and got mails from cron like this: [07:44] /usr/bin/updatedb.mlocate:/etc/updatedb.conf:4: unknown variable `FINDOPTIONS' [07:45] /usr/bin/updatedb.mlocate:/etc/updatedb.conf:5: unknown variable `export' [07:45] etc... which i assume is mlocate trying to parse slocate configuration [07:45] noone went through that much trouble, I guess, since slocate is basically deprecated [07:45] right, that would be it [07:45] hmm [07:45] sdh: can you please file a bug about it? it's worth it, at least [07:45] pitti: i still have to work out exactly what happened ;-) [07:45] but yeah, sure [07:46] now i'm confused: [07:46] % dpkg -S /etc/updatedb.conf [07:46] mlocate: /etc/updatedb.conf [07:48] i won't file a bug on that until i can understand what is going on [07:49] but i note that somebody said "8.04 uses mlocate instead of slocate on desktops now" -- but it seems it is used on servers too, which imho negates the reasoning behind deprecating slocate in favour of mlocate [07:49] (i.e. affecting user experience especially on laptops) [07:49] sdh: both slocate and mlocate ship this configuration file [07:50] on hindsight, we should have probably made the two conflict to each other [07:50] sounds like a plan [07:50] (we can still do that in -updates, at least) [07:51] cool [07:51] sdh: may I ask why you prefer sloacte? [07:51] slocate, even [07:52] Mithrandir: it's not that i prefer slocate - though i do think, in my case "if it's not broken, don't fix it" - it's that i dislike getting error messages from crond when the locate implementation is changed [07:52] sdh: oh, that I can agree with. [07:52] i see that i've been using mlocate unknowingly on my hardy laptops for the last few months anyway and i have no problem with it :) [07:54] yeah, I can't see anything slocate gives us over mlocate so I was wondering why anybody would want to continue using slocate. [07:54] sentimental reasons ;-) [07:55] oh god the whole mlocate/slocate thing is a mess [07:55] i have /etc/cron.daily/{mlocate,slocate,find} [07:56] i think that's https://bugs.launchpad.net/ubuntu/+source/mlocate/+bug/197170 [07:56] Launchpad bug 197170 in mlocate "cron daily runs updatedb twice" [Undecided,Confirmed] [07:58] * sdh wonders why findutils has cron.daily/find doing an updatedb [07:58] sdh, so that the locate command is useful; there's been discussions of getting rid of that [08:00] liw: i thought locate (1) was just an alternatives link into mlocate/slocate [08:00] man i am confused now, i have mlocate installed and seem to have no locate (1) [08:00] sdh, locate is part of find, and the cron job runs regardless of what the alternatives say (which, as it happens, could be considered a bug: please file one :) [08:01] liw: trying to get my box working first :) any chance you could dpkg -S bin/locate for me please? i appear to have lost mine [08:03] findutils, apparently. odd that i don't have it, then. [08:03] I don't seem to have it either [08:03] hmm [08:03] this seems like a bit of a mess [08:03] yes! b0rkage! [08:03] did you do any mlocate/slocate manual tweaking? [08:03] no [08:04] steve@ace:~% dpkg -l '*locate*' [08:04] No packages found matching *locate*. [08:04] steve@ace:~% dpkg -S bin/locate [08:04] findutils: /usr/bin/locate [08:04] actually ignore that, that's a gutsy box! :) [08:04] but the problems i've been discussing are on a hardy (from gutsy) box [08:05] right, having reinstalled findutils it definitely contains no locate(1) [08:05] > dpkg -S bin/locate [08:05] locate: /usr/bin/locate.findutils [08:05] on hardy [08:05] *boggle* [08:05] /usr/bin/locate is handled as an alternative [08:06] ah yes [08:06] % update-alternatives --list locate [08:06] /usr/bin/mlocate [08:06] % locate [08:06] zsh: command not found: locate [08:07] sorry for the pasting btw, is it excessive yet? [08:07] nah, no problem when it's just a line or two at a time. [08:07] ;> [08:08] hm, I think this machine was installed with hardy, not gutsy. [08:08] % dpkg -L mlocate | grep 'bin.*locate' [08:08] /usr/bin/mlocate [08:08] /usr/bin/updatedb.mlocate [08:08] % sudo update-alternatives --config locate [08:08] There is only 1 program which provides locate [08:08] (/usr/bin/mlocate). Nothing to configure. [08:08] % locate foo [08:08] zsh: command not found: locate [08:08] you might need to rehash [08:08] that path is wrong [08:08] steve@nemesis:~% rehash [08:08] steve@nemesis:~% locate foo [08:08] zsh: command not found: locate [08:08] ;) [08:08] it's the path in the alternatives [08:09] what does ls -l /etc/alternatives/locate say? [08:09] or, hang on [08:09] lrwxrwxrwx 1 root root 16 2008-04-03 15:21 /etc/alternatives/locate -> /usr/bin/mlocate* [08:09] is what I have [08:09] erk! [08:09] % ls -l /etc/alternatives/*locate* [08:09] lrwxrwxrwx 1 root root 16 2008-05-30 07:42 /etc/alternatives/locate -> /usr/bin/slocate [08:10] try update-alternatives --auto locate ? [08:10] that seems to have fixed it [08:10] but why is u-a telling me it points to mlocate when it points to slocate, i wonder? [08:10] it's not, it's just telling you there's nothing to configure [08:11] good point > [08:11] I wonder if this is really an update-alternatives bug. [08:11] i am inclined to agree [08:11] can you try installing slocate, changing the alternative to point to slocate, verify it's in manual mode pointing to slocate, then purge slocate? [08:11] it shouldn't say "only 1 program, nothing to configure" if it is in fact handling it, badly :) [08:11] and then see what it points to? [08:12] though i'm reluctant to keep screwing with my production boxes... sure! :) [08:12] Mithrandir: step 2 using u-a --config locate, right? [08:12] yes [08:12] no manual hacking in /etc/alternatives. ;-) [08:13] Using '/usr/bin/slocate' to provide 'locate'. [08:13] lrwxrwxrwx 1 root root 16 2008-05-30 08:12 /etc/alternatives/locate -> /usr/bin/slocate [08:13] now to purge [08:13] Mithrandir: Why not? [08:13] % sudo update-alternatives --list locate [08:13] /usr/bin/mlocate [08:13] lrwxrwxrwx 1 root root 16 2008-05-30 08:13 /etc/alternatives/locate -> /usr/bin/mlocate [08:14] seems good now [08:14] soren: in this case, because I want to see if u-a DTRT. [08:14] Mithrandir: Oh :) [08:14] sdh: hmm, ok. [08:14] Mithrandir: strange though... [08:14] Mithrandir: would you expect an apt-get remove, without --purge, to update alternatives? [08:14] Mithrandir: let me try that again without purge. [08:14] sdh: sure, try. I think it should. [08:15] since you should never be left with a dangling alternatives symlink. [08:15] but you said you were left without /usr/bin/locate at all, or was it just dangling? [08:15] hmm that seemed to work too, odd. [08:16] Mithrandir: hard to tell, now that i've messed about! it gave me no such f/d, but that could be either [08:16] looks to me like it's just a gutsy/hardy upgrade quirk [08:17] but it does feel like a can of worms, including *locate and even u-a [08:17] you don't happen to have a backup of the system you could take a look at a directory listing from? [08:17] and i definitely think that mlocate/slocate should be mutex [08:17] yeah, it looks like it might be ordering dependent. [08:17] Mithrandir: not in any kind of realistic timescale, afraid not [08:17] which is.. ugh. [08:17] ok. [08:19] thanks for helping out [08:19] oh, happy to help; I still wonder how we can get it properly fixed though. [08:20] yeah but it's at that awkward stage where i'm not sure how to reproduce the problem [08:20] it might be related to /usr/bin/locate being a proper file in gutsy. [08:20] i'm not even 100% sure what the problem was [08:21] i have to get to work soon... but i suppose i have time to break out a few VMs :) [08:21] if it's present on a stock install + upgrade, it should be fairly easy to see what's happening. [08:22] i conveniently have a gutsy template vm [08:31] right Mithrandir... i have a gutsy box ready for upgrade to hardy [08:32] i'll install slocate then do the upgrade [08:32] sound like a reasonable test to you? [08:33] sounds good [08:33] just to confirm, on gutsy /usr/bin/locate is a symlink to /usr/bin/slocate [08:33] (with slocate installed, obviously) [08:34] *nod* [08:34] before that it was provided by findutils [08:40] it's chugging away :) [08:41] how would i go about messing with [remapping] keys [08:53] Mithrandir: well it came back with mlocate installed and slocate uninstalled, which i guess is right [08:53] and the alternatives link points to mlocate [08:53] ...so it all seems ok. [08:57] hmm [08:57] so it's.. something else or harder. [08:58] seb128: WDYT about bug 182945? [08:58] Launchpad bug 182945 in gio-standalone "gio-standalone should be remove, gio is in glib now" [Undecided,Confirmed] https://launchpad.net/bugs/182945 [08:58] seb128: no reverse dependencies [09:01] pitti: it should have been removed before hardy, that was a temporary package for gio before having it in glib [09:01] seb128: merci; removing then [09:01] thanks [09:02] pitti: I just uploaded a new rhythmbox revision, I attached the debdiff to one of the zillion bugs it closes, is that good enough or should it be attached to all of those? [09:02] seb128: one is enough [09:03] what's the best way to learn how to program? i've taken a basic college course in C & C++, but I wanna look at real programs... even if they're mildly confusing at first [09:03] any suggestions? [09:11] what program has easy to read source code for a n00b?? [09:12] dolphin: there's a good book... let me find it [09:12] http://www.spinellis.gr/codereading/ [09:16] sdh: aww, man... you gotta pay for the whole thing?!? =-( [09:17] dolphin: it's worth it [09:18] dolphin, pick a program in Ubuntu that interests you, then do "apt-get source foo" to get the source, and have at it; it's probably best to pick a simple command line utility to start with, they tend to be simpler [09:18] fileutils or something is interesting [09:18] and easy to see how code relates to runtime [09:18] yea, i was thinking graphical... but text is definitely a better start [09:19] dolphin: if you want graphical then you have to get familiar with the intricacies of whatever graphical toolkit is being used, be it gtk/qt/etc [09:19] dolphin, the coreutils package might be a start, for example: cat, rm, cp, and such, although they have a lot of complexity by having to deal with all sorts of quirks in various Unix flavors [09:19] dolphin: that is hardy, so i'd start with text [09:19] err, s/hardy/harder/ [09:19] findutils is a good choice [09:20] $51 isn't that bad, i guess i'll order that book to keep me from getting too bored this summer [09:20] dolphin: it seems there is a sequel but i haven't read that [09:21] what is fileutils? [09:21] dolphin: but code reading is a good book because it talks you through various idioms in real software (e.g. apache, netbsd) that means you can make the leap from understanding, say, C syntax, to being able to understand large chunks of code [09:21] dolphin: sorry, i meant coreutils i guess [09:21] ahh... k [09:21] the package with head/tail/wc etc [09:22] this is definitely the starting point i'm looking for... i'm tired of simple labs [09:22] right [09:22] so between apt-get source and that book, i'd say you could spend a lot of useful time understanding and then modifying code [09:22] thanks for the recommendations, ya'll! [09:22] np [09:23] gonna catch some ZZZzz's for now.... lata [09:23] thanks again! [09:23] the nice part of going to apt-get source way is that you can easily modify code too, and try out your modifications for real [09:23] (running, say, your modified corutils in a virtual machine may give additional confidence) === thekorn__ is now known as thekorn [09:38] pitti: there's a packagekit discussion going on about offering to install relevant drivers when a piece of hardware is plugged in, does jockey take care of that for us? [09:39] I mean does it get triggered by hal, or does it just scan at startup? [09:39] james_w: not quite yet, but getting there [09:39] james_w: ATM it just scans at session start [09:39] so it's planned, and I can ignore trying to implement it for packagekit? [09:39] james_w: but for 0.5 I plan to hook it into hal [09:39] thanks [09:39] james_w: yes, pretty much; we'll do it the other way round, we'll use PK to install the drivers from jockey :) [09:40] heh, works for me :-) [09:40] james_w: and jockey will go into Fedora soon, too [09:40] so I'm not even sure whether they should do that in PK itself (one tool for one purpose, etc.) [09:40] but *shrug* [09:40] oh, cool. Apport as well, they're loving your code. [09:52] pitti: james_w: atm, gnome packagekit has a GpkFirmware GObject that watches udev for missing firmware requests and prompts to install it if finds then in a source [09:52] sorry to keep bothering you [09:52] james_w: (no problem) [09:52] james_w: that sounds nice; however, our packages don't support that ATM [09:52] james_w: most firmware should already be present in l-r-m [09:53] and if someone uninstalls l-r-m, he won't want the non-free firmware IMHO [09:53] so that doesn't really work for/apply to us [09:53] ATM, at least [09:56] <|DuReX|> https://bugs.launchpad.net/ubuntu/+bug/235889 [09:56] Launchpad bug 235889 in linux "BUG: scheduling while atomic: archhttp64/7146/0x1000000001" [Undecided,New] [09:56] <|DuReX|> if somebody wants to look @ it :) [10:08] pitti: sorry, last question I hope, hughsie is interested to speak to the Fedora folks that you have been in contact with to find out what their plans are, could I pass on a name to him? [10:08] james_w: sure, that's Jon Masters (RedHat employee) [10:09] thanks [10:09] james_w: he and I are members of the LinuxFoundation driver backports workgroup, we work together on the tools in that context === iceman is now known as iceman-away [10:36] wtf.. [10:37] Are moves of packages between components logged? [10:38] not really [10:38] you can see that something happened [10:39] e.g. https://launchpad.net/ubuntu/+source/db4.4 has both "Published" and "Superseded" for the same version (4.4.20-11) [10:39] Ah, interesting. [10:39] (I think that indicates a publishing record change) [10:40] No such luck on https://edge.launchpad.net/ubuntu/+source/nagios2 [10:40] in spite of https://bugs.edge.launchpad.net/ubuntu/+source/nagios2/+bug/211323 [10:40] Launchpad bug 211323 in nagios2 "MIR for nagios" [Medium,Fix released] [10:44] bryce: x-intel SRU upload does not have a LP # for tracking verification; can you please reupload and mention it in the changelog? [10:44] done [10:44] wow, that was fast :) [10:44] pitti: yeah I realized I'd forgotten it right after uploading [10:45] btw, the other quirk is a fix for bug 235155, which is a private bug [10:45] bryce: Bug 235155 on http://launchpad.net/bugs/235155 is private [10:45] dunno if it's appropriate to list private bugs in srus or not [10:46] bryce: bug 235643 is public [10:46] Launchpad bug 235643 in xserver-xorg-video-intel "Need a Pipe-A quirk for 1028:0163" [Undecided,Fix committed] https://launchpad.net/bugs/235643 [10:46] bryce: the diff itself looks fine, so if there's at least one bug to say "yes, this .deb still works for me", that's enough for SRU purposes [10:46] bryce: the quirks themselves are probably fine [10:46] ok great [10:48] ogra: heh, ltsp fix-o-rama :) [10:49] soren: It was never promoted. https://edge.launchpad.net/ubuntu/+source/nagios2/+publishinghistory shows all publishing records ever. === ogra_ is now known as ogra [10:49] ogra_: can you please add hardy/intrepid tasks and pointers/attachments to the patches? [10:49] pitti, ? [10:50] oh ltsp you mean ? [10:50] yes [10:50] will do, one sec [10:50] ogra: danke; please also say whether they are fixed in intrepid, etc (intrepid task status) [10:50] wgrant: Oh, that's handy. Thanks. [10:51] soren: Only nagios-plugins was promoted - I guess pitti misread something... [10:51] wgrant: They were handlede completely separately. [10:52] nagios-plugins was mentioned a comment or two before the end, and I've had this sort of thing happen once or twice before. [10:52] wgrant: context? [10:53] pitti: nagios2 was never promoted, though you said you did it. Bug #211323 [10:53] Launchpad bug 211323 in nagios2 "MIR for nagios" [Medium,Fix released] https://launchpad.net/bugs/211323 [10:53] hrmph, reportsync isn't working for me [10:54] er, requestsync, rather [10:54] liw: Maybe because it's called.. [10:54] oh. [10:54] wgrant: hm; "oops" [10:54] I edit the message template. I save it. requestsync doesn't notice and signs the unedited file. [10:54] wgrant: promoted in intrepid now; that doesn't really help hardy, of course :/ [10:56] soren: ^^ [10:56] pitti: I think the main problem (har har) is that component-mismatches is full of noise, so it's hard to notice when stuff like this pops up in there. [10:56] soren: yeah :/ [11:00] seb128: voila, all gnome SRU stuff done [11:01] * seb128 hugs pitti, you rock! [11:02] hm, it works with nvi, but not with my own editor... weird [11:05] pitti: is that normal that the sru page has a language-pack-en entry without a bug number? [11:05] or at least it presented me the right file having been signed, but then it seems stuck after I press enter to actually file the bug [11:05] socket.error: (110, 'Connection timed out') [11:05] bah [11:06] * liw goes to file bugs manually [11:09] hmm... actually, it's probably because outgoing port 25 is disabled [11:11] if requestsync would use my local MTA, it should work [11:15] and there is a way to do that, which is not documented in the manpage [11:15] pitti, they all got hardy tasks ... i cant do much about the intrepid nomination yet as there was no ltsp upload to intrepid yet [11:15] liw: there's a --lp option that files over http if you have python-launchpad-bugs installed. [11:16] james_w, yeah, but that's scary :) [11:16] Pici, (and especially jwz's toy bug #199675 is a bit tricky here) [11:16] Launchpad bug 199675 in ltsp "configure-x.sh generates broken xorg.conf files from lts.conf" [Medium,Fix committed] https://launchpad.net/bugs/199675 [11:16] james_w, I'll try it next time, though [11:17] and am putting fixing the manpage on my todo list [11:20] * |DuReX| looks sweet to the devs -- https://bugs.launchpad.net/ubuntu/+bug/235889 [11:20] Launchpad bug 235889 in linux "BUG: scheduling while atomic: archhttp64/7146/0x1000000001" [Undecided,New] [11:24] ogra: I added the missing one to 224259, rest is fine; but still no patches... [11:25] ogra: I'll read the debdiff first, and get back to you with questions if I can't figure it out [11:25] but having patches/bazaar.lp.net URLs are a great help for fast processing [11:26] ah well ... i was suppposed to hop on a train now ... but since i missed that anyway i can as well split the patches ... [11:26] ogra: ah, debdiff is relatively small, so don't bother for now [11:29] they are all separately in ltsp upstream bzr anyway [11:29] (or will go there for the ones tat arent yet) [11:30] * ogra hugs pitti [11:38] calc: are you aware that the OOo in hardy-proposed breaks (deinstalls) a) OOo localizations b) openoffice.org-voikko extension (part of language-support-fi) [11:40] bug 236010 has been seemingly filed [11:40] Launchpad bug 236010 in openoffice.org "Broken packages with -l10n, -help and language-support" [Undecided,Confirmed] https://launchpad.net/bugs/236010 [11:40] pitti: do the archive admins use a tool to check to which section (universe/multiverse/etc.) a package should pertain? [11:43] norsetto: yes [11:43] norsetto: packages are seeded, seed dependencies are expanded, discrepancies are reported in the component-mismatches.txt output [11:44] cjwatson: ah thanks! I'm asking because of bug 214727, I'm wondering if I should do something more (or less ...) [11:44] Launchpad bug 214727 in tovid "mplayer should be in universe" [Wishlist,Confirmed] https://launchpad.net/bugs/214727 [11:45] oh, we don't have any automatic tracking of universe vs. multiverse [11:45] I'm afraid that's just done by bug reports [11:45] nothing more needs to be done for that bug though [11:45] cjwatson: ok, thx [11:50] cjwatson: in hardy, the highlighting done when searching in man pages seems off; do you have a bug about this or should I report it? [11:50] bug in whatever pager you're using [11:50] I've seen that with less too, but not got round to reporting it [11:50] are you sure it's not man-db? [11:50] yes [11:50] ok [11:50] well, reasonably [11:50] it's less, yes. [11:50] nothing relevant in man-db has changed [11:51] grep seems to highlight the right bit, so I suspect you're right. [11:51] man does pass some funky options to less, so you might not see it in other documents [11:52] those options last changed in 2002 [11:52] heh, ok. [11:55] morning [11:56] http://www.oooninja.com/2008/05/openofficeorg-getting-faster-benchmark.html [11:56] "In conclusion, OpenOffice.org is generally getting slower with each release. However, startup performance has made great improvements, the performance losses are relatively small, advances in new computer hardware are more than making up the loses, and OpenOffice.org continues to mature with new features." [11:58] * cjwatson vomits all over http://bazaar.launchpad.net/~ubuntu-core-dev/net-retriever/ubuntu/revision/349 [11:58] how many impediments could there possibly have been to a simple bug-fix [12:01] cjwatson: why not just add --compare-versions to udpkg? [12:01] don't feel like doing that for hardy-proposed ... [12:01] oh, good point. [12:01] I thought it was for i* [12:02] why vergt, btw? [12:06] don't need a generalised vercmp there and I don't want to encourage anything else to rely on it [12:06] I'll look at adding it to udpkg though [12:23] persia, mvo: update-manager-hildon needs python-vte; would one of you please confirm this is the only missing bit and add it to the u-m trunk? [12:25] lool: Looking now... [12:27] For some reason, sudo is borken in one of my envs, can't test directly [12:28] hostname issues ? [12:28] seb128: ah, seems I'm not the only one with this problem: bug 227994 [12:28] Launchpad bug 227994 in gnome-screensaver "password not recognized after suspend" [High,In progress] https://launchpad.net/bugs/227994 [12:31] ogra: Could be, not quite sure what the rules are; u-v-b seems to create a 127.0.1.1 ubuntu.$mydomain ubuntu in /etc/hosts and hostname reports ubuntu [12:31] lool, try dropping ubuntu.$mydomain from that line and just keep ubuntu [12:32] though sudo tells you if the prob is caused by gethostbyname() if its realy a resolving issue [12:34] Can one loopmount qemu qcow2 files? [12:35] * lool lunch & [12:37] pitti, i saw some complaints about keymaps not being properly re-initialized after resume on the ubuntu-users ML since we switched to pm-utils ... that might be related [12:37] ogra: I tried both en and de layouts, that's not it [12:37] even though its weird that they say "leave message" works as expected [12:38] ogra: the same happens with src/test-passwd [12:38] and I verified in gdb that the password is correct [12:38] currently gdb'ing it [12:38] weird [12:38] ogra: you don't need a password for that [12:38] ogra: 'login as another user' works, too (but that's gdm again) [12:38] right, not gss [12:38] ogra: so the g-s lock dialog works for you? [12:38] let me try [12:39] gnome-screensaver-command -l [12:39] or ctrl+alt+l or so [12:39] May 30 13:30:58 donald gnome-screensaver-dialog: pam_unix(gnome-screensaver:auth): conversation failed [12:39] May 30 13:30:58 donald gnome-screensaver-dialog: pam_unix(gnome-screensaver:auth): auth could not identify password for [martin] [12:39] is what I get [12:39] yes, works fine after suspend [12:39] ogra: ok, thanks for trying [12:40] do you have an upgraded system ? [12:41] this laptop was a new hardy install [12:41] ogra: both my desktop and my laptop are fresh hardy installs, and it happens for both [12:41] meh [12:41] oh [12:42] my auth log looks itrestingly different [12:42] May 30 13:39:31 osiris gnome-screensaver-dialog: gkr-pam: unlocked 'login' keyring [12:43] smells like a communication error between gss and gkr [12:44] hm, it doesn't use unix_chkpwd?? [12:44] how the heck is it supposed to be able to verify my password then? [12:44] it calls PAM directly, as my user [12:44] without shadow privileges [12:45] ogra: is /usr/bin/gnome-screensaver root:root 0755 for you? [12:45] pitti: does it happen every time for you? [12:45] seb128: yes, it has never worked in hardy [12:46] first thing I do after login is 'killall gnome-screensaver' [12:46] urg [12:46] we would have received lot of complain if that was happening to everybody for sure [12:46] do you configure something special in your boxes? [12:46] right, that's why I didn't treat it as OMGPONIES [12:47] seb128: not that I know of (pam-wise) [12:47] still debugging [12:47] pitti: I can get debug informations on my working systems if you need something to compare [12:47] /* #undef PASSWD_HELPER_PROGRAM */ [12:47] ^ in my config.h [12:48] unix_chkpwd can be passed as a configure argument [12:48] ogra@osiris:~/Devel/packages/ltsp-5.0.40~bzr20080212$ ls -l /usr/bin/gnome-screensaver [12:48] -rwxr-xr-x 1 root root 134532 2008-04-09 17:06 /usr/bin/gnome-screensaver [12:48] but isn't [12:48] hello all [12:50] seb128: I'm still stunned how g-s-s is supposed to verify passwords without using unix_chkpwd and without being sgid shadow [12:50] seb128: do you happen to have a built gnome-screensaver tree? does src/test-passwd work for you? [12:50] pitti: trying [12:51] cjwatson: I have some questions about ubiquity's netboot support - do you have some time to answer ? [12:52] I found, that blueprint https://wiki.ubuntu.com/Ubiquity/Automation is implemented already [12:52] seb128: ah, nevermind; it does run execve("/sbin/unix_chkpwd", ["/sbin/unix_chkpwd", "martin", "nullok"], [/* 0 vars */]) [12:53] mantiena: depends on the questions, I'm trying to meet 8.04.1 deadlines at the moment [12:54] pitti: the test-passwd thing works fine here [12:54] cjwatson: So, I'm asking: there is one important (for me) sentence in that blueprint: "To support netbooted installations, we will ensure that the existing casper support for netbooting works properly (it is believed to have some bugs)..." [12:54] seb128: ok, thanks; mind to try something else? [12:54] mantiena: I'm afraid I'm not up to date on that; I suggest asking evand [12:54] pitti: I'm happy to debug it with you [12:54] seb128: echo 'yourpasswd' | /sbin/unix_chkpwd yourlogin nullok [12:54] he was responsible for that specification [12:54] seb128: while watchign tail -f /var/log/auth.log [12:54] May 30 13:54:15 donald unix_chkpwd[29021]: check pass; user unknown [12:54] May 30 13:54:15 donald unix_chkpwd[29021]: password check failed for user (martin) [12:55] so, unix_chkpwd itself seems to be broken [12:55] cjwatson: ok, so, you don't know if casper and ubiquity would work if booting from network (on computers without CD/DVD drivers) ? [12:56] aaargh *headdesk* [12:56] -rw-r----- 1 root root 1470 2008-05-30 13:55 /etc/shadow [12:56] pitti: same error [12:56] mantiena: not without trying it, no [12:56] lool: added to trunk and uploaded to intrepid already :) [12:56] pitti: it's root shadow 640 on my install [12:56] right, as it should be [12:57] pitti: any idea why it's different for you? [12:57] hmm [12:57] cjwatson: thanks for info, I will talk with evand [12:57] evand: hi, are you online ? [12:57] seb128: yes, indeed I have; I blame my 'restore my configuration from bzr after install' script, which probably doesn't restore the permissions [12:57] seb128: bzr doesn't save group membership [12:57] seb128: so, sorry for the noise [12:58] ah ok [12:58] iz pitti bug [12:58] ;-) [12:58] works fine now [12:58] mvo: The other thing I found looking it over is that it needs the versioned dependency on update-manager-core to get the more flexible DistUpgrader [12:59] pitti: thanks very much, that just helped me fix one of the admin pcs [12:59] elmo: hah, /etc in bzr, too? :-) [13:00] in fact it's not due to bzr, it's due to my 'postinst-setup' script which only adds the real users from teh backup to shadow, but keeps the system bits [13:01] pitti: no, someone messed up group ownership when they were r00ting it [13:10] i want to download my photos from an canon ixus 80 with nautilus. since gnome 2.22, there should be an option for gphoto2. enter in nautilus gphoto2:// . but that doesn't work. i can import photos, but i can't use nautilus to see all photos from the camera. see http://library.gnome.org/misc/release-notes/2.22/index.html.de. is gphoto2 not compiled into nautilus? [13:11] dpkg: ../../src/packages.c:265: process_queue: Assertion `!queue.length' failed. [13:11] Aborted (core dumped) [13:11] yay intrepid's dpkg [13:12] charliecb: it's not compiled in the hardy gvfs no [13:12] pitti: test case? [13:12] though, er, maybe after 8.04.1 deadline [13:12] seb128: do you know why not? [13:13] cjwatson: trying to construct one [13:13] charliecb: the current applications doesn't understand the gphoto uris, so you can't open an image by clicking on it and the gvfs mount lock the access to the device so you can't use an another application to download those [13:14] seb128: ok. thx [13:14] you are welcome [13:15] cjwatson: ah, seems to happen on "dpkg: too many errors, stopping" [13:17] Amaranth, hey [13:17] hey [13:19] cjwatson: filed as bug 236047; I try it in sid now, too [13:19] Launchpad bug 236047 in dpkg "dpkg: ../../src/packages.c:265: process_queue: Assertion `!queue.length' failed." [Undecided,New] https://launchpad.net/bugs/236047 [13:20] yup, it's in sid, too [13:21] Amaranth, do you mind me taking over packaging etc for wilow during intrepid or do you prefer to be my upload bitch ? i added a branch to the upstream project which already carries a good bunch of changes [13:21] pitti: that's a relief [13:21] of sorts [13:21] ogra: go ahead, do whatever you want with it [13:21] cjwatson: ah, debian bug 483655; I'll send more information to that [13:21] Debian bug 483655 in dpkg "../../packages.c:265: process_queue: Assertion 'queue.length' failed." [Important,Open] http://bugs.debian.org/483655 [13:21] Amaranth, thanks, i thought so, just didnt want to just steal it away without asking :) === fta_ is now known as fta [13:53] persia: Hmm not sure but did you push update-manager to ppa? I don't see it === evalles_ is now known as effie_jayx [14:20] pitti, doko: whole bunch more MIRs for you there [14:22] Riddell: yeah, just saw them [14:22] calc: is bug 220911 actually a problem in writer2latex? If not, we should remove the milestone from the task and set it to invalid [14:22] Launchpad bug 220911 in openoffice.org "Maintainer scripts of openoffice.org-writer2latex fail" [High,In progress] https://launchpad.net/bugs/220911 [14:26] mvo: while I agree that bug 231805 is primarily a j2se bug, u-m should handle this a little more gracefully ideally? [14:26] Launchpad bug 231805 in j2se1.4-i586 "error reported during Hardy Heron update" [High,New] https://launchpad.net/bugs/231805 [14:27] mvo: oh, it doesn't actually crash u-m, it just reports the error [14:27] so that's fine [14:29] doko, mvo: bug 225927 is milestoned for .1, but has no assignee; is it important enough to deserve the 8.04.1 milestone? [14:29] Launchpad bug 225927 in python-central "python2.4-minimal fails on removal ; chillispot upgrade fails to upgrade" [High,New] https://launchpad.net/bugs/225927 [14:51] seb128: do you think bug 206583 is really 8.04.1-worthy? I can reproduce it, but tricky to debug [14:52] Launchpad bug 206583 in gnome-system-monitor "System Monitor crashes when changing nice value of process" [Medium,Confirmed] https://launchpad.net/bugs/206583 [14:52] but it doesn't seem terribly important to me [14:53] pitti: no, I just milestoned it as a target of opportunity in case there was an easy fix available, slangasek did open the hardy task [14:53] seb128: so you're ok with unmilestoning? [14:53] pitti: yes [14:54] pitti: or delay to 8.04.2 [14:54] win 27 [14:54] meh sorry :) [14:54] pitti: we should get a 8.04.2 milestone ;-) [14:54] cjwatson: ^ can you create one? [14:55] pitti: done, with a rather notional target date [14:55] cjwatson: thanks [14:55] cjwatson: thanks [15:02] seb128: bug 196277 sucks, though [15:02] Launchpad bug 196277 in xserver-xorg-input-keyboard "[hardy] keyboard layout switching shortcut doesn't work after reboot" [High,Confirmed] https://launchpad.net/bugs/196277 [15:03] * pitti grabs two more milestoned bugs and sits in a corner for hacking [15:04] * Hobbsee throws pitti a gummy bear so he hacks faster. [15:04] yummy [15:04] pitti: right, iz xorg bog though [15:04] pitti: which ones are you working on? [15:04] seb128: iz task inflation, too [15:04] bug 229000 [15:04] Launchpad bug 229000 in ntfs-3g "random file corruptions in ntfs-3g < 1.2506" [Undecided,In progress] https://launchpad.net/bugs/229000 [15:04] and bug 206790 [15:04] Launchpad bug 206790 in dpkg "Deprecated call in dpkg-dev to init method in Dpkg::Changelog::Entry" [Medium,In progress] https://launchpad.net/bugs/206790 [15:04] pitti: I've decided that I hate bug tasks now [15:04] seb128: lol [15:04] haha [15:05] seb128: s/ task//, certainly? :-) [15:05] seb128: i'm sure you can write a greasemonkey script to rename them. [15:05] thanks to people who open bugs having a zillion tasks [15:05] ie, "not using correct ubuntu maintainer information" or "need rebuild for perl transition" [15:05] yeah [15:05] you get a mail every time somebody add a comment or change a task [15:05] when your task as already been fixed and you don't care about the bug [15:06] seb128: you can actually get out of those. you can change the project to 'ubuntu', rather than the package that you're getting mail for. [15:06] Hobbsee: I did that but that's an ugly workaround [15:06] Hobbsee: and can have several tasks on "ubuntu"? [15:06] seb128: i know. there isn't a good solution, short of not filing bugs that way [15:06] seb128: unsure [15:06] * ogra wonders why his bugs have suddenly a ton of "also notified" entries [15:07] makes me feel observed somehow [15:07] pitti: no, I've nothing against bugs, I don't get flooded by other people bugs activity ;-) [15:07] yes, people just shouldn't file bugs that way with a zillion different tasks [15:07] tasks are for multiple bits of the same problem [15:08] maybe a motu workflow issue [15:08] the way these are being used are different problems that happen to have basically identical fixes [15:08] dholbach: ^ [15:09] I should have objected to this use when I first saw it, rather than now that it seems to be entrenched among a small subset of people [15:15] I still prefer them for things like "these 5 packages need a rebuild for libfoo transition" [15:15] it makes it so much easier to see the status [15:19] I need some help with the perl 5.10 transition, I found a build-dependency loop :( how to proceed? [15:20] geser: ? [15:20] libmodule-build-perl build-depends on libextutils-cbuilder-perl which build-depends on libmodule-build-perl [15:20] and neither can currently be installed [15:20] fun [15:28] cr3, cjwatson: any idea how to reproduce bug 206790? alien works fine for me, and the example POD in /usr/share/perl5/Dpkg/Changelog/Debian.pm is absolutely, totally useless and wrong [15:28] Launchpad bug 206790 in dpkg "Deprecated call in dpkg-dev to init method in Dpkg::Changelog::Entry" [Medium,In progress] https://launchpad.net/bugs/206790 [15:29] pitti: err, didn't soren write patch that code? [15:29] pitti: I initially encountered that problem while attempting to install the lsb suite, need a url? [15:30] cr3: the bug log might help resolve confusion here [15:30] cr3: anything that demonstrates the problem; I can't reproduce it [15:30] and for a hardy SRU for dpkg I insist on something I can test :) [15:31] pitti: joeyh's comment implied that asking it to parse a changelog that had old-format entries at the end would do it [15:31] off the top of my head, man-db is one such [15:31] right, finding that shouldn't be a problem [15:31] so now I just need to find documentation how to actually use that beast [15:32] /usr/share/perl5/Dpkg/Changelog/Debian.pm is from dpkg-dev, while the POD in that file uses use Parse::DebianChangelog, which is libparse-debianchangelog-perl [15:32] aha [15:32] (separate implementation) [15:32] pitti: unpack man-db [15:32] pitti: run 'dpkg-parsechangelog --all' [15:32] aaaaah [15:32] cjwatson: thanks a lot [15:34] pitti: I'll append the steps to reproduce to the bug report, one moment... [15:34] cr3: I did that already now; thanks [15:37] seb128: no, there's no MOTU process that says something like that [15:38] pitti: excellent, need anything else from me then? [15:38] cr3: that's fine, no [15:39] dholbach: ok, some have just decided that's a good idea apparently then and decided to use it to organize transitions, etc [15:39] *nod* [15:42] wow, http://ntfs-3g.org/pjd-fstest.html is really nice for testing patches to packages like ntfs-3g [15:44] nice! [15:44] nice [15:47] that's exactly what I was looking for for testing fakechroot [15:47] I wonder whether it would have catched the unionfs regression with hard links, probably [15:48] i bet it would expose 20 new bugs in unionfs ... DONT RUN IT ON THERE, OMG ! :) [15:52] pitti: who do I need to ask to get libextutils-cbuilder-perl and libmodule-build-perl manually rebuild on the buildds? infinity? [15:52] seb128: well, I did use tasks for a transition once (though that sucked, since LP rendered it very slowly). what's your problem with that? [15:52] geser: infinity or lamont, yes; what's up with them? a no-change upload won't help? [15:53] libmodule-build-perl build-depends on libextutils-cbuilder-perl which build-depends on libmodule-build-perl [15:53] pitti: ^^ [15:53] geser: you ask infinity [15:53] pitti: no clue... [15:53] * norsetto now understands why infinity nick is infinity [15:54] norsetto: to be fair, his work day starts in just over an hour.. [15:55] tseliot: o/ [15:55] emgent: hey [15:55] geser: if there isn't a way to do multiple uploads and have it happy (please wait for all 7 architectures if you do that...), then you're stuck asking the ubuntu OSA (infinity) to "halp make better" [15:55] hi guys I got no answer on #ubuntu [15:56] so I hope I can ask one question [15:56] can I? [15:56] !ask | martii [15:56] martii: Please don't ask to ask a question, ask the question (all on ONE line, so others can read and follow it easily). If anyone knows the answer they will most likely answer. :-) [15:56] martii: that was a very simple question, and yes, you could. :-) [15:56] http://library.gnome.org/users/user-guide/2.22/user-guide.html#nautilus-accessnetwork [15:56] hardy uses 2.22 right? [15:56] so where is NFS gone? [15:57] did you install nfs? [15:57] as well nautilus doesn't recognize nfs:// [15:57] lamont: thanks, will try that first [15:57] lamont: installed libs for nfs-client [15:57] lamont: don't tell me I need to become nfs server to access nfs shares :) [15:57] martii: well, that expends my knowledge on the subject. :-( [15:57] sistpoty|work: my issue is that your mail every people who are watching a component which has a task open there [15:58] martii: you need to have /sbin/mount.nfs on the system [15:58] which should be in nfs-common, iirc [15:58] lamont: I installed nfs-common and portmap [15:58] sistpoty|work: which means if I fix the task I'm watching I get zillions of bugs about things I've no interest in every time somebody touch one of the zillion other tasks I don't care about [15:58] lamont: all according to docs [15:58] zillion mails rather [15:59] which mount.nfs [15:59] /sbin/mount.nfs [15:59] lamont: so it's there [15:59] seb128: ah, I see. I guess it shouldn't be called "task" then *g* (and maybe mails shouldn't be sent to people subscribed via packages, which are already listed fixed in a task, though I'm not entirely sure about that) [16:00] sistpoty|work: tasks should be used when it's a single problem that just needs coordinated fixes in multiple places [16:00] sistpoty|work: you might want get comments about a bug you fixed in case the fix is not correct, etc [16:00] sistpoty|work: they aren't for when you've seen the same bug in 20 different packages [16:00] (IMO anyway) [16:00] sistpoty|work: there is no interest to list tasks in the transitions scenario, it's easier to file bugs and tag those [16:01] cjwatson++ [16:01] to put it a different way: if the fixes required would be independent, they should be separate bugs [16:01] lamont: https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/43363 [16:01] Launchpad bug 43363 in gnome-user-docs "network: should list NFS shares too" [Low,New] [16:01] lamont: looks like this bug to me [16:01] hm... good point. (though I guess a transition would equally qualify as a problem, that needs coordinated fixing in multiple packages) [16:02] lamont: but as well nobody interested to fix it? [16:02] martii: nautilus doesn't do nfs [16:02] for the mailbomb reason alone I think multiple bugs are a more practicably reasonable approach [16:02] however, as I wrote already, the ui just renders really slowly for many tasks, so I definitely won't be abusing it for this :) [16:05] seb128: yep but It did [16:05] seb128: as well as gnome 2.22 docs show there is NFS support [16:05] martii: not in ubuntu [16:06] seb128: I noticed ;) [16:06] seb128: why'd we drop that? [16:06] lamont: we didn't, I'm not sure any GNOME 2 version ever did that [16:06] ah, o [16:06] k [16:06] seb128: so why is it in docs? [16:07] seb128: I'm sure it worked [16:07] because not a lot of people are interested in updating documentation [16:07] wishful thinking of doc writers ? [16:07] seb128: as I have used it alot [16:07] and some very old GNOME versions might have had crackish nfs support [16:07] seb128: nfs:// worked the same as smd:// in nautilus [16:07] seb128: nfs:// worked the same as smb:// in nautilus [16:07] martii: that was GNOME1? [16:08] seb128: when ? year ago? [16:08] seb128: maybe that was gnome-vfs [16:08] martii: http://bugzilla.gnome.org/show_bug.cgi?id=328107 [16:08] seb128: and now you got gnome-vfs2 [16:08] Gnome bug 328107 in Module: (other) "No nfs:// support" [Enhancement,Unconfirmed] [16:08] martii, its called gvfs, gnome-vfs2 is the older one [16:09] gnome-vfs2 and gnome-vfs are the same thing [16:09] ogra: whatever [16:09] ogra: I can't understand why new version is worse :) [16:09] ogra: you upgrade to net LTS and things not work :) [16:09] ogra: you upgrade to next LTS and things not work :) [16:10] martii: you have one thing that almost nobody used and which was buggy which has been dropped and ton of other improvements [16:10] seb128: yep but as you can see [16:10] seb128: this bug is still unconfirmed [16:11] seb128: so many people confirmed a problem [16:11] gnome-vfs is not maintained, they are working on gvfs now [16:11] upstream doesn't care about confirming bugs, the doesn't make a difference, they know it's a wishlist but have other things to do [16:12] and a nfs gvfs backend is a low priority thing, most people using nfs use system mounts for that [16:12] seb128: I understand I could do that as well [16:13] seb128: but it's nice to mount stuff only when you need it [16:13] seb128: as NFS tends to lock up my machine when I loose connectivity [16:13] use automount? [16:13] use sftp [16:13] seb128: yep that's an option [16:13] ogra: it's netapp filesever no sftp ssh [16:14] less server overhead and supported in nautilus [16:14] sad [16:14] anyway the option was to work on improving ssh, ftp, smb supports or write a nfs backend [16:14] ogra: nfs only (there is smb but of course nautilus is unable to pass my LDAP username and password correctly) [16:14] almost everybody prefer to have better support for the common backends [16:14] but you are welcome to write a gvfs nfs backend if you think that's needed [16:14] seb128: I know and understand that [16:15] seb128: if it's C++ foreget it :) [16:15] seb128: if it's C++ forget it :) [16:15] C [16:15] seb128: I can only do python :) [16:15] it's C [16:15] plain and simple actually [16:15] C is more likely I could remind myself [16:15] seb128: any links to docs? [16:16] seb128: if developers will be happy to apply my patch or extension [16:16] http://library.gnome.org/ [16:16] seb128: I had problems before [16:16] you can mail the gvfs upstream list [16:16] seb128: they might start talking like you that people don't need nfs [16:16] ;) [16:16] but I don't expect a nfs backend to be easy to write [16:16] well, they will not likely put efforts into it no [16:17] but if you send a work patch, that's going to be difficult though, that's not trivial coding [16:17] seb128: http://library.gnome.org/devel/references [16:17] no reference to gvfs [16:18] just remember that NFS stands for Not a File System [16:18] martii, they wont tell you nfs isnt needed if you send code :) [16:18] (per posix, with interpretation) [16:18] heh [16:18] ogra: many times developers did that [16:18] well, ususally developers are happy if you send code and help you to improve it is what is my experience [16:18] ogra: moslty they say they don't want to brake their code with untested stuff when priority for extension is not critical [16:19] pitti: does it needs MIRs to get some perl modules from universe to main which are needed for build-dependencies? [16:19] martii: no real documentation out of the source code for now, gvfs is pretty new and it's really a rush, people are busy trying to get it work right now and didn't stop to write documentation [16:19] geser: at least MIR bugs; trivial ones don't need a full wiki page [16:19] seb128: OK I'll stick with autofs [16:19] sorry for wasting your time guys [16:19] * geser hates the perl 5.10 transition already [16:19] you expressed a need [16:19] not wasted time, really [16:21] ogra: :) [16:21] http://www.acis.ufl.edu/~ming/gvfs/ so that's not the gnome thing? [16:22] geser: can't say how grateful we all are that you deal with it *hug* [16:27] Which version of the telepathy spec will be supported in intrepid? [16:27] pitti: http://launchpadlibrarian.net/14685812/buildlog_ubuntu-intrepid-i386.libfile-sync-perl_0.09-4build1_FAILEDTOBUILD.txt.gz Is this a bug in the package or in pkg-create-dbgsym? [16:29] geser: it's a bug in the package, since debhelper compat 1 needs debian/tmp; it's a problem with pkg-create-dbgsym in the sense that it is not as forgiving as debhelper about packaging bugs [16:29] pitti: thanks, will fix the package then [16:30] ideally we'd fix pkg-create-dbgsym to deal with those [16:30] if it builds locally === zsoilworker is now known as zSoilworker === Zic is now known as Zic__ === Zic__ is now known as Zic [16:54] * pitti kicks rothera again to get back to work [16:54] infinity, cprov: ^ FYI === macd_ is now known as macd [17:22] hi, is anybody using ICH9R with raid 5 successuflyl? [17:33] ok, that's weird [17:33] "People nearby" [17:33] O Keybuk [17:39] heh [17:39] keybuk: What says that? :-) [17:40] Keybuk: you can see yourself in Empathy? [17:41] I can indeed [17:41] I suspect the machine upstairs just woke up for something and logged in [17:42] ah ok, i was about to say sjoerd's here now so you can badger him on #tp if you've found a bug :) [17:43] I usually use sjoerd on X as my nick in salut to prevent that kind of confusing :) [17:44] if only we could set the status usefully ;) [17:56] Keybuk: what do you mean? [17:56] doesn't jabber have an extended status bit? [17:57] like the "custom messages" thing in the status dropdown? [18:04] Is intrepid beginning to be usable? That is, are there still some huge things like a new major release of glibc coming? [18:05] I don’t mind running an unstable distro on this box, but rather wouldn’t upgrade yet if it’s expected to break badly. :-) [18:09] ion_: we are still in the middle of the perl 5.10 transition, but you could have luck [18:11] That sounds like something i might even be able to help with. [18:46] Hello, several people in #ubuntu are having issues due to hardy-proposed currently... it appears that gnome-about depends an explicit version of gnome-desktop-data (2.22.2-0ubuntu1) but today it was upgraded... this removed gnome-panel for many... and I don't see this package in http://archive.ubuntu.com/ubuntu/pool/main/g/gnome-desktop/ and don't have it locally to upload to a ppa... [18:46] What can be done about this situation? [18:47] sounds to me like architecture desync [18:48] gnome-desktop-data is built on i386 and the same package is used on all architectures [18:48] gnome-about is built on each architecture separately [18:48] cjwatson: It is people that have hardy-proposed enabled due to virtualbox I think... seems to be unfortunate timing on their part. [18:48] but they come from the same source package [18:48] so when i386 builds out of step with the others, you'll get this happening transiently [18:48] tell them to wait for a while and try later, and it will go away [18:49] cjwatson: Some have already lost their panels... just apologize to them? [18:49] the question is, why people who don't check what is going to be removed use -proposed? [18:49] https://launchpad.net/ubuntu/+source/gnome-desktop/1:2.22.2-0ubuntu2 shows that the new version hasn't quite built everywhere yet, though it should be OK for i386 and amd64 users [18:49] fde: why did they allow the upgrader to remove packages in the first place? [18:49] fde: first ask them to disable -proposed! :) [18:49] fde: advise them to reinstall ubuntu-desktop [18:49] pochu: it is a documented work around for virtualbox, although apparently that documentation didn't mention disabling it when they're done. [18:50] cjwatson: alright, thanks. pochu definitely will do :) [18:50] fde: right, there should be some easy way to install packages from -proposed without enabling it completely... [18:50] Thanks for the assistance, wanted official word :) [18:50] fde: sounds like they used an option designed for advanced testers and got burned by the consequences; the documentation should definitely be fixed [18:50] pochu: maybe something like experimental on debian should be enacted? [18:51] fde: hardy-proposed *is* a bit like experimental [18:51] although not so much [18:51] we have plenty of things that fill similar niches; however if people get told to use them then what can we do? [18:51] cjwatson: still, even when enabled, people don't need to be using it always unless they're aware of what that entails. [18:51] cjwatson: yesterday we had the same problem with people removing firefox via update-manager, due to the "Partial upgrade" dialog in it [18:52] so while I think they shouldn't be running -proposed at all, update-manager could be more verbose there [18:52] hardy-proposed contains non-QAed updates that may break your system, because they have not yet been verified [18:52] it's that simple [18:52] of course [18:53] so while we welcome people helping us with the QA process, we can't really also have them coming to us and complaining that things were set up wrong because their system broke :-) [18:53] cjwatson: I think it's safer to make people type 'sudo aptitude -t hardy-proposed install whatever' and document how to enable it always _no_where_... there's been a few issues like this, and people inevitably want things like firefox and virtualbox to work. [18:53] I agree that there is room for improvement in update-manager [18:53] I know that mvo knows about this, since he mentioned it yesterday (I think) [18:53] After this operation, 2179MB disk space will be freed. [18:54] cjwatson: Even just having it deselect everything originating from hardy-proposed, and forcing users to select what they actually want would be better... if that is even possible? [18:54] -> mvo [18:54] though I was under the impression it already did that; could be wrong [18:54] oh, actually, no, I'm thinking of something else [18:55] remember that -proposed was instituted in response to a problem that slipped through QA that caused X not to start for some people [18:55] I reported bug 152335 some time ago to try to reduce the number of users running -proposed [18:55] Launchpad bug 152335 in software-properties "Remove -proposed checkbox in Updates, or warn of 'not stable' updates" [Undecided,New] https://launchpad.net/bugs/152335 [18:56] cjwatson: Yes, I actually discussed that at a LUG a couple nights ago ;) [18:56] regardless of whether you deselect things by default, people will try selecting them out of curiosity - isn't X not starting much worse than firefox going away? [18:56] although that may not be a good solution at all :) [18:56] the software sources dialog doesnt really tell you that its dangerous to enable it [18:56] thus the most important thing is not to advise people to use -proposed who can't cope [18:56] the wroding should be better [18:56] *wording even [18:56] even if that's the only location for a bug fix in progress, it's more important to have it go through QA before wide deployment [18:56] cjwatson: It's hard to ensure that in private mediums though... so maybe a technical solution is better... [18:57] Should I file a bug with some propositions real quick just to remind? [18:57] sure, better than talking to me about it since I'm not the relevant developer ;-) [18:57] should go on apt I think [18:58] cjwatson: alright, thank you for your recommendations... if that doesn't fix it for users (reinstalling ubuntu-desktop) then I'll likely be back... or maybe I'll break it and try to fix it locally :P [18:59] On a more positive note: Thanks for all the hard work, you guys are awesome :D [18:59] it will depend on the architecture they're using [18:59] powerpc doesn't seem to have caught up yet [19:00] cjwatson: I'll try to look into that too... luckily qemu can emulate a ppc system - although it'll be slow as molasses. [19:01] (only from a user perspective though... see if I can come up with another solution if that doesn't fix things) [19:05] cjwatson: we could disable partial upgrades at all in stable, they are only required when things need to be removed and Ithat should never be the case for stable [19:27] hi [19:28] hi guys. what does it mean when a bug's status is triaged in launchpad? [19:33] Hello :) [19:35] I've got a BCM94311 rev 2 wireless network card and read about a patch to get it working with the native bcm43xx-fwcutter. Where can I download the patched driver? [19:35] bug #214386 [19:35] Launchpad bug 214386 in linux "bcm94311 rev 02 not detected at boot time" [Undecided,New] https://launchpad.net/bugs/214386 [19:35] thanks Kopfgeldjaeger [19:37] hi, I reported a bug in compiz with a patch this morning : https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/235982 (my first patch \o/ ) [19:37] Launchpad bug 235982 in compiz "/usr/bin/compiz : 1 bug and 1 missing setting" [Undecided,New] [19:37] do you think it could be applied [19:41] where can i download the patch from bug #214386 [19:41] Launchpad bug 214386 in linux "bcm94311 rev 02 not detected at boot time" [Undecided,New] https://launchpad.net/bugs/214386 [19:48] pitti: can I turn off the python apport stuff [19:50] Hi dev's ;) [19:52] hi, can init.d rules, or udev entries prevent computer shutdown? [19:54] rom: the fist part of the patch looks good, I'm not sure about the "-l" bits [19:54] mvo: why that? [19:54] nvidia-settings -l [19:55] rom: it seems like this is something that we shouldn't enforce in the compiz script, I don't need it and it gives me a ugly flickering [19:55] to load the settings (if you don't, nvidia settings are not applied) [19:55] since a long time [19:55] can anybody help me with bug #214386 [19:55] (antialiasing, anisotropic, sync to vblank) [19:55] Methoxypropan: Error: Could not parse data returned by Launchpad: The read operation timed out (https://launchpad.net/bugs/214386/+text) [19:56] rom: isn't that only required if the nvidia-settings panel is used and shouldn't it be used in a place that is more generic that the compiz start script? like .xinitrc or something similar? [19:56] i need that patch to get my wireless working :( [19:56] hmmm... [19:56] rom: actually, if its something that should always be run, I think it should be part of the nvidia-settings package and go into /etc/X11/Xsession.d maybe [19:56] * mvo is not a expert for the binary driver though [19:57] should not always be run, only before compiz lunch [19:57] I guess [19:57] Load the configuration file, send the values specified therein [19:57] to the X server, and exit. This mode of operation is useful to [19:57] place in your .xinitrc file, for example [19:57] ok [19:57] before compiz or anything that uses 3d I guess? like games etc? [19:58] tjaalton: ---^ do you have a opinion on the right place to put nvidia-settings -l ? [19:58] so, it should be added in nvidia-settings package, no? [19:58] to add it to .xinitrc file [19:58] yes, that looks like a better place to me (/etc/X11/Xsession.d probably) [20:00] where is .xinitrc? [20:02] I don't find it [20:02] locate .xinitrc doesn't give any result [20:03] l [20:04] and in which file compiz in launched when starting? [20:06] mvo? [20:09] ? [20:10] rom: its in the users homedir, but that is not a place where packages can put stuff, this is why I mentioned /etc/X11/Xsession.d [20:11] ok, and do you know how compiz starts when system starts? [20:11] in which file [20:11] is it started? [20:11] rom: It doesnt start when the system is started. [20:11] rom: It starts after a user logs in. [20:11] in ubuntu, yes [20:11] ah [20:11] yes :) [20:11] where is it started? [20:12] rom: Have you looked into mvo's suggestion? [20:12] I have no .xinitrc [20:12] rom: No one but you mentioned that, see /etc/X11/Xsession.d [20:13] yes I searched [20:13] but this dir is for putting nvidia-settings -l, I didn't find compiz here [20:13] cat /etc/X11/Xsession.d/* | grep compiz → no results [20:14] UUOC ;-) [20:16] no idea? [20:21] rom: compiz is started via the gnome-wm script by gnome-session. but I it seems to me that the nvidia-settings -l run should be independant of the compiz one [20:22] mvo, yes, I agree nvidia-settings -l should be independant ;) [20:22] where is "gnome-wm script by gnome-session"? [20:25] ah, gnome-wm is in /usr/bin :) [20:25] thanks [20:25] but doesn't it slow down the boot time ? [20:25] to load metacity first, then when the user is logged [20:25] to load compiz... [20:25] ? [20:29] I dont see that there. [20:30] what do you mean (sorry, I'm not english, I don't get it) [20:30] "I dont see that there" [20:30] ? [20:30] rom: gmome-wm looks like it calls whatever window manager based on a set of rules, not both wms. [20:30] anyway, I need to run. [20:31] ok, but before running compiz [20:31] when you have login screen [20:31] it's metacity, no? [20:31] to run nvidia-settings -l in /etc/X11/Xsession.d, I just have to make a script containing "nvidia-settings -l" with a special filename? [20:48] mvo? could you confirm how to add a script to Xsession.d? [20:49] rom: that sounds right, it needs to be added to the nvidia-settings package [20:49] rom: you may talk to the people in #ubuntu-x too [20:49] mvo: are you still responsible for the update-manager? [20:50] mvo: ok, but do you know how to add a script in Xsession.d? Just put the script "like this", no particular format? [20:53] simira: yes [20:56] mvo: works very well now, I like it! [20:56] simira: cool, I like that :) [20:56] * mvo hugs simira [20:56] Mirv: yes, i need to make an upload of the openoffice.org-l10n packages that i will be doing in a few minutes [20:58] pitti: 220911 is a bug in openoffice.org not writer2later afaicr but i haven't added it in yet to the upload since i need to verify the patch works properly (its not a patch in ooo-build) [21:09] keybuk: What was this about? :-) * At this rate, I'm going to prove pitti right! [21:38] Hello [21:39] Where do i get a patched bcm43xx driver ? [21:58] Note to self: mention http://heh.fi/tmp/recovery-mode-dpkg.patch to mvo [22:08] ion_: 'if [ -x $python -a -e $script ]' -> 'if [ -x "$python" ] && [ -e "$script" ]' please? [22:09] (quoting is just good style, and the rules for -a and -o are so twisted and unintuitive they're best avoided) [22:10] cjwatson: Will do. I usually do quote pretty much everything, but that case seemed so obvious, since there are ‘2.5 2.6’ right above. [22:10] Hello [22:10] When will the patched bcm4311xx driver be in the ubuntu repo? [22:12] cjwatson: Updated. [22:14] no answer? === Amaranth_ is now known as Amaranth [22:18] Methoxypropan: which patch are you talking about here? [22:19] Methoxypropan: and is there a bug filed about whatever it is? [22:19] hi [22:20] cjwatson, yes there is a bug report on launchpad...wait..i'm going to search it [22:20] I need some one who can compile a modem driver (I got the source), so I can get online in Ubuntu. :) [22:20] calc: remember also the rebuild of openoffice.org-voikko, to be published at the same time so as not to force language-support-fi/ooo-voikko deinstallation [22:20] If anyone could do it, I'd give you much thanks. http://linmodems.technion.ac.il/pctel-linux/pctel-0.9.7-9-rht-6_for_Ubuntu-2.6.15-23-386.tgz [22:21] (really should have automatic testing/stuff about the dependencies etc.) [22:21] cjwatson, its bug #214386 [22:21] Launchpad bug 214386 in linux "bcm94311 rev 02 not detected at boot time" [Undecided,New] https://launchpad.net/bugs/214386 [22:21] :) ... [22:23] * Gaming4JC you can see I cannot get online to compile the tool, so I was wondering if anyone could do it. (would help so much) [22:23] I'm on Windows now. [22:24] :'( [22:24] Gaming4JC: the reason no-one is answering is because this is not a support channel [22:24] it's development? [22:24] yes, OF ubuntu [22:24] so not drivers for Ubutnu?... [22:24] :-/ [22:24] what you're trying to do is not even development [22:25] it's compiling [22:25] eww... so where should I go for that? (main support doesn't seem to know) [22:25] forums or #ubuntu [22:25] cjwatson, in the last post the guy sais something about a patch.... but when will the patch be in the repo? [22:25] Methoxypropan: "a new patch has been submitted" but no link [22:26] ok thanks [22:26] byes ;) [22:26] Methoxypropan: the name in that last comment isn't one I recognise; he's not a member of the Ubuntu kernel team [22:26] (AFAIK) [22:26] so somebody needs to actually provide the patch to the Ubuntu kernel team (or a reference to it or whatever) in order for it to have a hope [22:26] I suspect he's perhaps a bcm43xx upstream guy looking at his subscribed bug list [22:27] so perhaps what he meant was that a patch has been sent to bcm43xx upstream [22:27] cjwatson, http://cantrip.org/bcm43xx-2619.patch [22:27] a patch from October 2006? surely not [22:28] whatever Larry is describing sounds much more recent than that [22:28] so how long will i have to wait? [22:28] the bug is in far too early a state to be able to say [22:29] ok thanks a lot ;) [22:29] if you want to help, track down whatever it is that Larry was actually referring to [22:30] I do think you will need to look for something that's actually from this year [22:31] cjwatson, they said that the patch that made it working has been removed because an othe card didnt work [22:32] yes, I read that [22:35] ah, he sent some patches to kernel-team@ [22:35] which Tim seems to have picked up [22:36] cjwatson, so maybe it'll be in the next kernel? [22:36] it looks like it [22:36] see bug 197959 [22:37] Launchpad bug 197959 in linux "[Hardy]Recent kernel update to 2.6.24-11 breaks b43 (with bcm4312)" [High,In progress] https://launchpad.net/bugs/197959 [22:37] "There is now a test kernel in my PPA with these 4 patches at http://ppa.launchpad.net/timg-tpi/ubuntu. Please give it a try and report the results." [22:37] perhaps you could give that a shot and report results to 197959, assuming that's essentially your bug [22:39] thanks a lot cjwatson [22:39] I doubt that's targeted for 8.04.1 at this point (though I could be wrong); it's a bit late - but at least you'll have the PPA kernel to tide you over until then, and if it's working well then it'd be at least in the next round of hardy kernel updates after 8.04.1 [22:40] (and, as I suspected above, Larry does indeed seem to be a bcm43xx upstream guy, helping out) [22:43] ;) [22:44] cjwatson, so i'm going to reboot and hopefully be back again [23:31] cjwatson, so its working perfectly ;) [23:32] oh good; can you update the bug on that if you haven't done so already? [23:32] (both the one you originally gave and the one I pointed out) [23:32] cjwatson, mhm...can i do it tomorrow? i'm really tired [23:33] Which bug numbers did the bugs have? [23:34] cjwatson, can you remember the bug numbers? [23:34] 22:21 cjwatson, its bug #214386 [23:34] Launchpad bug 214386 in linux "bcm94311 rev 02 not detected at boot time" [Undecided,New] https://launchpad.net/bugs/214386 [23:34] 22:36 see bug 197959 [23:34] Launchpad bug 197959 in linux "[Hardy]Recent kernel update to 2.6.24-11 breaks b43 (with bcm4312)" [High,In progress] https://launchpad.net/bugs/197959 [23:34] my IRC client can ;-) [23:35] thanks ;) [23:36] so i should say that it's working on my system and tell the guys from bug #214386 that they can use the kernel from bug #197959 ? [23:36] Launchpad bug 214386 in linux "bcm94311 rev 02 not detected at boot time" [Undecided,New] https://launchpad.net/bugs/214386 [23:36] Launchpad bug 197959 in linux "[Hardy]Recent kernel update to 2.6.24-11 breaks b43 (with bcm4312)" [High,In progress] https://launchpad.net/bugs/197959 [23:39] I think so [23:39] bbl [02:00 pm GMT+1] :P [23:39] gn8