[00:00] owh: which bit are you disagreeing with? [00:01] ajmitch: Yes, the threshold to entry is low, which is both good and bad. I suspect it just means more work for me in the long-run. I've seen "secure" code that made me blanch - Credit Card details stored in clear text in a database table, no user password, really scary stuff. [00:01] Deeps: No, I was laughing because ajmitch used the same phrase for Python. [00:01] owh: hehe, yeah, it was intentional ;) [00:02] Deeps: I knew that, and it drew a laugh :) [00:02] :) [00:18] ajmitch: I beg to differ on one point. [00:19] why certainly [00:19] ajmitch: PHP's security record is much better than the world believes, in that 99% of PHP CVEs are based on the assumption that PHP should hold a user's hand WRT input validation, etc. [00:19] ajmitch: So, while it's true that these are bugs in PHP (because it attempts to do the hand-holding, and occasionally messes up), no other language I know of does the hand-holding in the first place. [00:20] ajmitch: Of course, if we had it my way, all web apps would be CGIs written in C, and all programmers would be literate, and capable of tying their own shoes... [00:20] sadly sometimes trying to do a task & failing can be worse than not trying at all [00:20] ajmitch: And PHP upstream is realising that as well, which is why they've dumped things like register_globals on the floor and such in recent releases. [00:21] I'm glad of that [00:21] "We can't validate this correctly, no matter how hard we try, so don't use it at all, and validate your own damned input." [00:22] In the end, my biggest complaints about PHP are twofold. [00:22] infinity: Yes, I agree, most of the issues I come across are script based. [00:22] 1) I've had numerous arguments with upstream over the course of the last 6 years or so about thread-safety, and even when I provide patch after patch, they still refuse to "officially" support their TSRM backend. [00:23] 2) The barrier for entry for script writing is so low that people seem to literally stumble over it, and these are often not the people you want writing your software. [00:23] * ajmitch would never say that the barriers of entry are low for something like Zope [00:24] No, I wouldn't either. [00:24] infinity: Think of 2) as an employment incentive for you :) [00:24] But I'm not positive that makes it "better", it just makes it more likely that the people using it successfully are, on average, a bit brighter. [00:24] sorry, some of my bitterness of struggles with plone in recent days are leaking through [00:25] PHP is a double-edged sword. I love how easy it is to get into, I love how quickly one can bang out a surprisingly complex web app, I hate that most of the people doing so are doing so because it's the only language they're capable of learning, rather than doing so because they COULD use something harder, and decided not to. [00:25] infinity: Not always. Because of integrated IDE's, it's just getting easier everywhere. Most of the "programmers" I come across have never heard of XOR and don't understand what a stack is, pretty basic concepts that they've never mastered. These are the people who write our current crop of end-user visible software. [00:26] The job I held before Canonical was writing PHP extensions in C for a company that wrote complex in-house PHP applications. [00:26] not requiring having long-running processes has been quite a bonus for PHP deployment [00:26] I was asked repeatedly by coworkers why I worked on anything PHP-related if I was obviously capable of working with lower-level languages, something they seemed rather jealous of. [00:26] infinity: Heh [00:27] It just seemed odd to me, I guess. [00:28] I'd been doing "prototype in a RAD language, then reduce to C for speed" in Perl for ages, and no one asked that question there. [00:28] They'd never say "dude, why write perl modules when you clearly know C?!", it just made sense to prototype in perl, then drop down to C. [00:28] I think we're actually seeing a dumbing down of our industry. I have spent the last week working with an embedded satellite tracker. The manufacturer refused to provide the message DTD without a 5-year NDA, and told me it was encoded. I spent 2 days decoding it. Just bits and bytes, simple. [00:28] But for PHP, the very idea of doing anything in C seems to scare people. [00:29] And this wasn't the sales department either, this was their seniour software guy. [00:30] infinity: But it's not limited to software development, it's right here, in server administration too. [00:30] I see the same pushback from the Python community, though for different reasons, I think. I'm pretty sure Python programmers just think that Python is so whizz-bang and can do no wrong, that when you suggest rewriting a complex Python library as a C module, they can't fathom why you'd want to make their code "ugly" in such a vicious way. [00:30] owh: now you'll probably end up with legal action due to circumventing access restrictions or similar :) [00:31] ajmitch: Well, we purchased the tracker, it sends messages to us which we need to use and we couldn't run Windows to do it. They can come and get me. I'm not in their country. I resisted temptation to email their DTD back to them :-) [00:31] I think it's partly due to a language becoming more popular, and less experienced programmers get involved [00:31] hardware is cheaper then people, why pay for expensive people when you can just buy 4 or 10X the hardware? [00:32] jiqiren: And, yes, that's generally the crux of the issue, at the business level, you're right. Very little code these days should be profiled, because profiling costs more than hardware. [00:32] jiqiren: Because that is rubbish. The cost is not in writing the code, the cost is in maintaining it. [00:32] owh: so can you maintain C or Python easier? [00:32] But this also means that the number of programmers CAPABLE of profiling code is slowly diminishing to the tiny subset of "crazy kernel and toolchain hackers" and such. [00:32] jiqiren: I'm not saying that management agrees with my assessment, but that's the reality of it - mostly in "hidden costs". [00:33] jiqiren: Well in the case of C, yes. It's much more structured and required to be so. That means that simple script authors cannot get started without training, something which PHP lacks. [00:33] jiqiren: I cannot yet speak for Python. [00:33] owh: From a business POV, "maintenance" is largely a question of "how many people can I hire to replace you?"... It's way easier to find a PHP hack to look at your code when you quit than a C hacker to maintain your tree. [00:34] infinity: Yes, but the hack will cost more money in the long run. Most issues are generated as a result of "results now" business model. [00:34] infinity: I see less and less businesses wanting to be here 10 years from today. [00:35] owh: While possibly true, this line of reasoning will lead to all software being written in LISP. :) [00:35] owh: so I can hire a whole team of php kids - who bang away and get it going - or pay "too much" to get 1 good coder... If I pay for 1 good coder he should be figuring out new qiz-bang aps... not wasting his time tweaking a loop [00:35] jiqiren: No, a heard of monkeys will never write Shakespeare. [00:35] infinity: Well, that or COBOL :) [00:36] Well I don't hire a heard of monkeys, I hire a heard of college dropouts or fresh-out-of-college kids [00:36] jiqiren: And in what way are they better than monkeys? [00:36] and I don't need Shakespeare, I need American Idol [00:37] jiqiren: No, you just think you do. [00:37] jiqiren: You illustrate my point exactly. [00:37] jiqiren: The world does not progress with American Idol, but it does with Shakespeare. [00:38] with your narrow definition of progress [00:38] jiqiren: Yesterday I was having a discussion about why Science Fiction is different from all other genres. Ideas are what matter. [00:38] jiqiren: No, I mean where the world gains skills and insights into itself. [00:38] In the end, your business decisions will be dictated by what you need to get done, how quickly, and who you can hire to do it. [00:39] owh: you're talking academics. the business world has a bottom line [00:39] I was just saying that the way it looks to me at the moment is that the world is becoming dumber. [00:39] At Canonical, we write a LOT of software in Python. Some of that may have to do with a seemingly company-wide love affair with the language, but the other equally valid reality is that we can't hire 100 Colin Waton clones to do it all in C. [00:39] jiqiren: But the academic view and the business view are not separate, they're a different side of the same coin. [00:39] I (and others) can argue it is becoming more efficient [00:40] Good programmers are hard to find, and even harder to hire. Mediocre ones are reasonably plentiful. Bad ones are a dime a dozen. [00:40] infinity: And PHP attracts the latter :) [00:40] If I was still involved with PHP upstream, I might pretend to take offense at that. :P [00:41] infinity: To clarify, I wasn't talking about upstream as such, but if the shoe fits :) [00:41] language doesn't directly relate to quality of software or the programmers [00:41] But, yes, I agree. Making things simple invites the simple-minded to use it. Not a fault of the language, so much, but it does make reading resumes and hiring people who aren't complete morons a bit tougher. [00:41] PHP and Python are popular, so there is just a bigger pool to go fishing in [00:41] RoR is next [00:41] * owh has to wave farewell from this stimulating conversation and be off. [00:42] PHP is just as easy to pick up by the wrong people as Ubuntu [00:42] * owh resolves to check the irc logs :) [00:42] I once spent an entire afternoon trying to explain bitmasking to a CompSci grad. It's a sad world. [00:42] Later all. [00:42] l8r [00:42] heh [00:42] as a recent compsci grad, i hate to do this but... [00:42] infinity: bitmasking? [00:42] lol [00:42] * ScottK really likes being able to go back to code he hasn't touched in two years and understand it and pick up work. [00:42] * infinity cries. [00:43] Another reason to like Python. [00:43] infinity: gimme the short version [00:44] Deeps: PERMS=127; can_login=8; PERMS && can_login = let_him_in. [00:44] ScottK: i get that with my java and my php [00:44] infinity: gotcha [00:44] Deeps: Boolean logic seems to confuse... Everyone. [00:44] ScottK: good coding practices mean you can do that with almost any language (i dont know C(++) so i cant comment) [00:45] This is a fine example of how people complete miss the point: [00:45] http://thedailywtf.com/Articles/Boolean-Integers.aspx [00:45] infinity: I'm less confused than I was before your example [00:45] * Deeps waits the eternity firefox takes to load [00:45] (Note that those are all strings, there's no binary comparisons there AT ALL) [00:46] I for one would welcome the monkeys [00:46] Err, integers actually, but then using string comparisons. [00:46] lmao [00:46] Deeps: time to run FF3 Beta - much improved! [00:47] jiqiren: time to run FF0.7, much quicker! [00:47] boooo, then all my plugins will break [00:47] I run enough beta software on my laptop as it is without sticking a beta firefox on there on top (I run XP on my laptop ;) [00:48] Ahh, booo me with my XP bashing, XP's actually pretty good, as far as an OS can be [00:49] * Deeps lulz [00:49] 00:40:07 < twigathy_> http://www.uploadthis.co.uk/uploads/Twigathy/VirusesOnLinux.png <-- wine has got so good I have a fucking windows virus on my ubuntu machine [00:49] I think the limit of XP's usefulness to me can be summed up by its title in my GRUB menu.lst: "World of Warcraft OS 5.1, Service Pack 2" [00:50] You're a wowfag? :/ [00:50] Everyone has to have a vice. [00:50] mine is excessive cruelty [00:50] Cocain's less adictive [00:50] and less of a vice [00:50] srsly. I doped for 6 months and quit on the spot when I wanted to [00:51] WoW, i played 1 week, and took me a month to quit :/ [00:51] WoW's moderately cheaper, though. [00:51] and drastically less fun! [00:51] Deeps: so you don't use like .... half+ of googles products? they are all in beta still! :) [00:52] that's lack of willpower tbh, I've just right up quit WoW for months at a time before getting badgered to heal for some raid or another [00:52] jiqiren: none of them run on my machine ;) [00:52] touché [00:53] I've never looked back on wow, smoking or cigarettes, so I'm pleased enough with myself. I'm still hooked on crisps though (they were my cig substitute) [00:53] My wife plays, so it's a cheap way to spend "family time" together when bored. [00:53] haha, nice [00:54] I had a friend who communicated mostly with his wife over IRC [00:54] She was deaf mind, so it made sense... [01:38] Is there a way to get a GUI on ubuntu-server? The command line is frightening! [01:40] the command line is warm and comforting [01:40] Boo! [01:40] :) [01:40] kneeki: Look into ebox is you must. [01:40] is/if [01:40] but if you insist, "sudo apt-get install ubuntu-desktop" [01:41] Cahan: In the long run command line will lead you to better understanding of your system. [01:41] Yes, that too, but then you have to be physically at the server. [01:41] ebox huh? [01:41] Cahan, I know, but he asked for a GUI, no need to be elitist and refuse to help just because you prefer the CLI [01:41] ScottK* [01:41] !ebox | kneeki [01:41] kneeki: ebox is a web-based GUI interface for administering a server. It is designed to work with Ubuntu/Debian style configuration management. See https://help.ubuntu.com/community/eBox [01:42] awesome! [01:42] I didn't. I suggested ebox. [01:42] thanks :) [01:42] downloading now :) [01:48] is there any reason to upgrade? are there bug fixes that you can only get by dist-upgrading? performance improvements? [01:49] Cahan: I seem to have more free RAM since the upgrade [01:50] I had to stress test my server just to make sure it used swap too. lol prior to my upgrade I usually had a little swap after log rotation and such...not since [01:50] I'm actually still on Feisty >.> [01:51] mhm_jr, what does your server do? Home server, or Work? [01:51] home server, but semi-well used for a home server [01:51] Ah, mine is a home server as well :) [01:51] I use it from work too to troubleshoot our servers from off the network [01:51] I'm pretty excited to microwave my windows disks. -_- [01:52] mhm_jr: lol! I do the same thing. :) [01:52] * mhm_jr hasn't used windows since 98...and thats 1998 not windows 98 [01:52] :D [01:52] haha! [01:52] except the few times I'm forced to look at a windows server at work [01:53] I decided to make the full switch yesterday. [01:53] I was in such nerd rage, I even wrote a post on my Blog about it [01:53] lol [01:53] how long have you used it in general? [01:53] Windows? Probably for the last uhm.... 16 years? Since Win '95 [01:53] no, linux [01:54] Oh, off and on for the last 10 years. I'd install it, get confused, remove it, and I've been testing every version of Ubuntu since Edgy to see how easy it's become [01:54] Now that I can play games (I'm a gamer) on 'nix w/o too much difficulty, I decided to make the full time switch [01:55] ubuntu is certainly more friendly than most as a desktop...and it doesn't cripple the cli at all [01:55] yeah :) [01:55] I like the cli, but I'm still very new to it, so it is painful [01:55] its the first distro I have more than a year straight without switching to something else just to see what it was like lol [01:55] lol [01:56] Good to hear :) [01:56] been running it almost 2 years now :) [01:56] ebox = 73% :( [02:44] G'day.. anyone here using openldap(slapd)? [03:06] hi: I've sethi: Iv'e set up an open vpn tunnel between my home and office. I can successfully ping and login to the office over the tunnel. I can't seem to hit the apache server running at the office using http://10.8.0.1. Apache is up, and the default ubuntu config doesn't look like it's listening on an ip address. Ideas to troubleshoot? [05:40] New bug: #225061 in munin (main) "munin should depend on (or at least recommend) "cron"" [Undecided,New] https://launchpad.net/bugs/225061 === gouki_ is now known as gouki [07:55] will a dos attack cause a firewall to shutdown/reboot? [07:59] <_ruben> is possible, but doesnt have to happen .. (d)dos is rather wide subject [08:50] any xen users for the 8.04 release around? [08:51] I got xen "working" except for networking - is quite annoying [09:14] jiqiren: take a look at this bug report/thread which includes a workable solution: https://bugs.launchpad.net/bugs/204010 [09:14] Launchpad bug 204010 in xen-3.2 "networking not working (dup-of: 218126)" [Undecided,Confirmed] [09:14] Launchpad bug 218126 in linux "xen guest kernel bug: 'kernel BUG at /build/buildd/linux-2.6.24/debian/build/custom-source-xen/drivers/xen/netfront/netfront.c:785'" [Medium,In progress] [09:15] fromport: reading now [09:18] jiqiren: there have been some harsh words regarding this issue, least thing they could have done with the hardy release is mentioning there is a problem and refer to the solution. Missed change from canonical... [09:19] It took me forever to get the loop bs working [09:20] the annoying thing about loop disks is there is a patch in one of the bug reports... but I guess they want to sit on it for.... a long time. [09:21] is your hardware capable of KVM ? if so: switch. It's worth it. [09:21] nope, old machine [09:22] pitty ;-) same here only 40% of our machines are VT capable,so rest has to run with xen till it get's replaced [09:23] well I'm stuck with 100% of machines that can't run KVM. :( [09:24] (until I get around to buying new hardware) [09:24] but even when I do get new hardware - I'll likely keep the old around until they die [09:27] exactly what we do. but i must admit, i'm currently looking at http://www.supermicro.com/products/system/1U/6015/SYS-6015TW-T.cfm [09:27] with 4 quadcores i could probably replace 50% of our current servers ... [09:28] http://8anet.com/ <- much cheaper and compact [09:29] and free a lot of rackspace. I'm still figuring out powerconsumption. use iscsi box (trying openfiler at the moment) for storage. [09:29] specifically http://8anet.com/listprod.ihtml?parent=35 [09:30] I used a lot of supermicro before, they are also good bang for buck [09:35] I guess I'll just run a kernel from some dude in Japan... [09:38] thanks for the info, will read the link when i have some spare time ;-) [09:38] the japanese kernel works, that's the good news ;-) [09:40] still installing, will let you know soon [09:41] hmm just took a quick peek at the site you mentioned, but those look exactly like the supermicro chassis. are those rebranded/oem sm's ?! [09:43] they sell supermicro [09:43] the chassis I like is the .5U [09:43] you can cram them in back to back [09:43] wow, that xen bug's pretty bad [09:43] and they are only ~$400 for chassis/motherboard [09:44] once you put RAM/CPU, you are looking at a pretty badass server that takes up no room - and hecka cheap [09:45] :-) thanks a lot. and with the current euro <-> $ it's so cheap ... ;-) [09:47] you should also take a look at GlusterFS, screw buying nas/iSCSI [09:48] just cluster/replicate your filesystems into one big pool [09:48] if you lose a server... no problem the file is replicated somewhere else [09:50] looking at the wiki right now ;-) [09:50] well, the japanese dudes kernel works perfect... woot! [09:50] thanks a lot for you eye-openers ;-) [09:51] no problemo [09:52] I'm thrilled xen is working now [09:52] great ! both happy ! ;-) [10:47] I've never worked in a no-swap environment and need to select a VPS capable of running Apache, PHP and either postfix or exim to hand incoming email over to a PHP script. The site is not expected to receive a high server load, but I'm unsure how I would go about selecting memory requirements. Other than TIAS, how do I do this? [10:51] I'm playing around in the same sort of area myself so I don't know or have practical experience but I don't think I'd go for anything under 256MB [10:51] How did you arrive at that figure? [10:53] TIAS is probably the best approach. Set it up, throw 5-10x more load than you expect to recieve (if it's low load, this is still going to not be much), and monitor the memory usage [10:53] nobody can tell you how much memory your scripts need [10:54] Having never run out of memory, how can I expect it to react if I do? [10:54] owh: From a completely unscientific approach of running bare metal servers for hte same sort of thing. [10:54] try it and see on a machine that has enough memory ;) [10:54] OOM killer :) [10:54] btw, why cant you run swap? [10:55] I can do better than that, create a VM locally, but I was trying to avoid that. [10:55] Deeps: The VPS I'm looking at provides OpenVZ without swap and XEN with swap. I'm not informed enough to choose, so I'm looking at worst case scenario. [10:56] Unless google has the answer, you'll probably need to do your own testing to determine your personal memory needs [10:56] I'd pick the Xen over the OpenVZ [10:56] Deeps: Why? [10:56] mainly because you know whatever ram you get is actually permanently allocated to you, whereas with openvz you'll get contended ram [10:57] owh: you'll likely be on an oversold VPS anyway, so just hit the limit - and be sure your VPS provider has an option to "upgrade" your allocation. [10:57] with xen, you cant oversell the ram (afaik) [10:57] Deeps: The supplied documentation tells me that I get a guaranteed chunk of RAM, but that there is no swap or burst RAM. [10:57] jiqiren: Fair point. [10:58] owh: With OpenVZ, you'll be taking their word for that [10:58] and eitherway, you should on both cases be able to create your own swap storage as a file.. less efficient than using a separate partition but it'll still do the job [10:58] Deeps: Will there be a performance penalty for selecting Xen over OpenVZ? [10:59] i think xen will give you better performance, google knows more though [10:59] I'd agree in my limited knowledge [10:59] BTW file based swap is apparently as good as partition based these days (on bare metal). [10:59] the opinion of the internet at large is almost always better than the opinion in an irc channel [10:59] * owh is a vmware child :) [11:00] vmware also lets you oversell ram [11:00] and is significantly less efficient as you're virtualising an entire machine [11:00] Deeps: I've never hosted anything on a VPS to date. I use VMware locally to test, that's all. [11:01] vmware workstation is pretty good for that, aye [11:01] server, but yes. [11:02] linked clones baby and snapshot histories, absolutely vital, heh. [11:04] Deeps: Yes, I do miss that a little :) [11:04] it's worth every penny imo [11:05] I purchased v3.x a long time ago. Since then my requirements have changed. [11:15] * owh is doing a TIAS, thanks all for your comments. === davmor2 is now known as davmor2_lunch [13:06] hi: I've sethi: Iv'e set up an open vpn tunnel between my home and office. I can successfully ping and login to the office over the tunnel. I can't seem to hit the apache server running at the office using http://10.8.0.1. Apache is up, and the default ubuntu config doesn't look like it's listening on an ip address. Ideas to troubleshoot? [13:07] I should say that apache looks like it would listen on any ip address. [13:09] It just occured to me I need to telnet to port 80 on the target server to see if it's listenin. It is. Must be an apache config issue. === davmor2_lunch is now known as davmor2 [13:44] morningn [14:06] hey zul [14:29] hello all [14:29] how to install postgresql 8.2 (server) on "ubuntu 8.04 server" ? [14:33] ctx144k: sudo apt-get install postgresql-8.2 [14:35] ah, yes i already saw, really easy [14:48] How does one get a saved iptables ruleset to automatically restore after restart? [14:49] use ufw [14:49] (well in hardy that is) [14:50] Gonna have to do some reading I guess :) [14:51] on former systems: sudo sh -c 'iptables-save > /etc/my_iptables.conf [14:51] hmm, does ufw support ip masquerading? [14:51] and add a line to /etc/network/interfaces: up iptables-restore < /etc/my_iptables.conf [14:51] Vlet: http://www.faqs.org/docs/iptables/iptables-save.html [14:51] super, thanks folks! [14:51] ufw does masquerading as well afaik [14:52] ufw doesn't inhibit masquerading, as it stores its rules in standard iptables-restore syntax [14:52] http://doc.ubuntu.com/ubuntu/serverguide/C/firewall.html [14:52] :) [14:53] ufw's cli doesn't help much though-- however, it has all the infrastructure to deal with anything iptables-restore can do [14:54] see 'man ufw' particularly the NOTES section if using ufw for more than a host-based firewall [14:55] information overload :) [14:55] heh [15:00] Vlet, the doc i pasted has a nice explanation of doing masquerading with ufw (it says still "draft" though) [15:02] ogra: thanks! I forgot about that :) [15:27] I have an apache web server set up with an SSL certificate signed by VeriSign. When connecting from Firefox with https I get an error: Secure Connection Failed [15:27] [15:27] [15:27] [15:27] [15:27] [15:27] [15:27] [15:27] [15:27] An error occurred during a connection to www.curvessmart.com. [15:27] SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long). The apache error log returns: [client 0.0.0.0] Invalid method in request \x80L\x01\x03\x01. Any ideas of what is wrong. [16:08] stabeno_: do you have ssl enabled on apache ? what error shows in your log files === joerlend_ is now known as XiXaQ [16:51] leonel: I do have SSLEngine turned on. The error in the log file is The apache error log returns: [client 0.0.0.0] Invalid method in request \x80L\x01\x03\x01. [17:28] is the dhcp client installed by default? [17:42] nxvl: so, bug #189616 is still here... what more can we do to try to track this down? [17:42] Launchpad bug 189616 in dovecot "connection problems under load with hardy dovecot" [Undecided,Incomplete] https://launchpad.net/bugs/189616 [17:50] melter: yeah, dhcli should show it [17:50] I'm doing an upgrade (command line, with do-release-upgrade) from 7.10 to 8.04, and it's giving a bunch of helpful messages (NIS, MySQL, and PostgreSQL stuff) - will these be written to a file as well? (I'm writing them on dead trees right now.) [17:52] tonyyarusso: they should be in /var/log/dist-upgrade/, there's a couple of different log files [17:52] sommer: all right, thanks. [17:52] np [17:56] tonyyarusso, the documentation implies that it needs to be installed by the user [17:57] melter: Really? Lemme try actually looking on a real machine instead of in my head. [17:58] "Ubuntu is shipped with both DHCP server and client. The server is dhcpd (dynamic host configuration protocol daemon). The client provided with Ubuntu is dhclient and should be installed on all computers required to be automatically configured. Both programs are easy to install and configure and will be automatically started at system boot." [17:58] i couldn't remember if i installed it, or if it was installed automatically [18:00] melter: /sbin/dhclient3 is there on my server, and wasn't manually installed. [18:36] Morning. I'm about to purchase a Dell SC1430 with a PERC 5/i card, and noticed that there were some forum posts from a year or so ago that indicated problems. Can anyone tell me if Hardy supports this card? [18:36] New bug: #225333 in cyrus-sasl2 (main) "Should use /dev/urandom instead of /dev/random" [Undecided,New] https://launchpad.net/bugs/225333 [18:38] ho ebox users (sommer?) - https://help.ubuntu.com/community/eBox says to go to https://yourserver/ebox but http://ebox-platform.com/usersguide/en/html/ebox-userguide-book.html says the B is capitalized. My ebox vm is on a machine that is down. But looks like a typo.... [18:38] slangasek: i can't reproduce it [18:39] slangasek: even is a problem with the configuration or somthing else is wrong [18:42] looks like a problem at http://doc.ubuntu.com/ubuntu/serverguide/C/ebox.html and https://help.ubuntu.com/8.04/serverguide/C/ebox.html also. And can we refrain from closing urls with a period, e.g. at the end of a sentence? Causes copy/paste problems. [18:47] nealmcb: sure, can you file a bug to remind me :) ? [18:47] sure - I just wanted someone to confirm it before I fix the wiki page === good_dan1 is now known as good_dana [18:58] nxvl: well, the configuration in question was provided in the bug report, so hopefully that's what you were using to try to reproduce it? [18:58] nxvl: anyway, we seem to have a running theory now that's being pursued with IS [19:19] anyone have a second to check my blueprint https://blueprints.edge.launchpad.net/ubuntu-doc/+spec/intrepid-server-guide? just wondering if I need to adjust/add anything :) [19:20] my first blueprint and all, heh [19:25] sommer: looking... [19:25] dendrobates: thanks, I modeled it on kirkland's doc-search blueprint [19:26] dendrobates: btw... newz2000 is taking my code from the doc-search and implementing it on search.ubuntu.com [19:27] dendrobates: he's going to make it more user-friendly searching [19:27] kirkland: great news. [19:27] dendrobates: he and mdke didn't like the code/manpage searching [19:27] dendrobates: so, they're going to take what I started, and make a user search [19:28] dendrobates: i'm going to pick that up, and make a "developer search" tool, which searches the user stuff, plus some developer resources [19:28] dendrobates: such as code, manpages, packages, etc. [19:28] dendrobates: in the end, i don't think we need to dedicate a lot of UDS time to this one [19:28] kirkland: that sounds cool [19:28] dendrobates: as newz2000 is not attending UDS, and he's running with it [19:29] dendrobates: i'll pick up the developer search in my spare time [19:29] dendrobates: i do still think we should have one on manpages [19:29] dendrobates: or just elmo/cjwatson/myself can discuss it over a beer? [19:30] sommer: yeah, i think it will be good [19:30] kirkland: there are many websites with searchable manpages, do you think that it adds that much? [19:31] sommer: looks good [19:31] dendrobates: um, point me to one that has Ubuntu's manpages.... [19:31] dendrobates: there's manpages.debian.net [19:31] dendrobates: cool, thanks for taking a look [19:31] dendrobates: and a couple of RH/SUSE ones [19:31] dendrobates: but neither I nor cjwatson (man upstream maintainer) know of one for Ubuntu's packages [19:33] dendrobates: I do think it adds an important dimension to the sum total of our documentation [19:33] dendrobates: especially on the server [19:33] dendrobates: if you need to look something up, but you don't have the docs installed [19:33] dendrobates: docs take up a lot of room ;-) [19:35] Is there a way to install the LAMP meta-package after an install has completed? [19:35] lamalex: tasksel -h [19:42] jdstrand: hey, you around? [19:43] yep [19:43] kirkland: what's up? [19:44] jdstrand: hey, per our conversation last week, i'm creating a meta package to install (kvm, virt-manager, libvirt-bin) [19:44] cool [19:44] jdstrand: 1) was thinking of calling it ubuntu-vm-server [19:44] jdstrand: 2) anything else necessary I should throw in there? [19:44] jdstrand: thoughts? [19:45] * kirkland notes soren is out today [19:45] * kirkland also notes that jdstrand kicks butt as soren's backup :-) [19:45] kirkland: my first thought is that the meta package is really for desktop users, so the -server part in the name seems odd to me [19:45] heh, thanks-- I try :) [19:45] jdstrand: okay [19:46] jdstrand: i was thinking "server" because it's serving vm's [19:46] jdstrand: ie, you can install virt-manager, and not serve the vm's [19:46] kirkland: just my opinion, but I think the name should more discoverable [19:46] jdstrand: okay [19:46] kirkland: oh sure, but the point is so that some can do it *all*, not just server [19:46] s/some/someone/ [19:47] * jdstrand thinks [19:47] jdstrand: i'd like to meta-package together everything you'd need to host virtual machines [19:47] jdstrand: manage them effectively [19:47] jdstrand: use them efficiently (kvm) [19:47] kirkland: this is for universe? [19:47] jdstrand: well, i was thinking main [19:47] jdstrand: which is why qemu is not in there [19:48] jdstrand: but universe does expand our possibilities (qemu, xen) [19:48] kirkland: then there isn't as much you can put in there, of course :) [19:48] xen is main isn't it? [19:48] jdstrand: well, (kvm, libvirt-bin, virt-manager) are all main [19:48] jdstrand: oh, is it? [19:48] jdstrand: no just libxen for virt-manager [19:49] zul: ah, so that is why the source is in main [19:49] gotcha [19:49] jdstrand: linux-image-xen is universe [19:49] kirkland: virt-viewer is a really nice vnc client that would be cool to have, but it is universe [19:50] jdstrand: hmm, right [19:50] kirkland: always has always will be. [19:50] kirkland: not strictly needed if using virt-manager, mind [19:51] kirkland: oh, and of course, ubuntu-vm-builder [19:51] jdstrand: yeah [19:51] but again, universe [19:51] that one is handy [19:51] jdstrand: i modeled the name on ubuntu-vm-builder [19:51] :) [19:52] jdstrand: ubuntu-vm-host ? [19:53] jdstrand: and ubuntu-vm-host-extras (being it's universe cousin with more fun stuff like ubuntu-vm-builder) ? [19:53] kirkland: maybe it's cause I mentioned it the other day, but I like ubuntu-virt [19:53] kirkland: oh I like the -extras idea [19:53] jdstrand: ubuntu-virt and ubuntu-virt-extras ? [19:53] kirkland: I do like that, but I'm not sure I'm impartial [19:53] jdstrand: hmm, i think the host bit is important, though, perhaps... this is really meant to be the machine that hosts vm's [19:53] I might just be in a rut :) [19:54] jdstrand: is ubuntu-virt-host too wordy? [19:54] kirkland: well, it will serve vms, it'll run vms, it'll create vms-- so a more general name might be good [19:55] jdstrand: my concern is that ubuntu-virt to me implies just kvm [19:55] jdstrand: as you said, serve/run/create [19:55] hmm, not to me *shrug* [19:55] kirkland: let's get others to weigh in [19:55] jdstrand: should we move this to #ubuntu-virt ? [19:55] kirkland: I really like the -extras idea though [19:56] jdstrand: i was thinking this was a server item [19:56] jdstrand: thanks! i think it'll work nicely [19:57] kirkland: hold on [19:58] jdstrand: ? [20:01] kirkland: I think you may want to Depends on python-virtinst. While virt-manager will pull that in, in case virt-manager is removed, python-virtinst is very handy [20:01] jdstrand: good advice [20:02] jdstrand: i'm also hoping that we can do some debconfery that will setup group membership appropriately to. perhaps pose a question, "which of these users do you want to add to kvm? to libvirtd?" explaining what each will do [20:02] i understand soren's concern about doing that with the other packages [20:02] but if this meta package is intended to ease install pain, i think this would be a good place to put it [20:02] ie, not in the atomic packages [20:03] but in this meta package [20:04] wow atomic package that sounds dangerous [20:06] kirkland: I think that sounds reasonable. I have seen at least one package that did something similar. you may want more of soren's opinion on that-- as you know, he is not a huge fan of packages updating groups [20:06] I can't remember what that package is though... [20:08] kirkland: there is a potential problem though, which is that this package is adding users to a group supplied by another package. what happens to the groups when the packages are removed? [20:09] kirkland: that may very well be solved in delgroup or similar, but I haven't done it [20:09] just something to think about === bmckee is now known as furicle === slicslak_ is now known as slicslak [20:58] jdstrand: good ideas [21:29] kirkland, thx [21:29] oops, wrong channel [21:33] sommer: re: https://wiki.ubuntu.com/IntrepidServerGuide - last I heard they recommended this for a spec template: https://wiki.ubuntu.com/SpecSpec [21:34] but I don't know why that wasn''t named SpecTemplate so it would show up as an option when creating specs - see e.g. https://wiki.ubuntu.com/HelpOnPageCreation [21:44] nealmcb: bonus, that's what I was looking for. thanks [21:44] :-) [21:45] no response from the #ubuntu-doc folks about moving it yet. [21:47] ya, it may take a while before someone is around with rights to move the page [21:48] I tell you guys some people are really sick and think they can emulate what they think some of you guy well say :( [21:53] lucent [22:37] * delcoyote zztop [22:38] how can i have grub install the base config files (menu.lst and the stages) but not install the bootloader into the MBR? [23:07] Hello. I am trying to convert an old isakmpd.conf setting to racoon.conf but I haven't been able to make it work. Anyone have any experience with both? [23:14] for some reason, my users home directory permissions are owned by not there name, but there ID. The group is correct. Any ideas why this is? [23:26] cyris|: The filesystem always stores ownership as the id's. If ls shows it as these id's instead of names, your nss settings are probably b0rken. [23:26] ouch [23:26] well, some of the users :S [23:26] that sucks that this critical bug with xen got into ubuntu server LTS [23:27] Oh, "this critical bug"? [23:27] dang, and i was hoping to convince management that we could use 8.04 too [23:27] yes [23:27] this one: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/218126 [23:27] Launchpad bug 218126 in linux "xen guest kernel bug: 'kernel BUG at /build/buildd/linux-2.6.24/debian/build/custom-source-xen/drivers/xen/netfront/netfront.c:785'" [Medium,In progress] [23:27] basically, DomUs kernel panic when loading the network driver [23:29] telexicon: There's a fix in hardy-proposed. [23:29] yea [23:29] i understand [23:29] but its broken on the ISO [23:29] You presence on IRC suggests that you have internet access.. [23:30] ... [23:30] this is for server deployments, its not like im testing all this on my own workstation [23:31] Well, I don't know how you interact with your servers, but I'm guessing there must be some sort of means for you to move data from your workstation to your servers? [23:31] yeah.. ssh [23:33] the Dom0 is rhel 5 [23:33] so of course that works [23:33] Yeah. Only Ubuntu can have bugs. [23:34] i didnt say that [23:34] but apparently only rhel can have QA [23:35] * soren goes back to being useful [23:35] its just frustrating because i want linux to do well, i want ubuntu to do well [23:36] but when i get people to try ubuntu, a lot of the apps are buggy or crash often, and that makes me look bad [23:36] telexicon: Dude, bugs happen, we fix them. We're not going to re-roll CDs on every bug-fix, that's why -security and -updates exist. [23:37] ok, i understand [23:37] telexicon: RHEL also releases bugfixes after they press CDs without shrinkwrapping a whole new set every week. Honest. [23:38] hmm, that kernel from proposed still doesnt work, its not the same error.. it just crashes the domain and doesnt tell me why now [23:38] + [23:38] er.. s/\+// [23:43] telexicon: Did you try Takahito's pre-compiled kernels from the bug log, rather than the one in -proposed? [23:43] i haven't yet, but i plan on doing that [23:43] telexicon: AIUI, the one in -proposed is still partially broken, and was missing a commit. [23:43] ah ok, cause it looks like the same bug still according to the kernel anic [23:43] panic* [23:44] (Hence why it's in proposed, and not updates yet...) [23:44] should i report that i still get the panic? [23:44] Can do, but the bug log already notes that the bug was only half-fixed. [23:44] "Tim, the current fix in the hardy git tree by Chuck is not complete. [23:44] This still causes the kernel BUG() in some environments." [23:44] "Drat. I'll pick this up on the next upload cycle, probably next week." - Time [23:44] oh ok [23:44] s/Time/Tim/ [23:45] oh i just saw the last message and thought they did it early [23:46] Well, if Takahito's kernel works and the one in proposed doesn't, it won't HURT to add another comment to the bug to clarify that. [23:46] If not for the Stable Release Team, then at least for other users. [23:46] ok [23:46] no there was a bug in the patch, the patch to my patch was applied today you can check it out of the git tree if you want [23:50] ok, Takahito's kernel works [23:54] patch to patch to patch to... :-) [23:54] ...infinity ;-) [23:55] ok the kernel boots, but its hanging on the initscripts... im not having any luck today.. :-( [23:55] hanging right after: * Reloading OpenBSD Secure Shell server's configuration sshd