[00:00] It appears to print each setting that is unchanged from the default [00:01] booting a thin-client ubuntu 10.04, it starts eth0 up, and then my cisco router(dhcp server) spews errors about malformed option 61. any ideas about how to solve? [00:01] What's option 61? [00:02] it's the client ident [00:02] client-identifier [00:02] As in send host-name ? [00:03] It is expected that this field will typically contain a hardware type [00:03] and hardware address, but this is not required. Current legal values [00:03] for hardware types are defined in [22]. [00:03] So cisco appears to be more prissy than the RFC [00:03] pretty much [00:04] this only happens when i boot a thin client. [00:04] FWIW, netbooting Works For Me, with 10.04 desktops and 8.04/dnsmasq as the server, and intel PXE ROMs. [00:04] aetaric: this is happening before pxelinux loads, right? [00:04] no [00:04] this is post pxelinux [00:05] OK, so pxelinux.0 loads -- does it get as far as displaying a menu and loading the kernel and ramdisk? [00:05] yes [00:05] OK, so the bad DHCP request is somewhere within Ubuntu itself? [00:05] right [00:06] How did you generate the netboot image -- live-build? [00:07] i followed the guide [00:08] ltsp-build-client [00:08] from https://help.ubuntu.com/community/ThinClientHowto [00:08] still works all the way up to 10.04 [00:09] it worked when my tftp and nfs server was also a dhcp server [00:09] Ah, LTSP [00:10] All I can suggest is that you 1) packet sniff and examine the bogus flow; and 2) try building a smaller image [00:10] is there a newer/better way to go about this? [00:10] You might be able to replace ISC dhclient with some other dhclient. [00:11] aetaric: well, AFAICT the problem is that your client is sending something that Cisco have decided not to accept, so ultimately you have to either fix the Cisco or workaround it in the client [00:11] kk. [00:11] have another dhclient you recommend? [00:12] Not really [00:12] aptitude search ?tag(client)?tag(dhcp) or so [00:13] http://paste.debian.net/102350/ [00:28] whats the irc command to read the chanell topic eg /topic [00:29] read /topic [00:29] anyone suggestions? [00:31] [ if you're joining for the first time, or are new to irc, the first thing you'll want to do is read the channel topic (/topic) ] but how do i do that? [00:33] Frenk_: just typing '/topic' doesn't work for you? [00:34] Frenk_: which irc client are you using? [00:34] Insufficient arguments for command. [00:34] webchat.freenode.net [00:35] qwebirc [00:35] #topic [00:35] nope [00:36] it's often displayed at the top of the channel window, or when you first enter. /topic is meant to return it tho (obviously not your fault if it doesn't ..) [00:37] it's your fault for using a bad client [00:37] Frenk_: maybe /topic #channelname? [00:48] [00:48] !topic [00:48] Please read the channel topic whenever you enter, as it contains important information. To view it at any time after joining, simply type /topic [00:49] Just have him ask the vendor about it [00:51] twb: does it when i remove isc, install a replacement, and rebuild the ramdisk [00:51] so, it might be a kernel issue [00:51] aetaric: 11:10 All I can suggest is that you 1) packet sniff and examine the bogus flow; and 2) try building a smaller image [00:52] yeah [00:52] define smaller image... [00:52] less things [00:52] it loads it via nfs :p [00:53] So it gets as far as NFS? [00:53] nope [00:53] kernel can't get an address to connect to nfs [00:53] i have it load the kernel and initrd.img via tftp [00:54] So the problem is in the ramdisk [00:57] ok, how do i change how the ramdisk gets a dhcp lease? [00:59] You can't without a lot of fucking about [00:59] It'll be easier to replace the cisco IMO [01:00] Or at least call Cisco and ask them how to tell it to ignore option 61 or so [01:07] is there a command to preseed user/group ids? i want to sync up all the system user/group ids [01:07] pting: that's called "centralized authentication" [01:07] Oh, sorry, *system* accounts [01:08] I don't know any way to get those synced, other than 1) put them in your central auth (e.g. LDAP); or 2) ensure that you install packages in the same order on every host. [01:08] Neither of which are very nice [01:08] twb, i see... i was thinking of using puppet to pre-create all the groups and users before installing the packages [01:09] I suppose that could work [01:09] heh, not sure if that's the brightest of ideas though [01:09] Note that purging packages will often try to delete the system account [01:09] i would hate to install a package i forgot to create users for beforehand [01:10] So if someone purges one package and installs another, the new one might get the UID that you wanted for your system account [01:10] But that's probably an unlikely occurrence [01:19] twb, thanks, i'll just have to pick one.. i'm most interested in ensuring services like mysql and www-data are the same to read from nfs shares and such [01:21] pting: many of them are standardized in base-files [01:22] Sorry, base-passwd [01:23] www-data is, at least [01:23] o.O, so i could add puppet code to append to /usr/share/base-passwd/passwd.master and grouip.master before installing packages? [01:23] #define DEFAULT_PASSWD_MASTER "/usr/share/base-passwd/passwd.master" [01:23] #define DEFAULT_GROUP_MASTER "/usr/share/base-passwd/group.master" [01:24] Dunno, try it in your test lab :P [01:24] o.O i definitely will, thanks [01:33] twb, so what's the recommended ubuntian way of assigning manual user/group ids? start from the max id for the segment and go descending from there? [01:34] like start from system user id 999 and go down? [01:36] pting: update-passwd seems to apply to global IDs (0-99) [01:37] twb, hah, no!!! that solution seems like the right way to go though [02:01] is there any way to use apt-cache to tell you the version #? [02:01] twb, looks like it still works for system user ids.. i added mysql as 999, both as uid/gid... ran update-passwd and it was added [02:01] Noobster: version of what? A package? [02:01] yes [02:02] Noobster: apt-cache show packagename has a Version line. [02:02] thanx! [02:03] apt-cache policy will show you what versions exist in the repositories you have in your sources.list [02:05] pting: eeeexcelent [02:08] twb, so it looks like update-passwd doesn't change uid/gids if they already exist [02:08] That would be about right [02:09] It's intended to set up defaults, not clobber users' changes to those defaults [02:09] ya, that's probably for the best =)... i'll just write some checks to notify me if these user ids are out of sync on my servers === jjohansen is now known as jj-afk [03:28] hello all! [03:28] I have a ubuntu server running KVM [03:28] I'm using bridging [03:28] for some reason, after setting it up, I can't communicate to the internet (through the default gateway) [03:28] http://pastebin.com/siC29Sgj [03:29] ^my netstat -r and cat of /etc/network/interfaces [03:29] dbowlby: Error: "my" is not a valid command. [03:29] my netstat -r and cat of /etc/network/interfaces is in the pastebin [03:29] dbowlby: pastebin "ip r" format, please. [03:29] For bonus points, all of "ip l; ip a; ip r' [03:29] http://pastebin.com/XMv3pU20 [03:30] bonus points: http://pastebin.com/BM1gpnqP [03:30] Well, the first problem is that you've configured BOTH br0 and eth0 as 192.168.1/24 [03:31] Meaning that on a per-packet basis, it'll pick either br0 or eth0 at random [03:32] ok, I can see that [03:32] so br0 should be a different network? [03:32] I want my VMs to be on the 192.168.1.0 network [03:32] ifdown eth0; then remove "auto eth0" from interfaces [03:32] If you're bridging across eth0, you shouldn't be referring to eth0 directly [03:34] if I bring eth0 down, I loose connectivity to the box [03:34] Then remove "auto eth0" from interfaces and simply reboot [03:34] ok, let me try that [03:35] Currently you're trying to run the same network both over raw eth0 and over the bridge br0 [03:35] You need to only have one of those -- probably the latter [03:35] lol probably? [03:35] Note that (obviously) you'll need to connect to .10 instead of .230 [03:36] as feared, now I can't access the box [03:44] twb, thanks, I finally got my console hooked up and found that the damn reboot failed [03:44] Sorry [03:45] twb, now I can access my box and it appears to be working properly [03:45] twb, no I'm sorry hehe [03:46] this would definitely explain my connectivity issues to the VMs :) [03:48] What I described is pretty much what *I* use [03:48] Maybe your router (on .27) doesn't know how to get to .10? [03:49] Or maybe there's another host on .10 and they're fighting [03:49] twb, nah it's working now [03:50] twb, I commented out the auto [03:50] on eth0 [03:51] twb, the whole reason I was looking at this was because I was having insane ping times to my VMs [03:51] twb, then I noticed I couldn't get out through my gateway [03:52] dbowlby: I bloody told you to comment out "auth eth0" [03:52] twb, after I took out that auto eth0 I could ping outside my gateway [03:52] twb, I know, and I did, but I rebooted and the box didn't come back up [03:52] twb, I didn't have a console, so didn't know why [03:52] twb, after I hooked up the console, I found the system at a crash screen [03:52] Is this a server, or is NetworkManager installed? [03:52] twb, after rebooting it, it worked great :) [03:53] twb, it's ubuntu server with the virtualization stuff installed [03:53] Please confirm that "dpkg -l network-manager" has "un" in the lefthand column [03:55] no packages found [03:55] Good enough [03:55] I don't know what's wrong [03:55] I assume bridge-utils is installed? [03:56] it says ii [03:56] What does "brctl show" have to say? [03:56] bridge name bridge id STP enabled interfaces [03:56] br0 8000.406186e288dc no eth0 [03:56] vnet0 [03:56] virbr0 8000.000000000000 yes [03:57] my pings are still all over the place to this darn windows vm [03:57] even from the host itself [03:57] goes from 1ms all the way up to 400ms [03:59] That might simply be because the VM is sleeping while idle [03:59] twb, a continuous ping? [04:01] seems to be better [04:01] aight, well, hehe, thanks a lot twb! [04:02] * twb shrugs [04:04] twb, I think you're on to something with the idle, don't really see the delay with my rhel vms [04:32] how do I install ubuntu server non-interactively ? [04:34] grep sambashare /etc/group [04:34] sambashare:x:111:cyber [04:34] grep sambashare /var/lib/dpkg/info/* [04:34] ...no hits. What created this group? [04:34] https://help.ubuntu.com/10.04/installation-guide/amd64/appendix-preseed.html is it the recom way to auto install ubuntu ? or there is something easier ? may be some project in sf.net or freshmeat? [04:35] axisys: that's the best way, yes [04:35] axisys: FAI can hold your hand, but I don't like it much [04:35] twb: FAI ? [04:36] apt-cache search ^fai- [04:37] twb: it is in maverick.. but not in lucid (LTS) [04:38] Answer: the samba postinst === timo_ is now known as Guest36941 === Datz_ is now known as datz === Psi-Jack is now known as Guest18597 === MTecknology is now known as Guest61557 === Psi-Jack_ is now known as Psi-Jack === Guest61557 is now known as MTeck === MTeck is now known as MTecknology [06:07] New bug: #690042 in libvirt (main) "libvirtd tries to disable ipv6's accept_ra even when ipv6 is disabled outright in the kernel" [Undecided,New] https://launchpad.net/bugs/690042 === jj-afk is now known as jjohansen === Nigel_ is now known as G === RoAkSoAx_ is now known as RoAkSoAx === alvin_ is now known as alvin [08:11] I have started my tutorial on installing Samba3 as a PDC for Win7 on Ubuntu 10.04 x64 LTS. It is still in beta but if it helps anyone.. http://tinyurl.com/SMB4PDCWin7 [08:12] oops Samba4 [08:21] New bug: #690073 in backuppc (main) "Please merge backuppc 3.2.0-1.1 (main) from Debian unstable (main)" [Undecided,Confirmed] https://launchpad.net/bugs/690073 [08:25] What is the difference between x, * and ! in the passwd and shadow databases? [08:26] AFAICT x means "ask shadow", and ! and * in shadow are identical [08:38] <\sh> twb: * <- disabled account x <- encrypted password in /etc/shadow (and eventually is ! another indicator with the same meaning of x) [08:38] <\sh> s/disabled/deactivated/ [08:39] I'm a bit confused as to why some accounts are ! and some are * [08:39] I *suspect* it's just a matter of some being there when "shadowconfig on" first runs, and some being created after -- but I don't want to assume that when my dodgy thing sets them all to * [08:41] <\sh> twb: man 5 shadow ;) "If the password field contains some string that is not valid result of crypt(3), for instance ! or *, the user will not be able to use a unix password to log in, subject to pam(7)." [08:41] I don't trust it [08:41] For example passwd(8) locks using a ! explicitly [08:42] So so passwd --unlock presumably works by removing the ! [08:42] These are all system accounts so it PROBABLY doesn't matter [08:44] Yep [08:44] adduser --disabled-password uses a *, but --disabled-login uses a ! [08:44] So obviously su and/or sshd treat them differently [08:53] Hello. How can I get rid of that fancy grub menu when booting the installation CD? I'm using SOL and it clutters the console. [08:53] beric: remaster it [08:53] beric: and it's not a grub menu, it's isolinux [08:54] thanks.. === diehaai is now known as thefish [08:58] well that's quite a lot of work :( , keep it simple people. [08:59] You could just netboot [08:59] optical media are so passé === a1 is now known as al === cjwatson_ is now known as cjwatson === soren_ is now known as soren === jjohansen is now known as jj-afk === doko_ is now known as doko [12:16] New bug: #690131 in mysql-5.1 (main) "mysqlimport fails on table names which are keywords if unescaped" [Undecided,New] https://launchpad.net/bugs/690131 [12:41] New bug: #690138 in tomcat6 (main) "tomcat6 installation failure on Ubuntu 10.10" [Undecided,New] https://launchpad.net/bugs/690138 [12:43] hard to accept [12:56] couldn't confirm. install went well [13:29] When I do: apt-get install php5-xdebug I got: php5-xdebug: Depends: phpapi-20090626.. how do I fix it? === zul_ is now known as zul === smoser` is now known as smoser [14:04] Doesn't ubuntu come with a default (mail) aliases file? [14:20] with the latest and greatest (10.10) do i really need to do 'sudo /etc/init.d/networking restart'? seems nothing else works? [14:32] New bug: #689351 in mysql-dfsg-5.1 (main) "package mysql-server-5.1 5.1.37-1ubuntu5.4 failed to install/upgrade: le sous-processus nouveau script pre-removal a retourné une erreur de sortie d'état 1" [Undecided,New] https://launchpad.net/bugs/689351 === TuxIce is now known as AdamDV|iPad [14:41] pmatulis, i think they are switching to the redhat-like "service some-application start/stop/restart" [14:44] pmatulis: To achieve what? [14:45] soren: trick question? [14:45] pmatulis: 14:20 < pmatulis> with the latest and greatest (10.10) do i really need to do 'sudo /etc/init.d/networking restart'? seems nothing else works? [14:45] pmatulis: No, no tricks involved :) [14:45] soren: yes, i want to restart networking [14:46] pmatulis: If you want to restart networking, "really needing to do 'sudo /etc/init.d/networking restart'" seems perfectly reasonable, doesn't it? [14:47] soren: i just figured we might be using 'service' thingy by now but it's broken [14:47] pmatulis: Oh, you prefer to do "service networking restart" instead? [14:47] Is that what you're saying? [14:47] soren: right [14:48] * pmatulis is here b/c he is configuring a bridge (which is broken on bootup btw) [14:48] pmatulis: Oh. [14:48] pmatulis: Right, I see why it doesn't work. [14:49] pmatulis: Yeah, that's probably what you're roing to have to do for now. [14:49] soren: ok [14:49] soren: any idea why bridge will not come up on boot? [14:50] pmatulis: In a standard 10.10? Not sure. [14:50] pmatulis: Can I see your /etc/network/interfaces? [14:51] soren: one moment [14:51] sure [14:54] soren: http://pastebin.ca/2019364 [14:54] heh, networking hasn't been moved to upstart yet? [14:54] seems not, but network-interface and network-interface-security have [15:00] patdk-wk: Depends on what you mean by "networking". [15:00] the /etc/init.d/networking script :) [15:01] patdk-wk: That would not work. It's a shell script. [15:02] pmatulis: What does "ifquery --list --allow auto" output? [15:02] (with sudo) [15:04] soren: i presume i should run that when br0 is not working? [15:04] soren: b/c i just ran the networking script after boot (which does bring it up) [15:04] pmatulis: I don't think it matters. [15:05] With --list it just lists stuff. [15:05] soren: then 'lo, eth0, br0' [15:05] ok [15:07] soren: btw, this is also broken in karmic (and probably lucid) [15:07] It works for me, though. [15:07] soren: really? on which release? [15:08] Lucid and maverick, at least. [15:08] Let me double check to be sure. [15:08] soren: interesting. i wonder if the fact that my machine is a kvm guest [15:08] Is this a server? Is network-manager installed? [15:08] soren: is to blame [15:08] soren: cli only, yeah [15:08] kvm guest> Shouldn't matter. [15:10] soren: i have to resort to rc.local and then start all network-dependent services. it's horrible :( [15:10] :( [15:10] pmatulis: slangasek spent quite a bit of time getting this working. [15:11] pmatulis: Succesfully, I believe. [15:11] Hmm... [15:11] I just tried a configuration similar to yours. [15:11] Failed. [15:11] Weird. [15:11] Let me look at it for a couple of minutes. [15:11] soren: nice. thanks [15:12] Hehh... misspelled "static" :) [15:12] * soren reboots it aga in. [15:13] pmatulis: Worked brilliantly. [15:13] pmatulis: How did you install this kvm guest? [15:13] soren: i suck [15:14] soren: the karmic one was with the server iso. this 10.10 one was with something called vmbuilder [15:14] Never heard of it :) [15:14] * soren hides [15:14] soren: ha ha ha [15:14] Well, it doesn't do anything that should affect this. [15:14] ...that I can think of, anyways. [15:15] It's kind of hard to debug from afar. [15:15] I'd file a bug against bridge-utils. [15:19] soren: alright === sommer__ is now known as sommer [15:50] anyone know how to check user access logs for a samba file server? i'm trying to track down which of my users might have deleted a folder [15:51] Alright. So here's a question. For some reason, everytime I ifup/ifdown lo:X, which are VIPs for several clustered servers in 10.04.1, open-iscsi restarts. I need this reaction to stop. open-iscsi seems to be effected by anything in upstart resulting in the 'networking' event. [15:52] Looking at /etc/init.d/open-iscsi, Required-Stop has networking in it, but does upstart even care about lsb-init that way at all? [15:52] it doesnt [15:54] Okay, so why is it open-iscsi is being effected by ifup/ifdown for loopback network devices? Everytime it does this knee-jerk reaction, it completely breaks my gfs2 /home mount that's on iscsi because it completely stops and restarts open-iscsi causing a stale and broken lock. Only fix for that is a total cluster restart. [15:57] Aha! [15:57] It's in /etc/network/if-down.d/open-iscsi [15:58] It ONLY checks if the interface is lo, and not lo:* === jj-afk is now known as jjohansen === pgraner is now known as pgraner-afk [16:02] good job [16:02] ok, i found the logs, is there someway to search through multiple logs for a term? [16:03] <_ruben> grep term log1 log2 log3 [16:03] ugggh.... can i search an entire dir? [16:04] grep 'term' /path/* [16:05] cap_00: add the -R option to grep if there are subdirs you need to search (and then, use the following command: "man grep" ) [16:05] sweet [16:05] can i search for a term with a space? [16:06] cap_00: enclose your search term in quotes. [16:07] hmmm guess it doesn't log who delete's something :( [16:11] ok, so new question, how do i turn on better loggin for smb? i had a backup, but i'd like to know who deleted a folder on the fileserver [16:12] what would be the best way to put 2 files into a archive to send to another server, tar? [16:13] its just that tar makes 405byte files into a 10k archive [16:14] JamesPage / hggdh: Is that hudson instance still supposed to be server iso only? [16:14] Daviey: not really, it has already been overloaded ;-) [16:14] Daviey: no its gained a few friends... [16:15] I'll do some work on the views to make it a bit more accessible. [16:15] That is fine... might be a good idea to change the title :) [16:15] JamesPage: Rocking ;0 [16:15] Daviey: ack [16:15] JamesPage: Grab me at some point this week, regarding me setting up a node. [16:15] OK; its pretty smooth now === _CaTeYe is now known as CaTeYe [17:05] So I had to add a few rules to UFW to allow an external client to connect to my server for a while, now im trying to remove the rules [17:05] is there a way to delete any rule that originates from a certain ip with ufw? [17:10] wng-: just put 'delete' in front of the rule you added. alternatively, you can use 'sudo ufw status numbered ; sudo ufw delete [17:11] jdstrand: I know that, what I'm trying to do is delete all the rules at once, theres like 50 of them [17:11] wng-: no. either by the full rule or by the number [17:11] so I can't pass a range of numbers? [17:11] eh, i guess i can [17:15] hello, can someone look at bug 579572 ? thanks [17:15] Launchpad bug 579572 in ubuntu "Lucid: Gave up waiting for root device (mptsas) resolved by rootdelay" [Undecided,Incomplete] https://launchpad.net/bugs/579572 [17:16] At wich package can I assign this bug ' [17:16] ? [17:22] njin: linux [17:22] (kernel issue) [17:23] ScottK: thanks [17:23] You're welcome. [17:34] hello all please someone tell me from where can I start to learing how to make programs and witch languages I need or only c++? === jjohansen is now known as jj-afk [17:47] ne7work: c++ wouldn't hurt [17:58] ne7work, if you're just learning, you might find some languages more easy to get started in than c++. [17:59] maybe start with some scripting languages [17:59] ubuntu heavily favors python for many things. http://wiki.python.org/moin/BeginnersGuide/NonProgrammers has lots of pointers. === jj-afk is now known as jjohansen [18:24] woot new version of upstart! [18:31] SpamapS: anything for server peoples to be excited about? :) [18:33] kirkland: how did you get it to work? [18:33] kirkland: the iso importing [18:34] zul: Fedora "just worked", as soon as I gave it a full DVD ISO [18:34] zul: i was trying to import the Fedora netinstall yesterday [18:34] zul: which did not work [18:34] kirkland: thats no fun [18:34] zul: over night, i downloaded the DVD [18:34] zul: yeah, I know :-) [18:34] zul: I just fixed wake-on-lan [18:34] kirkland: through the cli? [18:34] zul: that was *slightly* more fun [18:35] zul: what about the cli? [18:35] kirkland: you used the cli to import the cd? [18:36] zul: no, the web interface [18:36] kirkland: what if you do it through the cli [18:36] zul: dunno; you tell me :-P [18:36] hmmm...ok [18:37] zul: i'll try it here, if you give me the CLI invocation [18:43] zul: ? [18:43] kirkland: looking around [18:43] zul: k [18:43] ill let you know [18:47] SpamapS, when did you think your patch pilot session started? [18:53] can i have a cron job PATH modified by PAM environment settings (/etc/security/pam_env.conf)? the crontab manpage says cron supports pam_env but it doesn't have any effect [18:53] http://manpages.ubuntu.com/manpages/maverick/man5/crontab.5.html [18:53] (confusing) [18:54] smoser: noon PST [18:54] smoser: which is in 1 hour ;) [18:54] pmatulis: debug stanza is pretty cool :) [18:55] pmatulis: other than that, I'm not sure [18:55] SpamapS, believe it or not, i wasn't actually being a jerk. [18:55] SpamapS: halleluiah (spelling?) [18:55] given different time zones, who knows what a half day is. ie, mine started 8:30 is US/Eastern, it is really past. [18:55] smoser: we've discussed this before.. its much easier for you to tell us when you're not being a jerk ;) [18:55] yeah i know. [18:56] well i guess you should jsut assume jerk unless you hear other wise. [18:57] is the journaling added in ext4 or is it also available on ext3 ? [19:01] journaling exists in ext3 [19:01] but extents only exist in ext4 and make it incompatable with ext2/3 [19:01] if you use them [19:45] How do I configure my server install to connect to my Wireless network? [19:45] Hello, how would i be able to install LAMP and PHPmyadmin in one command? [19:47] LewisCawte, edit /etc/network/interfaces [19:49] patdk-lap: whats the config for it? [19:50] no idea, I would never touch wireless on a server [19:51] I'm more than likely going to keep it as what I'm using it for now, but I'm testing stuff in my room, so I don't want to move it closer to the router for now [19:57] kirkland: ping can you do a small text file on how to on what you have done so far? i need to know how to confgiure the web interface [19:58] zul: sudo apt-get install cobbler [19:58] zul: sudo vi /etc/cobbler/modules.conf [19:58] module = authn_testing [19:59] zul: sudo stop cobbler [19:59] zul: sudo killall cobblerd [19:59] (there's a bug in the upstartization, all cobblerd aren't killed) [19:59] (rather, 2 are started, not sure how/why) [19:59] anybody have any idea of the config for wireless (USB adapter) on a Ubuntu Server install? [19:59] zul: sudo start cobbler [19:59] thanks [19:59] zul: sudo service apache2 restart [19:59] zul: then point browser to http://hostname/cobbler_web [20:00] zul: login with testing/testing [20:00] zul: daz it [20:00] zul: but yeah, we should wiki up this schtuff [20:06] in server 10.04, what would all the ksoftirqd/n watchdog/n migration/n ksoftirqd/n processes be for? I have n=0-7 of each of these [20:09] kirkland: want me to fix the upstart job? [20:09] SpamapS: please! do you know what's wrong? [20:10] kirkland: yeah, expect fork is hard to get right... just start with -F and remove expect fork [20:10] SpamapS: ah, sure, go for it [20:10] oh there's no expect fork [20:11] well thats actually the problem then ;) [20:11] but... [20:11] running with -F is better anyway [20:11] let me read the daemon.. if it listens then forks, expect fork can actually be better [20:14] yeah, listens way after forking so expect fork is not helpful [20:14] * SpamapS pushes [20:22] kirkland: I think I'm going to propose a lintian check for upstart jobs.. not having a 'stop on' is very dangerous. [20:22] SpamapS: okay [20:22] kirkland: even 'stop on runlevel [016]' still has a race condition tho. :( [20:32] kirkland: btw.. is testdrive working now? (haven't had time to test it with the moving and all) [20:32] RoAkSoAx: yup, thanks! [20:32] kirkland: np ;) [20:33] RoAkSoAx: when do you think powernap will be ready for natty? [20:41] hi, i've got an openvz box running hardy and simias/ifolder. I can't login to its webadmin and receive a: System.ObjectDisposedException in my ifolder.log. Anyone had this or knows a solution? [20:44] this might be a weird question, are partitions the only thing that can be mounted? [20:45] if i wanted to add a HD to my system and mount it to two different places in the system the only way i'd do that would be creating two seperate partitions? [20:46] kirkland: I'm rescheduling everything right now (because of moving, graduation, etc etc). But I'm gonna start working in full with PowerNap this week, to hopefully finish modifying the algorithm for the integration of the Monitors. [20:47] kirkland: before Xmas, which should also involve the monitors functional [20:47] i just don't want to have to determine ahead of time how big each partition is on the drive, i'd rather have both mount points using the full space and let them fill up the drive at the same time [20:48] cap_00: no you can mount file system images [20:48] hmmm and those can grow? [20:49] cap_00: you can also resize partitions [20:49] yes, but i'd like to make it as easy to manage as possible [20:50] cap_00: once we have BTRFS, that will be easy. Until then.. partitioning everything onto one big / is probably still the simplest answer. [20:50] cap_00: you can use LVM to manage the physical disks if you do that [20:50] cap_00: with LVM you just ad the physical space to the pool, and then extend the FS onto it as needed. [20:50] hmmm [20:50] cap_00: but, shrinking the FS is hard [20:52] cap_00: look into LVM.. I think it will do what you want.. but just know that shrinking one logical volume, and the filesystem that rides on top of it, is not simple. [20:52] cap_00: though it can be done [20:56] New bug: #690352 in net-snmp (main) "package snmpd 5.4.2.1~dfsg0ubuntu1-0ubuntu2.1 failed to install/upgrade:" [Undecided,New] https://launchpad.net/bugs/690352 [20:57] cap_00: you're saying you want to build a single RAID1 and then mount two different filesystems on top of that, right? [20:57] ya [20:57] cap_00: lvm does that very easily [20:58] cap_00: you partition the whole disk to lvm.. then do pvcreate /dev/sdXX ; vgextend name-of-volume-group /dev/sdXX ; lvcreate -n foo -L 500G name-of-volume-group ; mkfs.ext4 /dev/name-of-volume-group/foo [20:58] cap_00: and then to make another LV.. lvcreate -n bar -L 300G ... get it? [20:59] cap_00: you can even use it for migrating data between physical disks w/o downtime. === oubiwann is now known as oubiwann-holiday [21:07] Waiting for br0 to get ready (MAXWAIT is 32 seconds). What does this mean and why did am I getting it? [21:07] If I bring up the bridge manually, it is instantaneous. If I let init.d/networking handle it, it takes about 20 seconds so most of my dependent service fail to start. [21:35] RoAkSoAx: okay, i just bought a second watt meter, so i can help with testing [21:45] Ok, I'm going crazy now. br0 is brought up by init.d/networking but hangs on "Waiting for br0 to get ready". Then when I do a networking restart, br0 can't be added because it already exists. [21:45] So br0 isn't coming up properly, not going down properly. [21:45] standard bridge setup. [21:46] kirkland: cool ;) === patdk-wk_ is now known as patdk-wk [21:51] blistov: can you pastebin your /etc/networking/interfaces ? [21:53] hallyn_, http://pastebin.ca/2019758 [21:53] does anyone know if it is possible to install ubuntu cloud on a single server ( combine the front end with a node ) ? [21:53] hallyn_, this was all working yesterday, and I can not for the life of me figure out what's wrong now. Built a new server just to test, and same issue. [21:56] kirkland: did you get one of those fancy ones that can pass the data to a machine? [21:57] RoAkSoAx: nah, just the cheapy $20 one [21:57] hallyn_, and when i restart networking i get this: http://pastebin.ca/2019766 [21:57] blistov: I never used that kind of setup, but I'm surprised that you should be able to bridge to eth0 while it is down... [21:57] guntbert, this is the setup according to https://help.ubuntu.com/community/OpenVPN [21:57] And I'm sure I had this working yesterday based on this config. [21:58] Yes, I'm sure something must have changed, but I can't for the life of me figure out what. [21:58] I'm getting the nerd rage fog. [21:58] kirkland: oh, I was thinking if at the end we can gather the data and produce charts to kinda "sell" PowerNap by providing power saving charts [21:59] blistov: did you look at https://help.ubuntu.com/10.04/serverguide/C/openvpn.html ? [21:59] blistov: how about if you just 'ifdown br0; ifup br0' ? [21:59] RoAkSoAx: yeah, would be cool [22:00] hallyn_, like I said, if i do it manually, it all works. [22:00] but something is screwy. [22:00] blistov: oh, yeah i think i've had that happen about 6 months ago [22:00] hm [22:00] The fact that it takes 20 seconds to come up when using init.d/networking but goes immediately if i do it manually, is suspicious [22:02] Gah. [22:02] So many cheap monitors I could throw right now. [22:02] Damn these social conventions! [22:08] ntpdate keeps failing, i've verified that port 123 is unblocked and i am able to ping the ntp servers, yet it keeps returning no server suitable for synchronization found [22:08] any ideas? [22:11] RoAkSoAx: hmm, i just launched a test drive vm and it's only defaulting to 384M of memory [22:11] RoAkSoAx: i have 8G in my laptop [22:12] RoAkSoAx: i used to have smarter logic in there that chose the amount of memory to give the guest a little more dynamically [22:16] blistov: could you open a bug about that? i think it needs to be investigated. [22:16] (sorry, had another 'outage' due to window manager rioting and striking) [22:17] m4xx, try, ntpdate -qu pool.ntp.org [22:18] "no server suitable for synchronization found" [22:18] you defently have something blocking ntp or udp [22:19] nslookup pool.ntp.org :) [22:20] hah! udp was it ;] [22:20] ty [22:20] i was smart enough to not unblock 123 udp =x [22:20] hello everyone!. Can someone tell me if there is an active directory server alternative that runs on linux? [22:21] is LDAP a good replacement ? [22:21] dany, windows 2008 in kvm? :) [22:21] samba 4 is suppost to do AD I hear [22:21] and AD is much much more than just ldap [22:21] perhaps i can hit you with this one too? i've installed ubuntu server 10.04 then installed gnome-core. how can i add "extract here" to the right click menu? I thought it would be included with archive manager or file-roller but neither did the trick [22:22] m4xx ask #ubuntu, no gui here :) [22:22] ok ok [22:22] any idea how i can do this? [22:23] but i just want a sort of directory of users so that the mailboxes and shares and all that willl be automatically loaded [22:23] kirkland: do you have any config files on which you are hardcoding the default MEM? [22:23] is there a way to get that done? [22:24] kirkland: cause the logic is still there [22:24] RoAkSoAx: yes, /etc/testdriverc is hardcoding it [22:24] RoAkSoAx: maybe we just need to comment that out === link1 is now known as papertigers [22:24] RoAkSoAx: let me test [22:24] kirkland: ok :) [22:25] i just want to throw the bulky server 2003 in the bin [22:25] RoAkSoAx: nope [22:25] qemu: invalid ram size: -smp [22:25] RoAkSoAx: okay, that needs a bug :-) [22:25] kirkland: indeed ;) [22:26] New bug: #690387 in multipath-tools (main) "udev block naming breaks failover and sd kref release cycle" [High,Confirmed] https://launchpad.net/bugs/690387 [22:26] dany, there isn't a drop-in AD replacement as of now [22:27] I don't know how far along samba4 is, but that's the closest thing [22:28] ok thank you qman [22:29] so Fedora Directory Server, OpenDS, or Apache Directory Server will not do ? [22:30] what causes a SMB PACKET: SMBreadX (REQUEST), a client with a new 10.04 server and their old smb.conf file has a bunch of these appearing on a tcpdump [22:30] Followed closely by SMB PACKET: SMBreadX (REPLY), then the whole thing repeats [22:38] anyone seen this before, "agent admitted failure to sign using the key" [22:40] Why does openvpn and dhcp3-server try to come up before networking has started? [22:40] Is there any way to force them to wait for the interface to come up? [22:43] kirkland: this is the code right? :http://pastebin.ubuntu.com/543829/ [22:43] RoAkSoAx: yeah [22:44] RoAkSoAx: so MEM must be getting set to 384 somewhere else in the code [22:44] RoAkSoAx: before the len(MEM) [22:44] kirkland: apparently i removed the code... which seems extrange cause I remember a related issue when determing memory automatically... I guess I must have removed it... I;ll get it back [22:46] i0nic, ssh-agent ? [22:47] is there a way to check a directory's permission to ensure it's 000 without first unmounting it? [22:50] kirkland: did you report a bug yet? [22:50] kirkland: neverming just got it [22:50] RoAkSoAx: yup [22:52] kirkland: fixed in the trunk ;) thansk for reporting bugs sir!! I think you are the biggest bug reporter :P [22:52] RoAkSoAx: hehe [22:53] dany, those will do fine for linux clients, but windows, not so much [22:53] RoAkSoAx: also, while you're in there, add a stanza in that if-block to set MEM=1024 if total memory > 2000000 [22:53] the only system going for full windows compatibility is samba4 [22:58] pting, what do you mean without first unmounting it? [22:59] ls -l should show it [22:59] kirkland: done! pushed to trunk already [22:59] RoAkSoAx: sweet; you gonna upload to natty? [23:01] kirkland: I could do it now if you like? [23:01] RoAkSoAx: sure, i like bitesize uploads ;-) [23:01] RoAkSoAx: makes it easier to spot regressions [23:02] can someone point me in the direction to som documentation explaining server set up for multi host, multi client web servers? Like laughing squic, or one of the other big hosting groups would use. [23:03] kirkland: indeed! Ok then, will do so now! otherwise it will prolly be sitting there till I finish with the improvements and GRUB thingy [23:05] lenios, i want to ensure a directory is empty and the permissions on it is set to 000 before mounting; however, if it's already mounted, i want to check to make sure the permissions on it is 000 without having to unmount it first... if that makes sense [23:06] ls -l should do it [23:07] the intent is to make sure the directory isn't writable unless it's mounted [23:11] kirkland: done [23:14] unless it's mounted? [23:14] normally easy [23:14] umount, chown/chmod the path [23:14] mount it [23:14] Ive done that on a few systems [23:14] what do you chmod if it's unmounted? [23:14] the path you would mount it to [23:15] whole paths and crap can exist under a mount [23:15] normally not accesable [23:15] i see [23:15] it's the same if it's mounted [23:15] like, for an encrypted homedir can work like that on my laptop [23:16] I have my .ssh path for login keys on it, but if I mount my home dir, it overlays it [23:16] and I get my ssh private keys and everything else [23:16] maybe it won't work on the mount directory itself [23:17] but only subdirs of the mount dir === SquishyNotHere is now known as squishy === squishy is now known as SquishyNotHere === SquishyNotHere is now known as squishy [23:50] smoser: still around? === squishy is now known as SquishyNotHere