[00:06] guys do you know any usb wireless devices i cant go wrong with, with ubuntu-server [00:13] Could someone give me the name of the command line version of ubiquity? I know i've seen it meantaioned on the ubuntu-server list, but I cant find anything about it on the net [00:14] Kamping_Kaiser: there isn't one. [00:14] Kamping_Kaiser: however you may be thinking of debian-installer (d-i), which is completely different software that is both more powerful and more flexible. [00:14] twb, i'm pretty sure there is. it wasnt an ubuntu project, but was meantioned on the list. [00:14] and no, its not d-i [00:15] OK, perhaps I am not possessing all the facts. [00:16] I'll lurk a while, and if no one knows, I'll have to grave dig my maildir :l === Deevz_ is now known as Deevz === mib_zau58pfd is now known as tommy_nmw [04:07] hi [04:07] let me ask about ubuntu [04:07] hello [04:08] who knows how to set up active directory like Ubuntu domain controller ? [04:25] tommy_nmw: that would be OpenLDAP and Samba, I guess [04:25] I don't know much about it [04:29] so who knows well? [04:29] good evening all [04:41] yes [04:58] I want sshd to check the ssh_known_hosts file for all connections and no the .ssh/known_hosts file that is created for each user... === llragsll is now known as rags [05:32] can I have two gateways configured...with 2 different metrics?? I want it to switch whenever the other one drops..Is this possible? [05:37] yes, and theres tools packaged for that purpose [05:37] cant give personal experiance though === Noah0504|away is now known as Noah0504 [05:51] Anyone around? [07:22] <_ruben> hmm .. im starting to experience more and more "issues" with cronjobs lately .. some work as expected, others down run at all, or dont do anything .. guess it's time to do some more investigating [07:24] _ruben: have you tried to start those jobs manually? [07:24] <_ruben> manually they work fine [07:25] <_ruben> could be an $ENV problem i guess [07:25] maybe, try exporting needed variables in the job script [07:26] also, did you run those jobs as the user specified in the crontab or as yourself? [07:30] <_ruben> both as root, which does have some effects on the $ENV (sudo versus cronjob) [07:34] _ruben: and you use full paths in the cronjobs? [07:39] Hi, All, [07:39] In Ubuntu is .HTaccess access enabled by default? The release I am using is 8.04 Hardy. Please [07:39] <_ruben> rst-uanic: yes [07:40] Odd, because I can't install Drupal from source for some reason [07:40] _ruben: and what $ENV variables do you think you use? [07:40] <_ruben> Alex_21: the allowoverride setting configures what stuff you can put in .htaccess sites [07:40] Does anyone have experiance with instaling Drupal from source? [07:40] <_ruben> rst-uanic: none specifically .. i havent researched it very much yet .. was about to do so [07:53] Can I safely remove console kit somehow? It wants to remove dbus as well [07:53] Why do I need that stuff on a server that will never do gnome sessions? [07:55] <_ruben> dbus depends on consolekit, for whatever reason [08:20] <_ruben> it was a $PATH issue .. my cronjob calls /sbin/ipvsadm .. which turns out to be a shell script which then calls ipvsadm-1.24 and apparently /sbin/ isnt in the $PATH for (root) cronjobs [08:42] _ruben: I know dbus depends on it, do I need dbus? [08:43] <_ruben> Skaag: how should I know? :) [08:44] is it required for proper functioning of an ubuntu server? [08:44] ;-) [08:44] <_ruben> Skaag: I dont know what apps you got installed which might need it [08:44] Apache, MySQL... [08:44] <_ruben> my servers dont have dbus [08:44] ok great [08:44] I assume if an app will need dbus it will say so [08:45] I was just afraid it's required for the basic operation of the OS itself [08:45] <_ruben> it should yeah [08:46] ok removed that stuff... [08:46] it's just that sometimes console kit takes 100% CPU for no reason [08:46] and I noticed it's a known bug [08:46] thanks :) [08:47] <_ruben> nice [08:49] _ruben: is it working now? :) [08:49] <_ruben> rst-uanic: this specific one, yes .. i added a "PATH=/sbin:$PATH" to my script :) [08:50] that's good [08:51] New bug: #345470 in bind9 (main) "Please sync bind9 1:9.5.1.dfsg.P1-3 (main) from Debian unstable (main)." [Wishlist,Fix released] https://launchpad.net/bugs/345470 [08:52] <_ruben> i wonder if i should file a bug wrt the ipvsadm behaviour [08:53] _ruben: my $PATH has /sbin [08:54] <_ruben> rst-uanic: but also in a cronjob? [08:54] don't know [08:56] I think cron scripts declare their own parameters or just use full paths :) [08:59] <_ruben> rst-uanic: well .. i did use a full path to ipvsadm, but that doesnt work, because /sbin/ipvsadm is a wrapper script, which doesnt use full pathts [09:02] _ruben: maybe :) [09:05] <_ruben> filed a bug for completeness sake .. at the very least it is now "documented" behaviour :) [09:06] :) [09:07] rst-uanic: Crontabs can have a PATH declared at the top. [09:09] infinity: yes they can [09:10] 02:56 < rst-uanic> I think cron scripts declare their own parameters or just use full paths :) [09:11] My point is that the crontab itself (not what you run from it) can have PATH and SHELL and other such things declared before the periodic entries. [09:11] man 5 crontab [09:12] infinity: ok, and my point is that it is better to use full paths and have no problems [09:12] Generally not... [09:13] infinity: why not [09:13] ? [09:13] Scripts that use full paths (and worse, compiled code with full paths compiled in) aren't very resilient to the whole reason the UNIX filesystem hierarchy exists. [09:14] /usr/local/bin:/usr/bin:/bin <-- That's arranged like that for a reason. So you can override what's in /usr/bin with /usr/local/bin ... And if you don't want that behaviour, you remove local from your path, not recompile or hardcode. [09:17] infinity: And if I want to write a small scripts for my system? I should think of how this will work on other systems too? [09:18] rst-uanic: Why would you bother hardcoding paths on your own system? You know what you have installed, surely? [09:19] rst-uanic: But even small projects, I tend to write to the same standards as something I'd write for public release, based on the realisation that a good 75% of my "small projects" end up deployed to dozens of machines, at the least, and publically released to thousands/millions, at the worst. [09:20] infinity: I am not saying that declaring $PATH is wrong. I saying that if I want to write some quick script using full path is quite ok. [09:20] rst-uanic: Well, sure, whatever you want to do is "okay for you", by definition. It's your system. I'm just arguing it's not actually "best practice" to hardcode full paths to binaries. [09:21] What if we move something from /bin to /usr/bin or from /usr/sbin to /usr/bin between releases, and your script breaks because of it? [09:21] No hardcoded binary locations, no problem. [09:21] infinity: for sure :) [09:24] <_ruben> good point [09:25] infinity: thanks for your explanations :) === cjwatson_ is now known as cjwatson === CaTeYe is now known as cateye [11:06] New bug: #347206 in bacula (universe) "bacula in dapper (2.2.8) catalog upgrade from hardy (1.3.6)" [Undecided,New] https://launchpad.net/bugs/347206 [12:25] I'm trying to mount my back-up disk to upload on to my server but it can't mount it using "sudo mount -t hfsplus /dev/sdf1" it kicks back saying "wrong fs type, bad option, bad superblock on dev/sdf1. Any help? [12:30] sparky_: Anything in dmesg? [12:31] [ 511.957477] hfs: unable to find HFS+ superblock [12:31] Well, there you go. [12:32] i don't know anything about superblock.... [12:33] The superblock is where the filesystem puts information about itself. [12:33] It's created by mkfs. [12:33] is there a way to fix without lossing my data [12:34] oh so just run the mkfs and it will create the superblock? [12:34] Nono! [12:34] i dont think so [12:34] no! [12:34] sparky_: No! [12:34] ok [12:34] mkfs is what you use to *create* the filesystem to begin with. [12:35] sparky_: are you 100% sure that your device name is right ? [12:35] So if you run it on a block device that already has a filesystem, you'll delete the current contents. [12:35] yes, it is the only one that is 1Tb in size [12:35] sparky_: Try "sudo vol_id /dev/sdf1" [12:35] ...and tell me what it says. [12:37] http://www.pastebin.ca/1369065 [12:38] Why do you think it's an hfs+ filesystem? [12:39] I thought that is what i created it as on my mac, but it looks like its fat32 correct? [12:40] Yes. [12:41] so i would us -t fat32 [12:41] use* [12:41] Just mount it. [12:43] it's not showing anything in the dir [12:54] sparky_: What did you expect to see? Did it mount correctly? [12:54] hello [12:54] i expected to see all my back-up'd files over 600 Gb worth [12:55] ive got a spare server laying around and im thinking of putting ubuntu server on there, im curious to know what i could use a box which has 32gb HDD space, P4 1.66 and 512mb ram for? im currently running a mail server, web server, file server and mssql. but this is all windows based so i couldnt transfer it to linux. any ideas? [12:59] ivoks, hi thanx for helping me last night i got working it looks decent [13:04] Giddion: Not sure. Perhaps you could make it a mail, web, file and mysql server? :) [13:06] soren: have you seend apache directory studio? [13:06] seen [13:07] ivoks: Nope. [13:07] soren: it's ldap browser [13:07] soren: it even has scheme editor and ldif editor [13:08] it's a perfect tool for managing ldap [13:08] the only bad thing - it's for eclipse [13:08] * soren really wishes we didn't have to deal with JAva. [13:09] soren: it's a workstation-side app [13:09] soren: on server, we wouldn't have java [13:09] ivoks: Right, right, I was just looking at the other Apache Directory stuff. [13:09] soren: ah, apache directory - ldap implenetation [13:10] grr... keyboard [13:10] hey, they have triggers :) [13:11] ahasenack: I'm almost sure that doesn't outweigh the Java thing. [13:11] sommer: correct :) [13:30] soren, thx for the help I got it going [13:31] Cool. [13:36] New bug: #347098 in samba (main) "Samba crashes Windows XP Home" [Undecided,New] https://launchpad.net/bugs/347098 [13:38] g'morning [13:40] we've just sent a server off to a data centre, however we've ran into quite a problem that was not noticed before we sent it off. The partition that mounts as / is 250mb in size! Is there a way to somehow move the data that is current on the / partition somewhere else, re-mount that temporarely, increase the size of the partition, then move it back? [13:42] you could create new partition [13:42] of the same size [13:42] dd data to it [13:43] fix boot loader and fstab to boot from the other partition [13:43] fix the first partition [13:43] copy data back [13:43] fix boot and fstab and reboot [13:44] of course, be carefull and don't come looking for me if it doesn't work :D [13:44] :P [13:46] AlexC_: Is it the only partition on the system? [13:47] ok, so we've 5 partitions - one each for /home /tmp /usr /var and /. Trouble is we have no more space left to make a new partition, so I'm going to have to kind of do this 'on-the-fly' /home is 213GB, so maybe I could move all partition data into there and only mount that, then delete all others, fix sizes, copy data back over? [13:47] AlexC_: Can I see you partition layout, please? [13:47] well, then copy everything to /home [13:47] soren, sure [13:48] oh LVM [13:48] why we love the [13:48] soren, http://paste2.org/p/169698 [13:48] thee* [13:48] AlexC_: Where's sda1 and sda2? [13:49] and sda4 [13:49] swap? [13:49] sda4 would be extended [13:49] when i create a new user in ubuntu server auto complete and bash history doesn't seem to work out of the box as opposed to the first created user [13:49] and sda7 [13:49] giovani3: There doesn't have to be a sda4. [13:49] soren, they do exist, just not mounted. They are some recovery partitions that ideally we could get rid of (I want to), though boss wants them to be kept there [13:49] anything special i should look at in /etc/profile or something like that [13:49] why was this not LVMed? [13:50] AlexC_: That's why I wanted to see your partition layout. The output of fdisk -l or parted print or something. [13:50] soren, ok [13:50] well, having / on 260MB partition in this case isn't that bad [13:50] when will people learn to use single big partition for system, and then big big partition for service data :) [13:50] I just have 10G / and huge /a ;-) [13:50] soren, http://paste2.org/p/169702 [13:50] /usr is separate, /var is separate... [13:50] domas: Hopefully never :) [13:51] ivoks, it sure is, as I can't do any updates to the server due to it running out of disk space [13:51] i guess kernel is creating problems [13:52] AlexC_: Shame. I was hoping we could just extend your root partition. [13:52] having boot bind-mounted to directory in /var would help :) [13:53] soren, same here. If I was to delete sda1 and 2, that would be possible? [13:53] though they are very small, but it would give us something to play around with [13:53] AlexC_: Technically, yes. I wouldn't, though. [13:53] AlexC_: if i were you, i would delete sda1, sda2, sad3 and sda5 [13:53] AlexC_: sda2 is several GB. [13:53] soren: why? :) [13:54] AlexC_: and then create / on top of all of them [13:54] i'm not sure that's possible, since three of them are primary and one extended [13:54] domas: Why on Earth would you do something like that? [13:54] sda1 is marked type dell utility, sda2 is fat32, so i'm guessing server's recovery partition? [13:55] oh, hmm, was scrolled up [13:55] ignore me [13:55] Deeps, correct [13:55] soren: why on earth would you constrain yourself in /var, /tmp, etc ;-) [13:55] though I see no need for them (recovery partitions) [13:55] soren: i understand ubuntu has specific philosophy (like storing essential database files in /var/run ;-)) [13:55] right... [13:55] that's very stupid :) [13:55] we should fix that [13:56] domas: Eh? [13:56] I can give you 10 things that are idiotic about mysql package on ubuntu [13:56] I filed one of them, and nobody even looked at the bug :) [13:56] domas: pid in /var/lib/mysql? :) [13:56] is there a reason you can't just dump all the data on a drive, and start over? [13:56] ivoks: binlogs in /var/run [13:56] domas: that's right [13:56] ivoks: what is right in that? [13:57] giovani3, server is physically few hundred miles away from us now, though with the RAC we have it *may* be possible, however I would not like to do this [13:57] anyway, mysql writable ~mysql is as bad =) [13:57] nothing, i ack on that bug [13:57] "CHECK TABLES" at restart is _extremely_ annoying on terabyte tables, you know.. ;-) [13:57] well, even on 100GB databases it is quite bad. ;-) [13:58] soren: see, people put arbitrary limits where they don't need them, and don't have proper setup for anything else [13:58] soren, what are the technical reasons for not deleting sda2 and extending sda3 into that space? [13:58] AlexC_: your datacenter doesn't offer kvm? [13:58] you could ask to borrow a usb drive, backup your stuff [13:58] domas: could you summarize all those pitfalls? [13:58] giovani3, I don't know tbh [13:58] domas: so that we can fix them all [13:58] then ask them to put some install media in the cd drive, and start over with LVM! [13:58] AlexC_: well I'd be asking if I were you [13:58] ivoks: as long as someone will listen, sure [13:58] domas: i will listen [13:59] ivoks: lately I find out that people who pay me listen to me way more than whose who don't ;-)) [13:59] ivoks: ok! [13:59] AlexC_: The fact that sda2 is located *before* sda3. [13:59] You can't extend backwards. [13:59] ah [14:00] domas: The problem isn't that people contrain themselves. The problem is that it's too tedious to move stuff around. [14:00] domas: if you file a bug on LP, add me (ivoks) as surbscribed [14:00] domas: or, if you'd preffere to send an email, ivoks at ubuntu com [14:00] ivoks: oki [14:01] soren, would formatting sda2, then copying all data from sda3 to 2, then delete 3, extend 2 into 3 work? [14:01] ivoks: e.g. https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.0/+bug/293258 - is there for quite some time already [14:01] Launchpad bug 293258 in mysql-dfsg-5.0 "mysql user has home directory writable by mysqld" [Undecided,New] [14:01] AlexC_: Yes. [14:02] soren, is that a yes, it is a good idea, or a technically possible yes - but shouldn't really, yes? [14:02] ivoks: it isn't critical, but quite bad practice (used by many.. ;-) [14:02] i know [14:02] AlexC_: Probably a good idea, yes. === scfh is now known as scfh_ [14:02] i have to fix conf on couple of my installs [14:02] and i forgot to fix all that [14:03] so, once you have a list, we'll fix all of them in one go [14:03] oki! [14:03] soren, ok cool, could dd handle the difference in partition sizes if I was to do a direct copy of sda3 to sda2? [14:03] puts some pressure on me now! [14:03] or, should I format sda2, resize that to the same as sda3 - then copy, then extend? [14:03] bbl === scfh_ is now known as scfh [14:04] ivoks: there're also few bugs, mysqld_safe loops at 100% after mysqld restart, etc [14:04] AlexC_: Sort of. [14:04] AlexC_: It won't break. :) [14:04] domas: i've seen that one, too :/ [14:04] but ... ? :P [14:04] ivoks: I just really have to sit down and review that, maybe should ask my managers to approve this to do that on my payroll [14:06] hehe, I have separate big /tmp only on boxes that have LVM snapshot roundrobin configured [14:06] does 50G /tmp sound ok? [14:07] ivoks: kudos though for having apparmor profile [14:07] ivoks: I'm giving 'mysql security' talk soon at MySQL Conference, and it will be one of hilights in it =) [14:07] AlexC_: Sorry, I was on the phone.. [14:07] soren, no worries [14:08] AlexC_: Just dd it over. The filesystem will still be those 200-300 MB, so once you've joined the partitions, you should resize2fs it. [14:08] ...as that will extend it to be the size of the underlying block device. [14:09] domas: well, mysql's apparmor isn't my work :) [14:10] soren, ok, so: 1) Format sda2, 2) dd sda3 to sda2, 3) delete sda3, 4) extend sda2 5) resize2fs ? [14:10] AlexC_: don't bother formatting sda2. [14:11] oh really? [14:11] would I not then end up with half of sda3, and half of sda2 on the sda2 partition? [14:11] dd'ing sda3 onto it will overwrite that anyway. [14:11] You would anyway. [14:11] bbl [14:11] mkfs doesn't go through every bit of the block device zeroing it out. [14:11] It just puts a superblock there. [14:11] ahh ok [14:11] ivoks: hehe, now that hardy will fix my apparmor bug soonish, I'll be able to deploy it widely \o/ [14:12] soren, ok, I'll start on it =) This could be fun, since if I can't boot into the server I'm fecked =3 [14:12] AlexC_: Be careful. Make sure grub know where to look for stuff. [14:12] New bug: #293258 in mysql-dfsg-5.0 (main) "mysql user has home directory writable by mysqld" [Undecided,New] https://launchpad.net/bugs/293258 [14:12] Or lilo or whatever you're using. [14:13] soren, yes, indeed. Just to confirm: 'dd if=/dev/sda3 of=/dev/sda2' is correct? [14:13] That looks about right, yes. [14:13] ok, cool - thanks for all this btw [14:14] and it is ok to do while sda3 is mounted? [14:16] I would probably remount it readonly. [14:17] ...make sure you have a root terminal open ready to remount it rw. [14:21] soren, hum, and the server would still boot up ready for me to SSH in if I was to edit fstab, change to readonly, and restart server? [14:22] Oh, you can remount while running. [14:22] sudo mount -o remount,ro / [14:22] mm, interesting =) [14:24] soren, I'm so hesitant to do this, as it's a long trip to London if I mess up. I am currently SSHed in, so I remount, dd, then do same command once finished (though changing 'ro' to 'rw') ? [14:25] if you've not got time just say and I'll poke someone else [14:26] AlexC_: Again: Make sure you've got a root prompt somewhere else, ready to remount rw. [14:27] ..in case something goes bad. [14:27] soren, I'm not quite sure I understand you, I can only login via SSH - would that do? [14:28] have another ssh session open at a root prompt [14:28] Open up another terminal, ssh into the server, "sudo su -". [14:28] ok [14:28] Which boot loader are you using? [14:29] grub [14:30] Alright. Tell grub that your root partition is /dev/sda2 [14:30] ...since sda2 and sda3 will have identical UUID's, so I'm not sure which one will be chosen. [14:30] ok, I shall do that now. One thing I have just thought, we'll need to make sda2 bootable, or will dd copy that data across? [14:31] dd won't copy it across, no. [14:31] ok [14:31] It's a flag in the partition table. [14:31] Not in the filesystem superblock. [14:32] ok that makes sense, and is something we'll need to do once dd has completed then [14:34] ok, I did the remount - though 'mount' says it is still rw [14:34] mount looks at /etc/mtab [14:34] ahh ok [14:34] time to dd [14:37] right, dd finished [14:38] mount / back as rw, mount sda2 just to see if data has been copied correctly is next step? [14:41] ok that appears to have worked, though I am a bit concerned fdisk still says it is a FAT32 partition - is that because it just hasn't updated, or has everything been copied to fat32 (and more importantly, will that be 'ok')? [14:41] fdisk doesn't know about the contents of partitins. [14:42] It just sees that the partition's type is that. You can just change it to "Linux". [14:42] (type 83) [14:43] ah ok, so that is just a ... 'label'/name for it? [14:43] Sort o, yes. === cateye is now known as CaTeYe [14:46] soren, is it worth changing it to 83? Also, how do I make this partition bootable? Btw I shall send you a donation once I have done all this, as your help is extremely appreciated [14:46] AlexC_: I would probably change it to avoid confusion. [14:47] I don't know if the bootable flag really makes any difference, but it's something you do from fdisk as well. [14:47] I thought bootable was quite essential, other wise grub couldn't boot it? [14:48] I doubt grub cares, to be honest, but seeing as there's very little margin for error, you should probably set it :) [14:52] ok, awesome - that's done [14:53] technically I should now be able to reboot and everything *should* work, on the new partition? Then after that I simply delete sda3 and increase sda2 size? [15:00] That's the idea, yes. [15:30] anyone here familiar with openerp? trying to run the server in jaunty and it fails. comp [15:30] complains about xpath [15:31] ERROR: Import xpath module [15:31] ERROR: Try to install the old python-xml package [15:31] ScottK: ^ any ideas? [15:31] install python-xml package? [15:31] heh [15:31] the instructions are a clue [15:31] ivoks: its installed, obviously. [15:31] jaunty is also ... not stable [15:31] giovani3: Im not a n00b :P [15:32] rgreening: file a bug report? [15:32] rgreening: By design python-xml is not in the default path. [15:32] giovani3: I'd rather he fix it. [15:32] :) [15:32] ScottK: and I am capable, with a hint... [15:32] as you know [15:33] rgreening: I don't recall what you have to add to the path to see the old python-xml stuff, but that's what's needed. The python-xml package should yield sufficient clues. [15:33] So ScottK, does that mean, I need to mod the openerp server script to update the PYTHONPATH? [15:33] /usr/share/pyshared/oldxml/ [15:33] rgreening: I think so. As ivoks says. [15:33] just ignore me :) [15:33] cool. [15:34] ScottK: I'll take a look [15:34] thanks ivoks [15:34] dpkg -L python-xml might help [15:34] Great. IIRC it's in Universe so you can upload it. [15:34] i'm not sure my answer is correct [15:34] cool [15:34] np, I'll look around see if I can work it out. [15:36] soren, still alive? It's booted up into sda2 =) So far so good, what did you say I needed to do to make sda2 as big as I needed? [15:36] just use fdisk to change it? (well, mount sda2 as ro first I would assume?) [15:37] AlexC_: No need. [15:37] AlexC_: Just remove sda2 and sda3, recreate sda2 with the start sector of the old sda2 and end sector of the old sector3. [15:37] Err... s/sector3/sda/3/g [15:38] soren, I can't remove both, if I do that I loose all data on them. Currently sda2 is the copy of sda3 [15:38] Yes, you can. [15:38] ScottK: prob this path... /usr/share/pyshared/oldxml [15:38] Removing the partition does not touch the data on it. [15:38] AlexC_: ^ [15:39] rgreening: Since that's the one ivoks suggested, I'd tend to think yes. [15:39] hmm. tried exporting it. no go.. [15:39] soren, ok, that makes sense. And I do this all with fdisk, right? [15:40] AlexC_: Yes. [15:43] ivoks: heh, I see intrepid has a bit better scripts than hardy :) [15:43] domas: still, we should fix it in hardy too [15:43] domas: For what? [15:43] mysql [15:46] New bug: #347361 in net-snmp (main) "libsnmp-python segmentation fault" [Undecided,New] https://launchpad.net/bugs/347361 [15:48] soren, ok, that is done. I know have '/dev/sda2 * 12 307 2377620 83 Linux'. However, 'df -h' is still showing /dev/sda2 as 260mb, what is the next step after this? [15:50] rgreening: sys.path.append('/usr/share/pyshared/oldxml/_xmlplus') will get you started, but then import xpath dies in progress leading to more clues. [15:51] ScottK: yeah. They import boolean (which is part of python 2.6.. and other mess...) [15:51] So I think that leads to more work worth doing. [15:52] hehe [15:52] rgreening: It's actually xpath that imports boolean. [15:52] I wanted to demo this software to someone today... no go for Jaunty... [15:52] Intrepid will be similar probably as python-xml is out of the path there too. [15:54] ivoks: damn you people, quite a few problems have been fixed in intrepid :) [15:54] ivoks: I was looking at all init scripts and saw "oh, they changed this, they changed that" :) [15:55] ivoks: I'm tempted to set up PPA for hardy with intrepid packages [15:55] ScottK: right from the python intrepreter, importing xpath is broken, so it leads me to believe there's either some voodoo needed or the oldxml stuff is just broken.. [15:56] I would tend to suspect an incomplete python-xml update for Python 2.6. [15:57] am I right in thinking, resize2fs /dev/sda2 will resize the filesystem to take up all the partition [15:58] oh my, whats a rats nest i've uncovered.... [15:58] ScottK: Bug 337759 [15:58] Launchpad bug 337759 in openerp-server "openerp-server depends on python-xml and is therefore uninstallable ATM" [Undecided,New] https://launchpad.net/bugs/337759 [15:59] * ScottK was looking for In Progress -> rgreening.... [15:59] ScottK: its an existing bug report [16:00] Yes, and? [16:00] g'bai [16:00] rgreening: You're allowed to fix ones you didn't report. [16:00] I know, I was just indicating I found an open one to work against :) [16:02] ScottK: seems to me, modifying the oldxml to not load boolean may be whats necessary. [16:03] rgreening: From what little I know about this, that seems likely. [16:03] It's dead upstream, so don't feel bad about patching it. [16:03] though what breaks outside of that, is unknown [16:03] ok [16:03] I'll give that a shot [16:09] ScottK: I expect a big patch to remove boolean may fix this. It's in 44 places in the package. [16:09] That's not so bad. [16:09] :) just time consuming.. but hopefully this is all thats required to fix openerp [16:23] hello everyone. noob question: i need to add php-imap support to a current ubuntu server setup. if i run "sudo apt-get install php5-imap" will that leave the current setup intact and just add on imap? or do i need to run that command with all the modules/addons i currently have enabled? [16:24] broheem: it will install the module, it doesn't remove your other modules [16:24] giovani3: perfect, thank you! i wasn't sure if that was replacing php5 with the new module or just adding it on. that answer my question. take care. [16:25] broheem: no problem -- that goes for all modules in debian/ubuntu -- in some cases, though, there will be multiple packages that replace one another such as xxx-mysql versus xxx-pgsql [16:25] because only one kind of support is built in at a time, for example [16:26] giovani3: ah, yes, that makes sense. thanks for the info. much appreciated! [16:26] np [16:27] domas: sorry, i wasn't here [16:27] domas: if you are really eagar to do it, of course, you can set up ppa [16:27] domas: we could then just pull the diff and review it [16:28] ivoks: nah, I mean, I'd just pull package from intrepid and make it compiled for hardy [16:28] ivoks: intrepid resolves most of bad stuff [16:29] hehe ok [16:29] thats good [16:29] except that we run mostly LTS :) [16:29] well, LTS isn't sealed [16:29] fixes are always welcome === hessml|away is now known as hessml|away|away === hessml|away|away is now known as hessml|away [16:53] soren: did you push your opennebula modifications to my iso_testing scripts somewhere? === MohammadBoozary is now known as Mohammad[B] [17:20] mathiaz: No, I didn't, sorry. [17:34] ScottK: I think I figured out how to make the rdepend on python-xml for openerp-server go away :) [17:35] rgreening: That's an even better solution for openerp-server. [17:35] :) [17:35] 1 file to fix [17:36] a couple of small changes to osv/orm.py ScottK [17:36] Ideally we want python-xml to go away .... [17:36] and it then uses internal python xml (xpathEval) [17:37] Perfect. [17:37] Im testing here. Will let you know how it all goes. [17:37] Hello. I am setting up a server for a number of computers. The server will hand out an IP address however I am having trouble in getting it to accept the server as a router to the internet. Can anyone help me? [17:44] MHS_: what do you mean 'accept the server as a router' ? === apw is now known as cafetiere [17:45] The computers can't access the internet through the server [17:48] MHS_: is ip forwarding enabled? check cat /proc/sys/net/ipv4/ip_forward [17:49] I think you meant type in that to the terminal. If you did then after I typed it in it said 0 [17:50] I also went directly to the file and it also shows nothing [17:50] MHS_: then that means that ip forwarding isn't enabled [17:50] so your server isn't acting as a router [17:51] How can I change this? [17:51] did you ever try to set it up as a router? [17:51] No. [17:51] hi [17:51] ok -- it's not the most simple of tasks [17:52] i have problem with nfs, pam and kerberos [17:52] I wouldn't advise it if you don't feel pretty comfortable with linux [17:52] when i ount the nfs volume i can't login via pam kerberos [17:52] I'm comfortable enough that I believe I can at least try. If you could possibly help me that is. [17:52] MHS_: https://help.ubuntu.com/community/Router [17:53] that's ONE guide -- there are many [17:53] I don't know if it's complete [17:53] Thank you [17:53] have anybody solutions for this problem [17:53] google is your friend [17:53] i think nfs overwrite the krb5cc_0 [17:53] Thank you for all the help. I know. An I've looked but I just couldn't find the right wording I suppose. === cafetiere is now known as apw [18:50] ScottK: Im having a diff time getting postgres properly setup to test out the openerp changes... [18:51] * ScottK hasn't set up postgres in a very long time. [18:51] * ScottK would just say ask here .... [18:52] I have set up in the past... but never had much difficulty... [18:52] I think its openerp related. [19:18] hello all [19:18] how do i remove the login warranty message for each user? [19:20] <_ruben> edit /etc/motd [19:20] err [19:21] edit /etc/motd.tail [19:21] edit /dev/ivoks [19:21] :) [19:21] <_ruben> oh .. right .. forgot about that one :p [19:28] thanks [19:28] dont have a /dev/ivoks [19:30] Hans67521: 'twas a joke, disregard [19:42] New bug: #347503 in samba (main) "Samba/Winbind: INTERNAL ERROR: Signal 11" [Undecided,New] https://launchpad.net/bugs/347503 [19:55] Hi all! [20:02] my system is having trouble booting [20:02] it seems to hang after "loading hardware drivers.." [20:02] there is a message saying [8.8xxxxxx] header request #8 [20:03] then there is no hard drive activty, anyone know whats happened? [20:03] moz_: Try booting without 'quiet' at the bootloader [20:03] That will give you more output [20:04] [8.847701] header request #1 is actually the message [20:05] Jeeves_: how do I do that sorry? [20:05] moz_: When it's starting grub [20:05] hit escape [20:05] yup [20:05] and than you can edit the boot-options [20:05] someone figured that it is better to boot a server silent [20:08] can i run fetchmailconf from terminal without X [20:09] Hans67521: you can't ... fetchmailconf is a GUI [20:09] it just edits .fetchmailrc though, so you can do that manually [20:10] hey all [20:10] i have a fetchmailrc file for a user [20:10] how do i run it [20:10] or if i have 10 users how do i run it [20:10] Jeeves_: it seemed like when i changed that it loaded ok, i guess that is just coincidence it couldnt have fixed it ? [20:10] i am trying to do an install of ubuntu server on my server but after the install it takes me to a grub command line but i cant do anything [20:11] Hans67521: I don't know what you mean by "run it" -- the .fetchmailrc file is a preferences file [20:11] ok [20:11] i am using the server cd iso [20:11] but how to i run to to download mail for a users [20:11] user [20:14] hello [20:14] Hans67521: you run fetchmail, which uses the .fetchmailrc file for options [20:15] moz_: hmm, might be a coincidence [20:15] okay so i just downloaded and installed ubuntu server with LAMP..(its actually a turnkey Joomla appliance) and although Everything seems set up correctly in interfaces and resolve i cant resolve..any ideas? [20:15] only one way to find out :) [20:15] mmm.. i am lost [20:15] User777: cat /etc/resolv.conf [20:16] i a put in set daemon 60 in the users fetchmailrc file will it then automaticaly check mail every 1min? [20:16] cat /etc/resolve.conf list the 2 nameservers i put and they are correct [20:17] question - does the ubuntu - server run gui-less by default? [20:17] User777: And they are reachable? [20:17] oly562: Of course [20:17] why of course? [20:18] any one? [20:18] they are reachable [20:18] slops17: type enter [20:18] i did [20:18] why does the ubuntu server take so long to boot? [20:18] i am trying to do an install of ubuntu server on my server but after the install it takes me to a grub command line but i cant do anything [20:18] vs desktop and gui, actually the desktop and gui load faster than the gui-less server [20:19] is there a way to fix that? [20:19] oly562: That depends what the reason is [20:19] im speaking from a default install no real services added yet... [20:19] no reason, its default settings im concerned with [20:19] try to follow what im saying, it will make more sense [20:19] my wireless USB stick is disconnect very frequently, sometimes after 5 mins of use sometimes 20 mins, is it possible is it over heating, the device is still being recognized on my laptop that is running unbuntu-server, but it will not ping anything, could this be overheating [20:19] or with overheating should it not be recognized [20:20] Jeeves_ ? [20:20] if i replug it in, it will usually work again for a while [20:20] jeeves_ i am trying to do an install of ubuntu server on my server but after the install it takes me to a grub command line but i cant do anything [20:20] ok, i will try this again... the gnome ubuntu desktop loads 10x faster than the ubuntu - server os. why is this? note, i haven not loaded any services on the server, other than the defaults... and.... is there a way to fix this? if you know how to speed up the default server great, if not, i dont need to type extra kystrks. [20:21] Ok [20:21] so now there are three peope asking me 6 questions [20:21] im asking the room [20:21] User777: are you firewalling stuff> [20:21] im only asking one question as such [20:21] ? [20:22] i havent touched any firewall settings [20:22] User777: That's not the question [20:22] does anyone know fetchmail [20:22] i need help [20:22] oly562: Try finding out what needs time during booting [20:22] Hans67521: man fetchmailrc [20:22] ill wait for a few, then i will try back later, nothing i can find on docs tell me why it takes longer than a window 2000 server to boot up [20:22] oly562: you didnt install an tasksel like 'mailserver' or something? [20:22] no henkjan [20:23] i did not [20:23] although i would like to load services next [20:23] oly562: i remember sendmail taking a longtime to start if not configured correct [20:23] sorry, its address is behind a firewall yes, but other VM's with windows work fine out of the box [20:23] but if the server is going to take that long, i will simply use freebsd for my server needs [20:23] im trying out ubuntu this year [20:23] oly562: Sure. Blame Ubuntu for your cluelessnes [20:23] well debian i mean [20:23] other vm's on the same subnet [20:23] i mean^ [20:24] User777: Still not answering the question [20:24] im not running a freeradius server Jeeves. [20:24] oly562: in the grub menu you can edit the boot parameters [20:24] User777: Hint: sudo iptables -L -n -v [20:24] or apache ssl that i can automajically get to boot with out halting [20:24] yesh.... [20:24] oly562: remove the 'splash' line [20:24] dont assume anyone is cluess from a few lines in a chat room [20:24] henkjan: oh? you think that will work? [20:24] oly562: er,, remove the 'slash' word and boot [20:25] i dont see any splash, are you saying in grub? [20:25] henkjan: oly does not understand what he is doing [20:25] I give up :) [20:25] oly562: by removing splash your server wil show you whats starting up [20:25] Jeeves_: is a dick [20:25] ;) [20:25] oly562: Indeed! [20:25] hmmm [20:25] But at least i'm a smart dick! [20:25] chain input (policy accept 0 packets, 0 bytes) [20:25] err..sorry thats incomplete [20:25] where can i remove splash... [20:25] reboot the server [20:26] pkts bytes target prot opt in out source destination [20:26] it starts up in cmdline, there is no splash pic, gui, notta. i dont see where the splash line would be [20:26] in the grub boot menu you should be able to edit the parameters [20:26] !paste [20:26] pastebin is a service to post multiple-lined texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu.com (make sure you give us the URL for your paste - see also the channel topic) [20:26] is the same for FORWARD and OUTPUT [20:26] the server is not on at this time, im just asking for furture ref.. [20:26] User777: See !paste [20:26] oly562: if the servers is starting up in cli. on which line is it 'hanging' ? [20:26] ah, yes sorry, thanks [20:27] yah, i need to find that out... henkjan [20:27] its been a month since i messed with it [20:27] ill do that. and return later [20:27] oly562: okay [20:27] i sorta remember, something, but not definitive [20:27] henkjan: that's about the same I said before :) [20:27] oly562: and don't call jeeves a dick again!!!!! [20:27] henkjan: It seems to help when you repeat stuff I say :) [20:28] but one more thing, where would i remove this splash entry? in grub.conf? [20:28] oly562: #kopt in /boot/grub/menu.lst [20:28] i call'em as i see'em [20:28] ic.. menu.list got it [20:28] Jeeves_: its my authority! [20:28] henkjan: Ah! [20:28] Enlighten me! [20:29] oly562: No, menu.lst [20:29] one last little question, about wireless ;) oh and Jeeves how bout just in grub dir [20:29] Jeeves_: recoverd from an busy saterdayafternoon? ;) [20:29] henkjan: Almost :) [20:29] oly562: Try writing a phrase [20:29] here it is http://paste.ubuntu.com/136238/ [20:30] That might help people understand what you try to say [20:30] ok, can i manually change my wireless nic signal, such as 2.4. to say, something higher, manually? i do not know if the nic is 5.x ghz but i do know its 2.4. its a wireless G nic [20:30] User777: Ok, so no firewalling [20:30] im thinkin i can change the freq [20:30] User777: Now paste what's in /etc/resolv.conf [20:30] any suggestions? if not, not big [20:31] oly562: No clue [20:31] i will want to set up a wireless net on my server, is why [20:32] ahhhhh! [20:32] henkjan: ? ur thoughts on wireless change of nic strength [20:32] lol..Thanks so much Jeeves! [20:32] i dont know what file name i typed in but nano must have created something elese [20:32] ok, ill be back at a later time.. Njoy... l8 [20:32] that resolve was blank so i filled it in and now reolving is happening [20:32] User777: coolio [20:32] have fun [20:33] olcafo: no thoughts on that. wireless is for homi! [20:34] :) [20:34] hmm, sorry olcafo. that wasnt for you [21:05] hi! [21:08] Hi! [21:08] <_ruben> ho! [21:13] Wat nou! [21:19] ScottK: ping [21:19] rgreening: Pong [21:19] ScottK: I really hate postgres [21:19] kirkland: you mentionned that kvm 84 supported kvm-in-kvm. [21:19] kirkland: is this also true for the hardy backport? [21:19] I still cant get postgres + openerp running [21:19] mathiaz: true, if you have an amd64 cpu [21:19] rgreening: Don't hate postgres. It's not mysql after all. [21:19] mathiaz: and if you're running the kvm-source module [21:20] kirkland: is there any specific options to be passed to kvm? [21:20] mathiaz: yes, i actually done that on my hardy backport test machine [21:20] mathiaz: yes, there is ... [21:20] ScottK: I have no idea where to go... I've read everything I can to see about getting this running. [21:20] kirkland: I've been some beta testing and there is the last test case that deals with a virtual host - http://testcases.qa.ubuntu.com/Install/ServerWhole [21:20] mathiaz: -enable-nesting enable support for running a VM inside the VM (AMD only) [21:20] kirkland: ah - and libvirt in hardy doesn't support that? [21:21] mathiaz: oh, hmm, probably not [21:21] rgreening: There are probably people here who can help you with the postgres stuff. [21:21] mathiaz: i got a post on my blog that makes me think that we might need to backport libvirt too, if we go this route [21:21] kirkland: ok - I'll give a try using the command line then. [21:22] kirkland: that wouldn't suprise me - we should think about the whole stack [21:22] kirkland: and backporting the same version as in jaunty [21:22] kirkland: so that we can be a more confident that things are stable in hardy [21:22] mathiaz: agreed [21:22] ScottK: this is the bug I am running into... http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=516348 === hessml|away is now known as hessml|away|away [21:22] Debian bug 516348 in openerp-server "openerp-server: server cannot connect to database" [Important,Open] [21:23] kirkland: at least we know that the combination of the different packages (version wise) work on Jaunty. [21:23] So at least it's not just you. [21:23] mathiaz: right [21:23] kirkland: anyway - thanks for the pointer to the kvm option. I'll give it try later. [21:25] rgreening: Were the last comments helpful? [21:25] mathiaz: sure thing [21:25] ScottK: nope. not really... [21:26] rgreening: I've got no great ideas for you. [21:26] he [21:26] heh [21:27] stupid package being packages and not properly tested! [21:27] * rgreening needs to kick someone [21:27] rgreening: ask someone to bend over [21:27] :) [21:27] volunteering? [21:27] :P [21:27] Nope :) [21:28] btw [21:28] hello again [21:28] why do we boot servers without any usefull output? [21:28] Why not remove splash and quiet from the grub commandline? [21:28] User777: Hi [21:28] kirkland: the RAID bug (boot from degraded raid) is still there? [21:29] mathiaz: yes, that's what i'm working on [21:29] so..on this ubuntu server..i just installed and (i think) configured correctly proftpd....however i cant connect from filezilla on a windows machine....any ideas? [21:29] mathiaz: the latest mdadm release in debian solves the problem [21:29] mathiaz: i'm trying to isolate the fix [21:29] mathiaz: otherwise, i have a merge prepared [21:29] User777: Did you select inetd or standalone? [21:29] inetd [21:29] mathiaz: what do you think would be preferred? [21:29] User777: Is inetd installed? [21:30] User777: By default, it isn't [21:30] ah [21:30] i did not know that [21:30] which is kinda dumb in the proftpd package [21:30] User777: it's because of the 'no open ports by default' policy, i believe [21:30] will installing inetd now make it work..or will i have to then redo proftpd? [21:30] User777: The install should do the trick [21:31] inetd isnt in repository? [21:32] kirkland: hm - looking at the changelog. [21:32] kirkland: would the fix be included in 2.6.7.2? [21:33] mathiaz: the changelog entry seems to indicate so [21:33] mathiaz: i cherrypicked the one non-documentation patch in that release [21:33] mathiaz: this did NOT solve the problem [21:33] kirkland: merging 2.6.7.2 would be easy since it's a bug fix only release [21:33] mathiaz: so i merged 2.6.8-12-gb47dff6-2 [21:33] mathiaz: which did solve the problem [21:34] okay su just installed inetutil-inetd and am rebooting [21:35] mathiaz: this one looks tasty too: http://git.debian.org/?p=pkg-mdadm/mdadm.git;a=commit;h=2b4ca8f079335c1b3f345ec13da58699aaa0269d [21:35] mathiaz: let me try a merge of 2.6.7.2 [21:38] thanks you so much [21:38] inetd did it [21:39] your the man (and or woman) [21:41] kirkland: hm - according to ANNOUNCE-2.6.8: Release 2.6.8 contains various bug fixes and minor enhancements. [21:42] kirkland: It seems like that fits the criteria for a FFexception. [21:42] kirkland: I wouldn't upload 2.6.8 with an Exception as 2.6.8 is not a bug-fix *only* release. [21:42] mathiaz: right [21:42] kirkland: I wouldn't upload 2.6.8 *without* an Exception as 2.6.8 is not a bug-fix *only* release. [21:42] mathiaz: i'm trying to merge 2.6.7.2 === hessml|away|away is now known as hessml|away [21:45] changing the system password doesn't change the courier password. How do I change the courier pop/imap password? I've tried restarting the courier daemons but to no avail. [21:48] never mind, I just didn't actually change my password :P [21:50] kirkland: hm - regarding the RAID bug - booting a degraded RAID5 array works [21:50] mathiaz: okay, got a 2.6.7.2 merge building [21:50] mathiaz: lemme test [21:50] kirkland: the RAID5 array boots with only 2 disks active. [21:50] mathiaz: with the mdadm that's in the archive? [21:50] kirkland: however a RAID1 array doesn't boot [21:50] kirkland: yes. [21:53] mathiaz: \o/ [21:53] mathiaz: sweet, a merge of 2.6.7.2 works [21:53] mathiaz: let me upload the source to p.u.c [21:53] mathiaz: would you mind building/testing to confirm this? [21:53] kirkland: no problem. [21:53] kirkland: http://people.ubuntu.com/~mathiaz/raid5_boot.png [21:54] kirkland: ^^ this is the degraded raid5 array booting. [21:54] kirkland: the same error message is still there - however the system is able to boot. [21:55] mathiaz: right, same here [21:55] kirkland: http://people.ubuntu.com/~mathiaz/raid5_boot_2.png <- the following messages [21:55] mathiaz: i get the error message [21:57] mathiaz: http://people.ubuntu.com/~kirkland/mdadm [21:57] mathiaz: you should be able to dget the source [21:57] mathiaz: note that i haven't sufficiently documented the merge in the changelog yet [22:02] kirkland: http://paste.ubuntu.com/136289/ [22:02] kirkland: is the error message about MAKEDEV normal? [22:03] mathiaz: hmm, that doesn't look right [22:03] mathiaz: and i just ran it here, same thing [22:04] is ethereal not in the repositories? [22:05] olcafo: ethereal changed its name to wireshark in 2006 [22:06] kirkland: 2.6.7.2 doesn't fix the RAID bug. [22:06] oh, thanks. Odd that I could'nt find this info online. [22:06] kirkland: the system fails to boot from a degraded RAID1 array. [22:06] mathiaz: fark [22:07] olcafo: what were you searching for? [22:07] kirkland: http://people.ubuntu.com/~mathiaz/raid1_boot.png [22:07] olcafo: the second google result for "ethereal" is wireshark [22:08] kirkland: do you have an idea why a degraded RAID5 array would boot while a degraded RAID1 wouldn't? [22:10] mathiaz: i don't ... but i almost want to throw this back to kernel space [22:10] mathiaz: b/c we're still getting that gnarly kernel message [22:10] mathiaz: which simply cant be right [22:11] mathiaz: okay, i've verified that the /dev/MAKEDEV problem has been around for before the current changes [22:11] mathiaz: not that it's right, but it's been there for a little while [22:12] SDGathman: Right. I understand that. I don't think the pypolicyd-spf is packaged for Fedora. That's likely easy enough. [22:12] Sorry. Wrong channel. [22:13] mathiaz: try this ... [22:13] Hi all [22:14] mathiaz: sudo dpkg-reconfigure mdadm [22:14] mathiaz: choose the boot-degraded=yes [22:14] I really hope that someone can help me out here [22:14] mathiaz: see if that gets you to boot degraded [22:14] I'm getting major slow responses when copying files to my 8.10 samba server [22:14] has anyone got any pointers? [22:14] I've added the default socket options as well [22:17] so no one's had problems with samba on Ibex then? [22:18] xyberpix: https://bugs.edge.launchpad.net/ubuntu/+source/samba [22:19] kirkland: tnx [22:20] kirkland: nope - I'm still dropped to a busybox prompt. [22:20] * Jeeves_ is gone [22:20] see ya [22:20] kirkland: that's with mdadm 2.6.7.2 and after having run dpkg-reconfigure mdadm with boot degraded set to yes. [22:20] mathiaz: jeebus [22:21] kirkland: I didn't get the question on reboot and got dropped directly to the busybox prompt [22:21] kirkland: I can see the same error messages [22:21] mathiaz: right [22:21] mathiaz: that's the expected behavior when you answer the question ahead of time [22:21] mathiaz: okay, try this ... [22:23] mathiaz: install an upstream 2.6.29 kernel from http://kernel.ubuntu.com/~kernel-ppa/mainline/v2.6.29-rc8/ [22:24] mathiaz: in my experience, that made the error messages, as well as the problem go away [22:24] kirkland: ok. [22:24] kirkland: I also noticed in the mdadm 2.6.8 changelog entry mention about adding support for kernel 2.6.28 [22:24] mathiaz: oh really .... [22:25] mathiaz: do you want to try my 2.6.8 merge too? [22:25] mathiaz: before updating your kernel? [22:25] ScottK: The docs for setting up openerp v5 are all wrong. [22:25] kirkland: sure - [22:26] kirkland: let's try 2.6.8 [22:27] rgreening: Sounds fun .... [22:27] ScottK: not really. Just found the correct way, and it crashes in building the db [22:27] go figure. [22:27] mathiaz: http://people.ubuntu.com/~kirkland/mdadm === hessml|away is now known as hessml|away|away [22:35] mathiaz: any better luck with 2.6.8? [22:37] mathiaz: fwiw, i just tested 2.6.29 and it boots degraded very cleanly, exactly as expected, no nasty error messages [22:37] kirkland: \o/ [22:37] kirkland: 2.6.8 boots [22:37] kirkland: http://people.ubuntu.com/~mathiaz/raid1_boot_success.png === hessml|away|away is now known as hessml|away [22:38] kirkland: there is the same error message though. [22:38] mathiaz: right [22:38] mathiaz: but 2.6.8 is definitely an improvement [22:38] kirkland: but the system boots from the degraded RAID1 array. [22:38] mathiaz: i can clean up the merge changelog entry and try to get an FFe approved [22:38] mathiaz: can you also try the 2.6.29 kernel? [22:39] mathiaz: you should see no error message at all there [22:39] kirkland: FYI I have oopses on dmesg [22:39] kirkland: probably related to the error message [22:39] mathiaz: yeah [22:39] kirkland: I'm going to try 2.6.29. [22:40] kirkland: I though I tried your 2.6.8 merge [22:40] kirkland: hm - nm. [22:41] ? [22:41] kirkland: yeah - I was reading the scrollback [22:41] mathiaz: what version of mdadm did work? [22:41] kirkland: 2.6.8 [22:41] mathiaz: k [22:41] kirkland: the one currently in http://people.ubuntu.com/~kirkland/mdadm/ [22:41] mathiaz: k [22:41] mathiaz: yeah, that's 2.6.8 [22:41] mathiaz: fwiw, 2.6.7.2 also worked for me [22:42] mathiaz: but you reported that that one did not work for you [22:42] kirkland: yes - 2.6.7.2 didn't work for me. [22:42] mathiaz: okay, i'm glad you're around to double-check these [22:42] kirkland: what are you test cases? [22:43] kirkland: I'd like to know why your tests are successful while mine aren't [22:43] mathiaz: boot with both disks [22:43] mathiaz: make sure they're sync'd [22:43] mathiaz: reboot once with both disks, make sure that works [22:43] mathiaz: install some version of mdadm [22:43] mathiaz: poweroff [22:43] mathiaz: boot with one of the 2 disks attached [22:44] mathiaz: rejoice on boot, cry on initramfs [22:46] kirkland: I've just rerun dpkg-reconfigure mdadm on a system that is already running a degraded RAID1 array. [22:47] kirkland: and ask to not boot from a degraded array. [22:47] k [22:47] mathiaz: now you'll get the prompt [22:47] kirkland: however on boot the system still boots without asking a question [22:47] mathiaz: oh, right [22:47] mathiaz: note the wording of the question ... [22:47] mathiaz: "newly degraded" [22:48] kirkland: yes :) - so it's the expected behavior. [22:48] mathiaz: once a system has booted a degraded raid, it expects that that is the current behavior [22:48] kirkland: ? [22:48] mathiaz: we've discussed this before .... [22:48] kirkland: ok. [22:48] mathiaz: this is why my test case includes this step: [22:48] mathiaz: make sure they're sync'd [22:49] mathiaz: so after i'm done with a round of testing, to "reset", i boot with both disks attached [22:49] mathiaz: re-add to the array if necessary, and wait for the sync to complete [22:49] then [22:49] mathiaz: reboot once with both disks, make sure that works [22:49] kirkland: right. [22:50] kirkland: BTW 2.6.29 doesn't show any error message [22:50] mathiaz: \o/ [22:50] mathiaz: would you confirm that in https://bugs.edge.launchpad.net/ubuntu/jaunty/+source/linux/+bug/334994 ? [22:50] Launchpad bug 334994 in linux "Degraded RAID boot fails: kobject_add_internal failed for dev-sda1 with -EEXIST, don't try to register things with the same name in the same directory" [High,Confirmed] [22:50] mathiaz: i *firmly* believe this is a kernel issue [22:50] kirkland: 2.6.8 is able to boot from degraded RAID1 array - with 2.6.28 there are messages in the kernel log, while 2.6.29 is quiet [22:51] mathiaz: yes [22:51] mathiaz: that's exactly my experience [22:53] kirkland: wrt to you tests - I'm not doing the reset step when the system was failing to boot from a RAID1 array. [22:54] kirkland: Multiple reboot would still lead to have the question asked. [22:54] kirkland: I guess this is the expected behavior. [22:54] mathiaz: right, until you successfully boot with one disk [22:54] mathiaz: which you hadn't really done before you used the 2.6.8 package [22:54] mathiaz: once you've done that, you've told the system, "It's cool--we can boot with one disk" [22:54] * mathiaz nods [22:55] kirkland: so why 2.6.7.2 was working for you but not for me? [22:55] mathiaz: and it says, "Okay, cool. Degraded is now the known state of your array." [22:55] mathiaz: that's a good question [23:06] kirkland: bug 334994 updated [23:06] Launchpad bug 334994 in linux "Degraded RAID boot fails: kobject_add_internal failed for dev-sda1 with -EEXIST, don't try to register things with the same name in the same directory" [High,Confirmed] https://launchpad.net/bugs/334994 [23:06] kirkland: I've added the kernel oops from /var/log/kern.log [23:09] kirkland: hm - I may have found a regression with kvm 84 on hardy. It seems that the shutdown command doesn't send the proper ACPI signal to the guest [23:09] kirkland: I used to be able to do a clean shutdown on the guest with the command virsh shutdown vm-id. [23:10] kirkland: that doesn't seem to work anymore. [23:10] kirkland: (at least with a jaunty guest) [23:11] kirkland: are you aware of this? [23:11] mathiaz: i am not [23:12] kirkland: I'll do more testing to make sure it's kvm 84 and not jaunty that is broken [23:12] kirkland: I'll file a bug against kvm if needed. [23:12] mathiaz: okay === asac_ is now known as asac [23:29] at the moment i am setting the key and essid of my wireless usb device by using "iwconfig" and dhclient to connect to it, is there a way fro mthe terminal I can set all those things to happen automatically instead of doing it each itme [23:29] *time [23:31] mathiaz: https://bugs.launchpad.net/bugs/337763 [23:31] Launchpad bug 337763 in virt-manager "[jaunty] regression: virt-manager reboot action is non-functional" [Medium,New] [23:31] mathiaz: that might be your acpi issue? [23:35] kirkland: let me try with a hardy guest and see if the shutdown command is sucessful [23:35] kirkland: hm - seems like it. [23:36] kirkland: virsh shutdown hardy-base is able to sucessufuly shutdown the guest [23:36] mathiaz: so hardy shuts down, but jaunty does not? [23:36] kirkland: yes. [23:36] kirkland: and this is with kvm 84 on a hardy host [23:36] sounds like a bug in jaunty kernel, right? [23:36] I have this problem with Intrepid host running 8.10 and 7.10 clients. [23:37] havent' tried hardy guests. [23:37] kirkland: yes I don't think it's the same bug as reported by jdstrand [23:37] olcafo: do you have the acpid daemon running in your guests? [23:38] olcafo: and did you boot your guest with acpi enabled (from the host)? [23:38] 7.10's is not. I'm not sure about 8.10 [23:38] olcafo: you need acpid running in your guest other wise the ACPI shutdown signal is not process by your guest. === hessml|away is now known as hessml|away|away [23:39] that machine is not available to me at the moment. I'll have to check that later. [23:40] mathiaz, that makes sense. I didn't really think of it as a problem that needed fixing though :P, just an inconvinience at the moment. [23:58] hi, anyone familiar with zoneedit? i need some help with their nameservers, its kind of confisuing [23:58] mathiaz: http://git.debian.org/?p=pkg-mdadm/mdadm.git;a=blobdiff_plain;f=Assemble.c;h=3ee028b461619a1379827e1bfce84c245a1aebfc;hp=1d3787022adec681aec9ddbb3e3ef98e2dfcfb35;hb=4e9a6ff778cdc58dcc6897e74cf5ee1d3f73e1f7;hpb=22eba5121632c4b26541fbb04209a90b93c24bcc [23:59] kirkland: this is a very simple fix :)