00:10 | vagrantc has left IRC (vagrantc!~vagrant@freegeek/vagrantc, Read error: Operation timed out) | |
00:25 | ricotz has left IRC (ricotz!~rico@ubuntu/member/ricotz, Quit: Ex-Chat) | |
00:36 | mangus580 has joined IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com) | |
00:37 | <mangus580> can LTSP be run using an 'external' dhcp server, and not the one on the machine hosting LTSP?
| |
00:46 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
00:58 | vagrantc has joined IRC (vagrantc!~vagrant@c-98-232-129-196.hsd1.or.comcast.net) | |
00:58 | vagrantc has joined IRC (vagrantc!~vagrant@freegeek/vagrantc) | |
01:07 | andygraybeal_ has left IRC (andygraybeal_!~andy@h151.219.213.151.dynamic.ip.windstream.net, Ping timeout: 240 seconds) | |
01:37 | mangus580 has left IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com, Ping timeout: 252 seconds) | |
01:45 | mangus580 has joined IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com) | |
02:22 | adrianorg__ has left IRC (adrianorg__!~adrianorg@187.113.248.181, Ping timeout: 246 seconds) | |
03:15 | alkisg has joined IRC (alkisg!~alkisg@ubuntu/member/alkisg) | |
03:17 | <vagrantc> alkisg: just a couple bugfixes from ltsp-trunk, and wheezy works great for the ltsp-pnp style images
| |
03:17 | <alkisg> vagrantc: cool - what fixes?
| |
03:17 | Ah, from trunk - ok
| |
03:18 | <vagrantc> ltsp-config needs a couple echo -> printf
| |
03:18 | not just to comply with policy, it's actually broken
| |
03:18 | <mangus580> either of you 2 see my question from before?
| |
03:19 | <alkisg> vagrantc: hmmm what part is broken? I don't think I've seen it in installations here...
| |
03:19 | mangus580: yes, it's possible. Tell your dhcp server to send next-server==the ltsp server
| |
03:19 | <vagrantc> "ltsp-config dnsmasq" failed to sed properly
| |
03:20 | it's probably cuz i had half a dozen networks available, rather than just one.
| |
03:20 | fixing the bashisms fixed it though
| |
03:20 | <mangus580> alkisg: do I turn the server off on the ltsp machine?
| |
03:20 | <alkisg> vagrantc: did you have this included in the wheezy version? http://bazaar.launchpad.net/~ltsp-upstream/ltsp/ltsp-trunk/revision/2371
| |
03:20 | <vagrantc> alkisg: you had committed one of the fixes back in september
| |
03:20 | alkisg: yeah, that's the one i neede
| |
03:21 | d
| |
03:21 | <alkisg> Nice
| |
03:21 | <vagrantc> plus the recent one
| |
03:21 | <alkisg> mangus580: dhcp off, tftp on (on the ltsp server)
| |
03:21 | <mangus580> ok
| |
03:21 | where are the settings for that?
| |
03:21 | <alkisg> Depending on distro/version/installation method, you might not have installed a dhcp server at all
| |
03:22 | If you did, just uninstall the package
| |
03:22 | <mangus580> edubuntu
| |
03:23 | <vagrantc> alkisg: oh, and it still has the issue with a separate boot partition, probably due to differentce in aufs/overlayfs
| |
03:23 | <alkisg> mangus580: You didn't specify the other two though, ../version/installation method. Anyway have a look at this page to get the idea: https://help.ubuntu.com/community/UbuntuLTSP/LTSPWindowsDHCP
| |
03:25 | vagrantc: that'd be a bit difficult for me to reproduce it, if you could hunt it down yourself it'd be nice... /me isn't using a separate /boot partition in any of his systems...
| |
03:25 | <mangus580> alkisg: brb, on the phone
| |
03:26 | <vagrantc> alkisg: the filesystem gets mounted and everything works fine, but mksquashfs doesn't pick up the sub-mounts...
| |
03:26 | <alkisg> Ah
| |
03:27 | <vagrantc> at least, i think that's what's happening
| |
03:27 | <alkisg> ...I'm guessing the submounts aren't mounted?
| |
03:28 | <vagrantc> they're mounted
| |
03:28 | no need to troubleshoot it at this point- it works for the typical use-case... just need to document it somewhere
| |
03:29 | <alkisg> Then it sounds like aufs can't handle submounts on the bottom layer... which would be difficult to troubleshoot, yeah...
| |
03:29 | OK
| |
03:30 | <vagrantc> might just be an option to pass to aufs, maybe...
| |
03:31 | i guess we'd have to mount them each with their own aufs?
| |
03:32 | <alkisg> I don't think so... if it can't see bind-mounts, why would it see aufs-mounts in the bottom layer?
| |
03:34 | http://aufs.sourceforge.net/aufs2/man.html#Branch%20Syntax
| |
03:34 | If you specify such filesystems as an aufs branch, aufs will return an error saying it is unsupported.
| |
03:35 | But I think aufs supports multiple branches in a single call
| |
03:35 | So it might be possible to combine everything in a single aufs call
| |
03:37 | <vagrantc> alkisg: aufs mounts on top of the aufs...
| |
03:37 | alkisg: we've been through this before ... :)
| |
03:37 | alkisg: the single aufs call would put the /boot on the same level as /
| |
03:37 | <alkisg> I don't remember it, but it does say that it's unsupported above ^, doesn't it?
| |
03:37 | Parker955_Away is now known as Parker955 | |
03:37 | <alkisg> It doesn't have a syntax for defining where to mount it?
| |
03:37 | <vagrantc> too late for wheezy annyways.
| |
03:38 | # sudo mount -t aufs -o br:/rw_branch:/ro_branch none /aufs
| |
03:38 | # sudo mount -t aufs -o br:/rw_branch/${d}:/ro_branch/${d} none /aufs/another/$d
| |
03:38 | from the manpage ... is the recommended way to get sub-mounts
| |
03:38 | <alkisg> OK, this gave me the wrong impression: (05:34:17 πμ) alkisg: If you specify such filesystems as an aufs branch, aufs will return an error saying it is unsupported.
| |
03:39 | (from the aufs.sf.net site)
| |
03:39 | * alkisg hopes overlayfs or some other system will become default in all distros at some point so that we won't have to maintain multiple options there :) | |
03:40 | <vagrantc> no doubt
| |
03:40 | but the time i was able to use aufs in debian, ubuntu had already switched to something else
| |
03:42 | <mangus580> alkisg: that link helps some...
| |
03:42 | but my issue is, my dhcp server is a fedora 14
| |
03:42 | <alkisg> mangus580: You just need to specify the correct next-server and boot filename there
| |
03:42 | <mangus580> k - let me look some
| |
03:46 | alkisg: http://goo.gl/f3NyG - is this what I am looking for?
| |
03:47 | <alkisg> Something like that, yeah
| |
03:47 | <mangus580> ok
| |
03:50 | primeministerp has left IRC (primeministerp!~ppouliot@71.174.244.26, Ping timeout: 245 seconds) | |
04:05 | primeministerp has joined IRC (primeministerp!~ppouliot@71.174.244.26) | |
04:08 | alkisg has left IRC (alkisg!~alkisg@ubuntu/member/alkisg, Quit: Leaving.) | |
04:27 | monteslu__ has joined IRC (monteslu__!~monteslu@ip68-109-174-213.ph.ph.cox.net) | |
04:30 | monteslu1 has left IRC (monteslu1!~monteslu@ip68-109-174-213.ph.ph.cox.net, Ping timeout: 255 seconds) | |
04:31 | monteslu_ has left IRC (monteslu_!~monteslu@ip68-109-174-213.ph.ph.cox.net, Ping timeout: 264 seconds) | |
04:32 | monteslu has joined IRC (monteslu!~monteslu@ip68-109-174-213.ph.ph.cox.net) | |
04:32 | Parker955 is now known as Parker955_Away | |
04:51 | <mangus580> hmmm cant make it work :-(
| |
05:31 | telex has left IRC (telex!~telex@freeshell.de, Ping timeout: 264 seconds) | |
05:34 | telex has joined IRC (telex!~telex@freeshell.de) | |
05:45 | alkisg has joined IRC (alkisg!~alkisg@ubuntu/member/alkisg) | |
05:52 | <mangus580> alkisg: I got it working!
| |
05:53 | <alkisg> Nice :)
| |
05:53 | <mangus580> any suggestions on booting over wifi?
| |
05:53 | is there any bootloaders that will make it happen?
| |
05:53 | <alkisg> ...don't do it?
| |
05:53 | You could make it work with a bit of scripting, a local initramfs, drivers etc
| |
05:53 | <mangus580> well - I would prefer not to.... but the 2 computers I plan on using are laptops - and they are for the kids to use in places that dont really have wires
| |
05:54 | <alkisg> But it's not worth it because of bandwidth restrains
| |
05:54 | <mangus580> I tried iPXE but not seeing how to set up the wireless even though they claim it works
| |
05:54 | <alkisg> It'll be very slow; the best thing you could do there is have the chroot in some local media
| |
05:54 | They claim that they have alpha support for only a couple of drivers
| |
05:54 | I'm betting yours isn't one of them
| |
05:54 | <mangus580> ahh
| |
05:55 | well, that being the case, then maybe this isnt really the way for me to go
| |
05:55 | maybe I should just install edubuntu on the machines
| |
05:55 | <alkisg> Right
| |
05:55 | <mangus580> what is the difference between thin & thick client?
| |
05:55 | <alkisg> !fatclients
| |
05:55 | <ltsp> fatclients: You may find some info about the Ubuntu/LTSP implementation of fat clients at https://help.ubuntu.com/community/UbuntuLTSP/FatClients
| |
05:56 | <alkisg> !ltsp-pnp
| |
05:56 | <ltsp> ltsp-pnp: ltsp-pnp is an alternative (upstream) method to maintain LTSP installations for thin and fat clients that doesn't involve chroots: https://help.ubuntu.com/community/UbuntuLTSP/ltsp-pnp
| |
05:56 | <mangus580> is thick, where the OS lives local, but the user storage lives on the 'host'?
| |
05:56 | <alkisg> "Fat" in LTSP means that the applications run locally on the client. The client still has no disk though, it gets if from the server again.
| |
05:56 | <mangus580> ahh
| |
05:57 | so thin, the apps run on the server
| |
05:57 | so crazy question - how is this different than microsoft terminal services?
| |
05:58 | since that runs ok over wifi (granted, running windows as the client OS)
| |
05:58 | same concept is it not?
| |
05:58 | <alkisg> Microsoft terminal services don't support boot from lan
| |
05:58 | Other than that, they're all basically "remote desktop"
| |
05:58 | LTSP thin clients, x2go, nx, rdp...
| |
05:58 | <mangus580> so over wifi, wouldnt it only be the boot process thats slow?
| |
05:58 | once up, wouldnt it be fine?
| |
05:59 | <alkisg> No, the boot process needs about 50 MB
| |
05:59 | While e.g. a full screen youtube video needs 50 mbps
| |
05:59 | 50 MB/sec, or 500 mbps
| |
05:59 | <mangus580> gotcha
| |
05:59 | <alkisg> So no, the booting part is fine, it's the remote desktop part that is slow
| |
05:59 | (in any implementation/os)
| |
06:00 | <mangus580> I guess I never really tried to do youtube over RDP
| |
06:00 | :-)
| |
06:00 | <alkisg> Right, the trick there is to do the decoding part locally
| |
06:00 | So then it'll only need 1 mbps
| |
06:00 | <mangus580> right
| |
06:00 | <alkisg> Instead of 500
| |
06:00 | That's a benefit for fat clients (even diskless)
| |
06:00 | <mangus580> oh well - I've only lost a couple hours on it :-D
| |
06:01 | so fat might work 'reasonable' on wireless.
| |
06:01 | <alkisg> Libreoffice when it loads reads 120 MB from the disk
| |
06:01 | <mangus580> but alas...
| |
06:01 | again, its probably just better to install direct
| |
06:01 | <alkisg> Devide that by 5 MB/sec, the wireless speed for 1 client...
| |
06:02 | So if you have the newer wireless, at 600 mbps, it'll be OK for 2 clients
| |
06:02 | <mangus580> or setup vdiblaster and a vmware view server... (www.vdiblaster.com) and just run vm's for them
| |
06:02 | <alkisg> If not, nope
| |
06:02 | VMs locally or remotely?
| |
06:02 | <mangus580> remote
| |
06:02 | <alkisg> All remote technologies have the same problem
| |
06:03 | Won't work well with low bandwidth
| |
06:03 | <mangus580> yeah - guess I am not thinking straight
| |
06:03 | possibly too late for rational thinking tonight LOL
| |
06:03 | * alkisg gets AFK for a while to do some work... bbl | |
06:04 | <mangus580> thanks for the help
| |
07:05 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
07:24 | alkisg has left IRC (alkisg!~alkisg@ubuntu/member/alkisg, Quit: Leaving.) | |
07:40 | komunista has joined IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk) | |
07:55 | ricotz has joined IRC (ricotz!~rico@p5B2ACD35.dip.t-dialin.net) | |
07:55 | ricotz has joined IRC (ricotz!~rico@ubuntu/member/ricotz) | |
07:58 | vagrantc has left IRC (vagrantc!~vagrant@freegeek/vagrantc, Quit: leaving) | |
08:09 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
08:09 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
08:09 | komunista has left IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk, *.net *.split) | |
08:09 | Daxter has left IRC (Daxter!~irc@67-61-37-147.cpe.cableone.net, *.net *.split) | |
08:09 | darthanubis has left IRC (darthanubis!~darthanub@cpe-71-79-184-160.neo.res.rr.com, *.net *.split) | |
08:09 | JesseC has left IRC (JesseC!~JesseCWor@wsip-98-175-20-126.br.br.cox.net, *.net *.split) | |
08:09 | mmetzger has left IRC (mmetzger!~mmetzger@99-71-214-196.lightspeed.mdldtx.sbcglobal.net, *.net *.split) | |
08:11 | komunista has joined IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk) | |
08:11 | Daxter has joined IRC (Daxter!~irc@67-61-37-147.cpe.cableone.net) | |
08:11 | darthanubis has joined IRC (darthanubis!~darthanub@cpe-71-79-184-160.neo.res.rr.com) | |
08:11 | JesseC has joined IRC (JesseC!~JesseCWor@wsip-98-175-20-126.br.br.cox.net) | |
08:11 | mmetzger has joined IRC (mmetzger!~mmetzger@99-71-214-196.lightspeed.mdldtx.sbcglobal.net) | |
08:41 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
08:41 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
08:45 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
08:45 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
08:52 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Connection reset by peer) | |
08:52 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
08:58 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Operation timed out) | |
08:58 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
09:17 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
09:19 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
09:32 | dgeary2_ has joined IRC (dgeary2_!~david@124-170-225-56.dyn.iinet.net.au) | |
09:48 | highvoltage has left IRC (highvoltage!~highvolta@ubuntu/member/highvoltage, Ping timeout: 272 seconds) | |
09:49 | stgraber has left IRC (stgraber!~stgraber@ubuntu/member/stgraber, Ping timeout: 272 seconds) | |
09:52 | stzgxj has joined IRC (stzgxj!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
09:54 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Ping timeout: 252 seconds) | |
09:55 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
09:56 | highvoltage has joined IRC (highvoltage!~highvolta@ubuntu/member/highvoltage) | |
09:56 | stgraber has joined IRC (stgraber!~stgraber@ubuntu/member/stgraber) | |
09:56 | stzgxj has left IRC (stzgxj!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Connection reset by peer) | |
10:19 | dgeary2_ has left IRC (dgeary2_!~david@124-170-225-56.dyn.iinet.net.au, Ping timeout: 260 seconds) | |
10:30 | gvy has joined IRC (gvy!~mike@altlinux/developer/mike) | |
10:39 | ijzswofpzwo has joined IRC (ijzswofpzwo!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
10:42 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Ping timeout: 240 seconds) | |
10:42 | ijzswofpzwo is now known as |Paradox| | |
10:46 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
10:46 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
11:07 | risca has joined IRC (risca!~risca@c-135-9.eduroam.liu.se) | |
11:07 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Read error: Connection reset by peer) | |
11:08 | ofhlkbn has joined IRC (ofhlkbn!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
11:10 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Ping timeout: 252 seconds) | |
11:10 | ofhlkbn is now known as |Paradox| | |
11:16 | staffencasa has left IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu, Ping timeout: 260 seconds) | |
11:20 | staffencasa has joined IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu) | |
11:20 | _al_ has left IRC (_al_!~antti@188-67-30-136.bb.dnainternet.fi, Ping timeout: 252 seconds) | |
11:25 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Connection reset by peer) | |
11:25 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
11:30 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
11:37 | _al_ has joined IRC (_al_!~antti@GGYYMMCXXVIII.gprs.sl-laajakaista.fi) | |
11:38 | mikkel has joined IRC (mikkel!~mikkel@80-71-132-15.u.parknet.dk) | |
11:53 | andygraybeal_ has joined IRC (andygraybeal_!~andy@h151.219.213.151.dynamic.ip.windstream.net) | |
11:59 | adrianorg__ has joined IRC (adrianorg__!~adrianorg@177.156.225.80) | |
12:06 | risca has left IRC (risca!~risca@c-135-9.eduroam.liu.se, Read error: Operation timed out) | |
12:09 | risca has joined IRC (risca!~risca@c-135-9.eduroam.liu.se) | |
12:35 | Phantomas has joined IRC (Phantomas!~Phantomas@ubuntu/member/phantomas) | |
12:35 | andygraybeal_ has left IRC (andygraybeal_!~andy@h151.219.213.151.dynamic.ip.windstream.net, Ping timeout: 240 seconds) | |
12:40 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
12:42 | komunista has left IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk, Read error: Operation timed out) | |
12:42 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Connection reset by peer) | |
12:43 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
12:46 | |Paradox| has joined IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
12:51 | fxxlwfeqsqo has joined IRC (fxxlwfeqsqo!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
12:52 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Remote host closed the connection) | |
12:52 | fxxlwfeqsqo is now known as |Paradox| | |
12:59 | wvoaokmdexa has joined IRC (wvoaokmdexa!~iamparado@c-71-57-196-26.hsd1.va.comcast.net) | |
13:00 | |Paradox| has left IRC (|Paradox|!~iamparado@c-71-57-196-26.hsd1.va.comcast.net, Read error: Connection reset by peer) | |
13:00 | wvoaokmdexa is now known as |Paradox| | |
14:14 | mangus580 has left IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com, Quit: Leaving.) | |
14:32 | mangus580 has joined IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com) | |
14:49 | F-GT has left IRC (F-GT!~phantom@ppp59-167-136-109.static.internode.on.net, Ping timeout: 265 seconds) | |
14:53 | Phantomas has left IRC (Phantomas!~Phantomas@ubuntu/member/phantomas) | |
15:04 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
15:27 | klausade has joined IRC (klausade!~klaus@cm-84.215.156.145.getinternet.no) | |
15:31 | Phantomas has joined IRC (Phantomas!~Phantomas@ubuntu/member/phantomas) | |
16:11 | adrianorg__ has left IRC (adrianorg__!~adrianorg@177.156.225.80, Ping timeout: 260 seconds) | |
16:25 | mikkel has left IRC (mikkel!~mikkel@80-71-132-15.u.parknet.dk, Quit: Leaving) | |
16:25 | staffencasa has left IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu, Ping timeout: 260 seconds) | |
16:27 | monteslu_ has joined IRC (monteslu_!~monteslu@ip68-109-174-213.ph.ph.cox.net) | |
16:29 | staffencasa has joined IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu) | |
16:30 | monteslu has left IRC (monteslu!~monteslu@ip68-109-174-213.ph.ph.cox.net, Ping timeout: 260 seconds) | |
17:09 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
17:21 | Parker955_Away is now known as Parker955 | |
17:25 | leio has left IRC (leio!~leio@gentoo/developer/leio, Ping timeout: 248 seconds) | |
17:31 | Parker955 is now known as Parker955_Away | |
17:34 | adrianorg__ has joined IRC (adrianorg__!~adrianorg@177.156.225.80) | |
17:35 | leio has joined IRC (leio!~leio@gentoo/developer/leio) | |
17:45 | adrianorg__ has left IRC (adrianorg__!~adrianorg@177.156.225.80, Ping timeout: 255 seconds) | |
17:47 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
17:50 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
17:55 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
17:57 | gvy has left IRC (gvy!~mike@altlinux/developer/mike, Quit: Leaving) | |
17:57 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
18:07 | vagrantc has joined IRC (vagrantc!~vagrant@c-98-232-129-196.hsd1.or.comcast.net) | |
18:07 | vagrantc has joined IRC (vagrantc!~vagrant@freegeek/vagrantc) | |
18:09 | mangus580 has left IRC (mangus580!~Mike@cpe-69-207-75-20.rochester.res.rr.com) | |
18:15 | komunista has joined IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk) | |
18:26 | <lmk> is the dnsmasq builtin tftp server sufficient or is tftp-hpa server required?
| |
18:27 | <vagrantc> dnsmasq works great for tftp
| |
18:28 | there are some bugs for using dnsmasq's dhcp for large deployments where they have many (20+) simultaneous thin clients booting
| |
18:30 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
18:31 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
18:37 | Parker955_Away is now known as Parker955 | |
18:40 | alkisg has joined IRC (alkisg!~alkisg@ubuntu/member/alkisg) | |
18:47 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Read error: No route to host) | |
18:48 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
18:53 | Parker955 is now known as Parker955_Away | |
18:59 | rickogden has left IRC (rickogden!~Rick@host.hifirevolution.com, Ping timeout: 245 seconds) | |
19:02 | rickogden has joined IRC (rickogden!~Rick@host.hifirevolution.com) | |
19:37 | risca has left IRC (risca!~risca@c-135-9.eduroam.liu.se, Quit: Lämnar) | |
19:50 | CKrakou_ has joined IRC (CKrakou_!~quassel@002128185067.mbb.telenor.dk) | |
19:52 | alexqwesa_ has left IRC (alexqwesa_!~alex@109.172.12.47, Read error: Operation timed out) | |
19:53 | alexqwesa has joined IRC (alexqwesa!~alex@109.172.12.47) | |
20:01 | awilliams has joined IRC (awilliams!mistik1@unaffiliated/mistik1) | |
20:20 | <vagrantc> why am i too shy to apply the patch submitted in: http://bugs.debian.org/591608
| |
20:22 | i think i even tested it years ago...
| |
20:27 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Remote host closed the connection) | |
20:29 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
20:40 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Ping timeout: 245 seconds) | |
20:42 | bobby_C has joined IRC (bobby_C!~bobby@85-124-22-227.teleworker.xdsl-line.inode.at) | |
20:43 | ricotz has left IRC (ricotz!~rico@ubuntu/member/ricotz, Ping timeout: 264 seconds) | |
20:49 | komunista has left IRC (komunista!~slavko@adsl-195-168-234-074.dynamic.nextra.sk, Quit: Leaving.) | |
20:56 | ricotz has joined IRC (ricotz!~rico@ubuntu/member/ricotz) | |
20:57 | ricotz has left IRC (ricotz!~rico@ubuntu/member/ricotz, Remote host closed the connection) | |
21:01 | ricotz has joined IRC (ricotz!~rico@p5B2ADC56.dip.t-dialin.net) | |
21:01 | ricotz has joined IRC (ricotz!~rico@ubuntu/member/ricotz) | |
21:07 | alkisg has left IRC (alkisg!~alkisg@ubuntu/member/alkisg, Remote host closed the connection) | |
21:12 | CKrakou_ has left IRC (CKrakou_!~quassel@002128185067.mbb.telenor.dk, Remote host closed the connection) | |
21:30 | Phantomas has left IRC (Phantomas!~Phantomas@ubuntu/member/phantomas) | |
21:30 | darthanubis has left IRC (darthanubis!~darthanub@cpe-71-79-184-160.neo.res.rr.com, Read error: Connection reset by peer) | |
21:31 | ogra-cb has joined IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net) | |
21:32 | darthanubis has joined IRC (darthanubis!~darthanub@cpe-71-79-184-160.neo.res.rr.com) | |
21:33 | staffencasa has left IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu, Ping timeout: 260 seconds) | |
21:37 | staffencasa has joined IRC (staffencasa!~staffenca@8-220.ptpg.oregonstate.edu) | |
21:59 | adrianorg__ has joined IRC (adrianorg__!~adrianorg@177.134.63.222) | |
22:13 | bobby_C has left IRC (bobby_C!~bobby@85-124-22-227.teleworker.xdsl-line.inode.at, Ping timeout: 248 seconds) | |
22:29 | _al_ has left IRC (_al_!~antti@GGYYMMCXXVIII.gprs.sl-laajakaista.fi, Ping timeout: 248 seconds) | |
22:37 | F-GT has joined IRC (F-GT!~phantom@ppp59-167-136-109.static.internode.on.net) | |
23:09 | ogra-cb_ has joined IRC (ogra-cb_!~ogra@p5791F64B.dip.t-dialin.net) | |
23:12 | ogra-cb has left IRC (ogra-cb!~ogra@p4FDFB482.dip.t-dialin.net, Ping timeout: 240 seconds) | |
23:25 | _al_ has joined IRC (_al_!~antti@GGYYMMCXXVIII.gprs.sl-laajakaista.fi) | |
23:38 | Parker955_Away is now known as Parker955 | |