=== ubotu [n=ubotu@ubuntu/bot/ubotu] has joined #edubuntu === joebaker [n=joebaker@rrcs-67-52-198-66.west.biz.rr.com] has joined #edubuntu === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #edubuntu === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #edubuntu === merriam_ [n=merriam@85-211-20-34.dyn.gotadsl.co.uk] has joined #edubuntu === sbalneav [n=sbalneav@S0106000b6a5631f9.wp.shawcable.net] has joined #edubuntu [02:52] Evening all [02:54] hi sbalneav [02:54] Hey there LaserJock! === albertmk [n=albertmk@201-74-5-1-sc.cpe.vivax.com.br] has joined #edubuntu [03:27] Going out for a walk. Afk for an hour or so. [03:27] New doco package building === RichEd-1 [n=richard@dsl-245-164-226.telkomadsl.co.za] has joined #edubuntu === boyam [i=boyam@166-82-81-31.quickclick.ctc.net] has joined #edubuntu === boyam [i=boyam@166-82-81-31.quickclick.ctc.net] has joined #edubuntu [04:20] back === bddebian [n=bdefrees@c-71-224-172-103.hsd1.pa.comcast.net] has joined #edubuntu [04:31] sbalneav: package build? [04:32] Yep! [04:33] Day1, I kept my promise :) [04:33] heh [04:33] I would build the packages each day [04:33] they'd just have the same content ;-) === kiteflyer07 [n=david@cpe-66-67-214-130.rochester.res.rr.com] has left #edubuntu [] === jsgotangco [n=JSG@ubuntu/member/jsgotangco] has joined #edubuntu === TexasTwister [n=scott@adsl-67-67-221-165.dsl.austtx.swbell.net] has joined #edubuntu === joris_ [i=joris@082-146-097-218.dyn.adsl.xs4all.be] has joined #edubuntu [06:08] !pastebin [06:08] pastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic) [06:14] Hardware recognition problem here: I bought a Dell Inspiron 530n desktop with Ubuntu preinstalled. Worked fine. Then I replaced Ubuntu with Eduntu (I'm configuring this box for a private school). Was unable to install for lack of network connection until I inserted an Intel e100 PCI nic -- integrated e1000 not seen... [06:15] Install completed, Dell says new 2.6.20.16 kernel should be all that is needed. Updated to that kernel but I still see only the e100. Any ideas? [06:16] What does lspci show? [06:16] 00:19.0 Ethernet controller: Intel Corporation Unknown device 10c0 (rev 02) [06:16] 02:00.0 Ethernet controller: Intel Corporation 82557/8/9 [Ethernet Pro 100] (rev 08) [06:20] Well, the first line's the e1000 [06:20] so the kernel doesn't know what it is. [06:21] ubuntu and edubuntu use the same kernel, no? [06:21] Yup. [06:22] Strange...Dell implies that the current kernel should resolve the problem: http://linux.dell.com/wiki/index.php/Ubuntu_7.04/Issues/e1000_driver_does_not_recognize_network_controller [06:22] So I'm willing to wager that if you re-installed ubuntu at this point, it probably wouldn't work either [06:23] Yes, I expect that is true. === Amaranth [n=travis@ubuntu/member/Amaranth] has joined #edubuntu [06:23] Unless I installed from the "restore partition". [06:23] dpkg -l | grep linux-image [06:24] ii linux-image-2.6.20-15-generic 2.6.20-15.27 Linux kernel image for version 2.6.20 on x86 [06:24] ii linux-image-2.6.20-16-generic 2.6.20-16.29 Linux kernel image for version 2.6.20 on x86 [06:24] ii linux-image-generic 2.6.20.16.28.1 Generic Linux kernel image [06:25] Well, looks like you have the one they want. Just doesn't look like what they SAY it does, it does :) [06:26] Alrighty... to the forums, I guess... [06:27] hold on, one sec... [06:27] just looking something up [06:27] ok [06:27] lspci -n | grep 02:00 [06:28] what do you get? [06:31] TexasTwister: What do you get if you type lspci -n | grep 02:00 [06:32] 02:00.0 0200: 8086:1229 (rev 08) [06:32] k, I'm looking at the kernel source... [06:32] But that is the e100 [06:32] argh === Mez [n=Mez@ubuntu/member/mez] has joined #edubuntu [06:32] sorry [06:32] 00:19 [06:33] 00:19.0 0200: 8086:10c0 (rev 02) [06:33] 10c0, ok... [06:33] What are we looking for? [06:34] Well, I'm looking in the kernel source... [06:35] If you're interested, I'm bombing through /usr/src/linux-source-2.6.20/drivers/net/e100.c [06:35] In there, they basically list a bunch of pci-id's that the driver will respond to. [06:35] 8086 is the intel "vendor code" [06:35] 10c0's the device code. [06:36] Suppose that vendor code is a tribute to the old 8086 processor? [06:36] ah, wait. [06:37] looks like they've got a custom for the e1000 [06:37] sitting at the command prompt? [06:37] yup [06:37] do a sudo modprobe e1000 [06:37] did it silently return? [06:37] yes... but I've done that before... [06:38] doesn't pick up the device? [06:38] Not in the network settings panel anyway. [06:38] lspci now, see if it looks like it's there... [06:39] we're looking for that 00:19 one to change from an unknown device. [06:39] nope... still "unknown" [06:39] hm [06:39] ok, looking in the driver... [06:39] one sec. [06:40] yeah... [06:40] * [06:40] * Last entry must be all 0s [06:40] * [06:40] * Macro expands to... [06:40] * {PCI_DEVICE(PCI_VENDOR_ID_INTEL, device_id)} [06:40] */ [06:40] static struct pci_device_id e1000_pci_tbl[] = { [06:40] INTEL_E1000_ETHERNET_DEVICE(0x1000), [06:40] INTEL_E1000_ETHERNET_DEVICE(0x1001), [06:40] ... [06:40] INTEL_E1000_ETHERNET_DEVICE(0x10BC), [06:40] INTEL_E1000_ETHERNET_DEVICE(0x10C4), [06:40] INTEL_E1000_ETHERNET_DEVICE(0x10C5), [06:41] heh [06:41] you got a 10C0 [06:41] ooooops. [06:42] So, you got a couple of choices... [06:43] ok... [06:43] 1) file a bug, include the lspci -n line, specifically pointing out that 8086:10c0 isn't in the driver. [06:43] 2) Phone dell, complain :) [06:43] Alrighty then.... [06:43] 3) merrily dive off the deep end, try to compile your own kernel :) [06:44] 4) Stick with the e100 for now :) [06:44] Let me see if it's fixed in the 2.6.22 series in gutsy [06:44] Option 4) call my friends in Dell PG and ask for a fix (I'm a Dell employee...) [06:44] Well. [06:44] There you go! [06:44] :) [06:45] Thanks for your help! [06:45] Hardware vendors change device ids all the time. [06:45] Someone sneezes on the blueprint, or chages one little transistor, and they bump a new number. [06:46] hah [06:46] and if you don't have the EXACT number in the driver, far as the driver knows, it's an unknown device. [06:46] If you wanted to, I'll bet you could just add a line to e1000_main.c that said: [06:46] INET_E1000_ETHERNET_DEVICE(0x10C0), [06:47] and it would work like a champ. [06:47] But there's the whole "now your running a modded kernel and no one will support you" thing. [06:48] Talk to your buddies. see what they say. If not, I'm here every day, come on back and see me, I'll give you a hand if you want. [06:48] alright. Thanks! [06:49] NP [07:00] Night all === Mez [n=Mez@ubuntu/member/mez] has joined #edubuntu === jbrefort [i=jean@pot44-1-88-172-65-1.fbx.proxad.net] has joined #edubuntu === hangthedj [n=eric@Wheeler-pbdsl3.Stanford.EDU] has joined #edubuntu === hangthedj [n=eric@Wheeler-pbdsl3.Stanford.EDU] has left #edubuntu [] === raynerd [n=raynerd@79-65-51-28.dynamic.dsl.as9105.com] has joined #edubuntu [08:27] Hello, few wuestions about edubuntu if anyone can assist, I`m a teacher and been trying to work out linux edubuntu throughout the holiday! [08:28] first, I have the edubuntu latest CD, ran it live and it had lots of nice educational functions. When I installed it on my machine, it didnt have these functions automatically, I have to download them/install them via the net. Why is this? [08:31] Secondly, we have 15 laptops in the department enough for 1 between 2 in a class of students. My intention is to use the laptops (with windows installed on them!) and run the live CD, so everyone is running Live edubuntu rather than windows. How can I edit the edubuntu CDs perminantly so that the "install" function is removed off the CD, i.e. students cant accidently install edubuntu === raynerd [n=raynerd@79-65-51-28.dynamic.dsl.as9105.com] has left #edubuntu ["Konversation] === krowe [n=krowe@12.207.191.100] has joined #edubuntu === krowe [n=krowe@12.207.191.100] has joined #edubuntu === Amaranth [n=travis@ubuntu/member/Amaranth] has joined #edubuntu === jack_wyt [n=jack@124.64.107.4] has joined #edubuntu === Amaranth [n=travis@ubuntu/member/Amaranth] has joined #edubuntu === ace_suares [n=ace@fupi.suares.an] has joined #edubuntu === Netham45 [n=netham@c-67-190-103-57.hsd1.co.comcast.net] has joined #edubuntu === raynerd_ [n=raynerd@79-65-51-28.dynamic.dsl.as9105.com] has joined #edubuntu [12:18] anyone in here? [12:18] ...? [12:21] holaaa? [12:25] peeeeeps? [12:52] guys, question: I am new to linux and a teacher of Chemistry. I downloaded Ubuntu onto my home PC. My home pc does not have net connection and therefore I could not install educational apps. I therefore downloaded Edubuntu and ran it live....with access to all educational apps available. I then installed Edubuntu and when I ran it off the harddrive, the educational applications were missing again!! So as far as I could see, there [12:52] was no difference between the ubuntu and edubuntu installs! I have managed to get net connection and installed all the apps but I am still confused by the benefit of having edubuntu installed over ubuntu. Anyone please explain...? [12:53] raynerd_: if you couldn't see a difference you must not have actually installed edubuntu [12:53] or you didn't uninstall ubuntu [12:55] ok, i`ll be honest! I installed on works laptop edubuntu so it was a clean install! [12:55] hence I have edubuntu on my pc still. I cant see a different [12:56] sorry Ubuntu on my pc still [12:57] raynerd_: different theme and different default applications [12:57] raynerd_: edubuntu remove some of the stuff ubuntu normally installs by default and includes a bunch of education stuff [12:57] so i definately installed a clean copy of edubuntu but the educational apps were not there...making it no different than ubuntu [12:57] this is what I am saying [12:57] ok, please let me explain again. Sorry my fault [12:58] I installed Ubuntu on my pc laptop [12:58] ahhhhh [12:58] i installed Ubuntu on my HOME PC [12:58] it did not contain any educational apps, I had no net connectivity so could not d/l them. I then chose to install Edubuntu on my work laptop. [12:59] I ran the CD live first and all educational apps were there! great. When i installed, the educational apps were not there! [01:00] the install looked almost identical to that of ubuntu. Luckly with the laptop i can connect to the net, so i just installed them. My question is, the edubuntu install was no different than the ubuntu install as far as i could see [01:00] ? [01:00] that sounds wrong [01:00] you must have done something weird [01:01] yes, I thought so! I`m new to linux, but to be fair there are very few choice to go wrong on the linux install! I just followed it through! [01:01] i've, uh, never actually done an edubuntu install so i'm probably the wrong person to talk to [01:01] lol [01:02] but if you had edubuntu-desktop install you should have gotten some education apps [01:02] installed* [01:02] that's a package that pulls in all the packages that make up the edubuntu desktop [01:02] yes, I can them on the same CD live run, but didnt get them on the install [01:02] v strange! [01:03] wait, edubuntu doesn't have a livecd installer [01:03] say again? [01:03] oh, they do as of feisty [01:03] edubuntu is a live CD ...I ran it before I installed. [01:03] nevermind [01:03] yes [01:03] you're not going to find anyone to help you here on the weekend [01:04] Ahh right, why all asleep? [01:04] i only know about edubuntu as of over a year ago and the rest don't get on here on the weekends [01:04] i`m new to Irc, who is everyone, like are they teachers or educationalists? [01:04] some of them are around, sometimes [01:05] but i mean the people who work on edubuntu [01:05] ahh right! So people from edubuntu actually come on here? [01:05] when is best time to try? [01:06] about 48 hours from now [01:06] right, Monday [01:07] you a teacher yourself? [01:07] nope [01:07] student :) [01:07] ahh ok ....lol [01:07] age? [01:07] actually not a student anymore [01:07] 20 [01:07] right cool, u at uni? [01:07] UK? USA? [01:08] no, i'm out of school now [01:08] ahh right [01:08] i did some edubuntu-related stuff for the Google Summer of Code when i was a student [01:09] right I see. I`m a Chemistry/Science teacher - any good apps you would recommend? [01:16] gchemutils [01:17] i think that's a suite of apps :) [01:23] wow cheers! [01:24] raynerd_: the educational softwares can be found on the server-addon cd-rom, there were some space issues on the other CDs (I didn't know that the live one doesn't install the edu softwares too) [01:24] stgraber: it doesn't make sense if they fit on the live environment [01:25] because that basically just gets copied over to the system without changes [01:26] Amaranth: indeed but I heard of some problem with the edu software install during feisty devel cycle (but I only installed servers so never really checked) [01:31] Is there a benefit of running edubuntu over ubuntu other than the educational apps, which you can install on ubuntu anyway then? [01:32] its just confusing me [01:32] edubuntu's main use is as an LTSP server/cient [01:32] client* [01:33] right, which is...? === [1] Netham45 [n=netham@c-67-190-103-57.hsd1.co.comcast.net] has joined #edubuntu [01:33] thin clients [01:33] sorry, please I dont know what any of this means in computer terms! [01:33] you have one big server and a bunch of systems that are only network card, and display (well, more or less) [01:34] right, so basically its just a network?> [01:34] all the processing and such goes on on the server, the clients boot via the network [01:34] and whats the advantage of doing it on edubutu and not just on ubuntu === [1] Netham45 is now known as Netham45 [01:34] edubuntu automates it [01:35] right, making it easier to run? [01:35] if you stick and edubuntu server disk in a computer with two network cards it automatically sets it up as an ltsp server [01:35] and manage [01:35] they use the same repositories for their software so you can do all of this with ubuntu [01:35] edubuntu just makes it easier to setup [01:35] so, in a classroom sense, what does this allow you to actually do. It isnt making sense still, sorry [01:36] why do they need to network...what for? [01:36] http://en.wikipedia.org/wiki/Linux_Terminal_Server_Project [01:36] the clients aren't full computers, they're dumb terminals [01:36] haha...right !!! :p [01:36] they just show stuff on the screen and have a keyboard and mouse hooked up to them [01:36] the server does all the processing [01:37] right so as a teacher, so what? kids can do what? teachers can do what? I dont see what networking is doing? [01:37] ahh they are using the same computer?? [01:37] yes [01:38] you can get a bunch of really old computers for the clients and just have one powerful server [01:38] wow I see [01:38] and it lets you watch what the students are doing [01:38] so basically your running crappy machines, but using one big machine to do the work, making the rubbish computers useful! [01:39] yep [01:39] instead of buying a bunch of new computers you just get one powerful server and use the old computers as clients [01:39] are many schools doing this? [01:40] some are [01:40] i dunno about 'many' [01:40] sounds interesting, but hardwork [01:42] edubuntu makes it not so hard [01:42] but the ltsp stuff is all way over my head [01:42] so once again, ask on monday :) [01:42] thanks [01:42] will do [01:43] tbh no problem now as i have installed all the aps, just dont get why they didnt get done on the install === Castigador [n=Alfredo@88.Red-80-38-9.staticIP.rima-tde.net] has joined #edubuntu === ub-user [n=mohamed@196.218.129.197] has joined #edubuntu === cliebow [n=cliebow@pool-71-173-92-224.ptldme.east.verizon.net] has joined #edubuntu === ananas [n=ananas-m@xdslg205.osnanet.de] has joined #edubuntu === PriceChild [n=pricechi@ubuntu/member/pdpc.supporter.student.PriceChild] has joined #edubuntu === [1] Netham45 [n=netham@c-67-190-103-57.hsd1.co.comcast.net] has joined #edubuntu === mohamed_ [n=mohamed@196.218.168.127] has joined #edubuntu === [1] Netham45 is now known as Netham45 === sbalneav [n=sbalneav@S0106000b6a5631f9.wp.shawcable.net] has joined #edubuntu [04:08] Morning all [04:08] hello sbalneav [04:10] my question related to ltsp server, i installed freevo on the server , and when i try to run freevo on thinclient and server only one version working [04:10] how to make freevo working on both server and clients at the same time [04:11] this is not related to freevo only but to all programs [04:11] You're looking for local apps. [04:11] anyone can help me ? [04:11] apps running on the thin client itself. [04:12] We don't support that yet, but you could try to get it working yourself, if you're willing to do some scripting/programming. [04:13] if there is starting point to start from i can try this [04:13] because this is why i install ltsp, i want to use it as mediacenter [04:13] No, there's no starting point. [04:13] that anyone can run the same media application at the same time [04:13] You'd have to chroot /opt/ltsp/i386 [04:14] apt-get install the application you want, and sshd server [04:14] get keys set up in the chroot. [04:14] write a script that would mount /home in the chroot. [04:14] get ldap authentication going. [04:15] then, on the server. you'd use ssh to start the app on the thin client. [04:15] its a big job, and all the pieces aren't there yet. [04:15] of course i'm sure if my knowledge can reach me to success in this :) [04:15] I'm an ltsp developer, we'd love to have that feature, and we'll probably be working on it for Hardy, but it's not an easy job [04:16] i'm sure = i'm not sue [04:16] sure [04:16] yes, is very good feature [04:17] i get idea maybe is not correct, ... [04:17] if i chroot and install freevo on ltsp [04:18] this can't work ? [04:18] Well, that's the start. [04:19] Think about it: === pauljw [n=paul@pool135.dial1-clec.newalb.win.net] has joined #edubuntu [04:19] The application needs to know who you are. There are no users on the thin client terminal, it uses the server for everything, so you need ldap [04:19] There's no home dirs on the thin client, so you need those. [04:20] the app has to get started some way, so you need ssh. [04:20] etc. [04:20] There's a lot of pieces to that puzzle. [04:20] that's why we haven't solved it yet :) [04:20] it's a hard problem to solve. [04:20] yes, :) [04:20] of course i can't make it if u still think in it [04:21] this is due to my few knowledge [04:23] sbalneav, can u look at this link and tell me if this can work .. [04:23] http://pachikov.com/ablog/posts/2006/03/07/terminal-server-for-home-media-pcs/ [04:24] no [04:24] it won't work === vistakiller [n=spiros@ppp172-251.adsl.forthnet.gr] has joined #edubuntu === pauljw [n=paul@pool67.dial1-clec.newalb.win.net] has joined #edubuntu === juliux [n=juliux@ubuntu/member/juliux] has joined #edubuntu === cbx33 [n=pete@ubuntu/member/cbx33] has joined #edubuntu === LaserJock [n=mantha@ubuntu/member/laserjock] has joined #edubuntu [06:20] morning all === juliux [n=juliux@ubuntu/member/juliux] has joined #edubuntu [07:07] sbalneav: ping [07:07] LaserJock: ping [07:08] pongy pongy pongy [07:08] pongo pongo purdy [07:08] that's my impersonation of a pogo stick [07:09] that's my impression of Disney making up names for a movie [07:09] LaserJock: any comments on my moodle package? [07:09] I haven't got to it this morning [07:09] it's on my list though === moquist nods [07:11] K. I'm taking a look at the edubuntu doco ATM, just so sbalneav doesn't feel so lonely. [07:12] At least, I'm trying. I've never worked with yelp-y stuff before, either... [07:15] good man [07:16] Eh, edubuntu/browser-startpage/index.html says "Welcome to Edubuntu 7.04, the Feisty Fawn!" [07:17] :) [07:18] Should I worry about piddly stuff like saying "Edubuntu distribution of Linux" instead of "Edubuntu Linux distribution"? (The latter makes it sound like "Edubuntu Linux" is the project name, and IIRC Ubuntu wants NOT to be "Ubuntu Linux".) === moquist expects to have a largely editorial role here, along with perhaps contributing to an Edubuntu Tips & Tricks section, or something like that. [07:19] nah, go ahead and put it together [07:19] and I'll have a look [07:20] I'm working on About Edubuntu today [07:20] Oh, I wasn't writing new text. I was considering changing existing text. [07:20] we haven't done much with the little docs [07:20] yeah === moquist nods [07:20] I'm just saying, put it all together and send it to me [07:20] Oh, ok. [07:20] Is there a particular section to which you'd like to point me? [07:21] nope [07:21] just look at any of it [07:21] it all needs to be looked over [07:21] I grabbed the source from sbalneav's PPA. I should edit those files and then somehow send them to you? [07:21] Should I just attach the changed files to an email, or create an updated source package, or what? [07:21] hehe, whatever you'd like [07:21] I'm easy ;-) [07:22] This is all assuming I actually do something helpful, here. :) [07:22] Agh! I-T-apostrophe-S for ownership! [07:22] NOoooooo! [07:22] :-D [07:22] hehe [07:24] "open source software" versus "Free Software"...? [07:25] hmm [07:25] I'd rather not touch that one [07:25] nor Linux vs GNU/Linux ;-) [07:25] Well, "About Edubuntu" says "open source software". Hence my question. [07:25] Yep. === moquist is chaffed whenever he says "Free Software" and somebody corrects him: "You mean Open Source?" [07:27] Apparently not capitalizing "free software" OR "open source software", though. === moquist prefers to capitalize Free Software because it is a clue toward the beer/speech distinction [07:28] Oh, look. The paragraph in question is immediately followed by the Ubuntu Philosophy. I'm all set. [07:29] No..."Free" is capitalized later. 8-\ [07:30] Yeah, there's a cheerful jumble of "free" and "open source" on this page. [07:30] Yeah, there's a cheerful jumble of "free", "Free", and "open source" on this page. [07:31] I'm going to edit it as I see fit and send you what I think. === moquist is plagued by his/her and the distressing compromise "their". [07:38] yep [07:39] I'm trying to eliminate the pronoun altogether where I can get away with it. [07:39] I use the feminine pronouns exclusively in my philosophy papers. [07:40] moquist, what's this for? [07:40] We're discussing the Edubuntu Handbook. [07:40] ahhh [07:40] what part in particular? [07:41] "Every computer user should have the freedom to run, copy, distribute, study, share, change and improve their software for any purpose, without paying licensing fees." I'm thinking about just ditching "their" and not using a pronoun there at all. [07:41] well [07:41] you might not want to change the freedoms stuff [07:42] Though it's more compelling with an owership pronoun there... [07:42] that is official Canonical wording [07:42] LaserJock: Is that ... OK. NM, then. === moquist puts it back === moquist wants to change "community driven" to "community-driven", though. [07:42] Same page, hopefully not official. [07:44] LaserJock: Is this official? " [07:44] Our work on Ubuntu is driven by a philosophy based on software freedom that we hope will spread, and bring the benefits of software technology to all parts of the globe." [07:44] moquist: http://www.ubuntu.com/community/ubuntustory/philosophy [07:45] I want to change it to: "Our work on Ubuntu and Edubuntu is driven by a philosophy of software freedom that we hope will spread and bring the benefits of software technology to all people, everywhere." [07:45] LaserJock: 'globe' doesn't appear on the page you sent, so changing it is probably OK. === moquist nods === moquist likes nodding === bdoin [n=coudoin@home.gcompris.net] has joined #edubuntu [07:57] LaserJock: Under "Manageable", what link(s) can we provide WRT re-branding or the addition or removal of programs? It's great to assert how great Edubuntu is, but it's empty marketing unless we actually provide some indication here of how they can do those things. [07:57] hmm [07:58] Maybe this isn't the place for it, I realize. The "Why Edubuntu?" section is intended to be marketing-ish. But it would seem quite a bit better to provide such links here, IMO. [08:00] I wouldn't mind dropping that sentence altogether; I don't think it flows well. [08:01] LaserJock: here's what I currently have, with no links needed: http://n01se.net/paste/cJm?pretty=yes === moquist changes "scarce to non-existant" to something else... [08:03] LaserJock: http://n01se.net/paste/jSH?pretty=yes [08:04] OK, last time on that para: http://n01se.net/paste/AK7?pretty=yes [08:06] very nice [08:07] I was wrong. I couldn't help going back just now and changing "increasingly large" to "increasing". :) [08:16] LaserJock: I just emailed you my current version of introduction.xml. I've gotta run ATM. [08:16] k [08:16] thanks === moquist nods [08:16] :) === vistakiller [n=spiros@ppp172-251.adsl.forthnet.gr] has left #edubuntu [] === monteslu [n=monteslu@ip68-109-171-73.ph.ph.cox.net] has joined #edubuntu === vistakille1 [n=spiros@ppp84-144.adsl.forthnet.gr] has joined #edubuntu === boyam [i=boyam@166-82-81-31.quickclick.ctc.net] has joined #edubuntu === PriceChild [n=pricechi@ubuntu/member/pdpc.supporter.student.PriceChild] has joined #edubuntu === Pricey [n=pricechi@ubuntu/member/pdpc.supporter.student.PriceChild] has joined #edubuntu === merriam [n=merriam@85-211-20-34.dyn.gotadsl.co.uk] has joined #edubuntu === effie_jayx [n=valles@ubuntu/member/effie-jayx] has joined #edubuntu === john_s [n=john@c-24-17-48-60.hsd1.mn.comcast.net] has joined #edubuntu === vistakille1 [n=spiros@ppp84-144.adsl.forthnet.gr] has left #edubuntu [] === multik [n=multik@ip68.cab54.mus.starman.ee] has joined #edubuntu [10:21] good evening group [10:22] hi [10:24] Hi all, can anyone tell me what the ldm file is/does [10:25] LaserJock, hi, what's up? [10:29] hm, is this too easy or to hard a question? Is it just another display manager like xdm,gdm,kdm etc? [10:31] never mind. I found it. === john_s [n=john@c-24-17-48-60.hsd1.mn.comcast.net] has left #edubuntu [] === cbx33 [n=pete@ubuntu/member/cbx33] has joined #edubuntu === joebob777as7 [n=joe@71-210-12-238.eugn.qwest.net] has joined #edubuntu === jeanmi [n=jeanmi@216.56.103-84.rev.gaoland.net] has joined #edubuntu === jeanmi [n=jeanmi@216.56.103-84.rev.gaoland.net] has joined #edubuntu === jeanmi [n=jeanmi@216.56.103-84.rev.gaoland.net] has left #edubuntu ["Konversation] === kslawson [n=admin@kslawson.w.midcoast.com] has joined #edubuntu === pauljw [n=paul@pool81.dial1-clec.newalb.win.net] has joined #edubuntu === Baby [n=miry@pdpc/supporter/silver/kavi/baby] has joined #edubuntu === cliebow_ [n=cliebow@cpe-72-224-137-51.maine.res.rr.com] has joined #edubuntu === joebob989823 [n=joe@71-210-12-238.eugn.qwest.net] has joined #edubuntu === Amaranth [n=travis@ubuntu/member/Amaranth] has joined #edubuntu