00:42 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
00:55 | alexqwesa (~alex@alexo-veto.broker.freenet6.net) left irc: Remote host closed the connection | |
00:59 | alexqwesa (~alex@alexo-veto.broker.freenet6.net) joined #ltsp. | |
01:16 | Stefn (~Stefan@19.247-201-80.adsl-static.isp.belgacom.be) joined #ltsp. | |
01:30 | <Stefn> Is it possible to mount a cd-rom from the server in all my clients? I found something about ltspfs that should work? (I'm working with an Edubuntu 10.04 system)
| |
01:33 | <alkisg> If you mount it on the server, it is available to all the clients automatically
| |
01:33 | No need to do anything special for that.
| |
01:34 | ltspfs is for the opposite, to mount a cdrom on the client
| |
01:35 | <Stefn> that's strange, because when I try to run the program on the cd, my server will start it, but on the clients I get a "no cd found, please insert the cd"
| |
01:53 | <alkisg> Stefn: then the program doesn't look for the CD in the correct place
| |
01:53 | What program is that?
| |
01:54 | You're not using fat clients or kiosk or localapps, right? Just plain LTSP with thin clients?
| |
01:56 | <Stefn> yes, it's a school program
| |
01:56 | it's called fraxis
| |
01:57 | from dainamic software
| |
01:57 | and it are all thin clients
| |
01:59 | <alkisg> Put the CD on the server. Sit on a client. Open a terminal. And write: mount
| |
01:59 | ball (~ball@c-98-226-194-183.hsd1.il.comcast.net) left irc: Ping timeout: 240 seconds | |
01:59 | <alkisg> What's the output?
| |
02:04 | <Stefn> http://pastebin.com/PWRaJZXA
| |
02:06 | <alkisg> /dev/sr0 on /media/SP1011 type iso9660 (ro,nosuid,nodev,uhelper=udisks,uid=1000,gid=1000,iocharset=utf8,mode=0400,dmode=0500)
| |
02:06 | So if you open nautilus to /media/SP1011, can you see the program?
| |
02:07 | (from the thin client)
| |
02:07 | <Stefn> yes, but I can't enter it
| |
02:07 | <alkisg> Ah, you need a different mode then
| |
02:07 | Try this, temporarily:
| |
02:07 | On the server
| |
02:08 | sudo umount /dev/sr0
| |
02:08 | sudo mount /dev/sr0 /cdrom
| |
02:08 | Then, on the thin client, try to enter /cdrom
| |
02:09 | <Stefn> that works
| |
02:10 | <alkisg> OK, if you need that to happen automatically, you need to modify the udev rules
| |
02:10 | You can ask about that in your distro channel
| |
02:10 | <Stefn> ok :), thank you very much!
| |
02:13 | <alkisg> Hmmm but true, that would be a common problem in LTSP, we need to at least write a how-to for it
| |
02:13 | I thought in previous Ubuntu versions, CDROMs were accessible by all users... I wonder if the udev rules changed in the meantime
| |
02:20 | udisks --mount /dev/sr0 --mount-options=umask=0000
| |
02:21 | That works without need for sudo. The problem seems to be in the default udisks parameters for CDROMs, and specifically umasks.
| |
02:55 | Trixboxer (~Trixboxer@office.supportdepartment.net) joined #ltsp. | |
04:08 | cyberorg (~cyberorg@opensuse/member/Cyberorg) left irc: Remote host closed the connection | |
04:12 | dead_root (~dead_root@76.75.3.174) joined #ltsp. | |
04:17 | cyberorg (~cyberorg@opensuse/member/Cyberorg) joined #ltsp. | |
04:31 | <Stefn> I'm getting a mount error, not authorized on my ltsp clients
| |
04:31 | I tried to add them to the cdrom group
| |
04:31 | but I still get the same error
| |
04:32 | is there another solution for that?
| |
05:09 | <alkisg> Stefn: are you talking about the same problem as before? That has nothing to do with the cdrom group.
| |
05:09 | <Stefn> the problem of this morning is solved
| |
05:10 | <alkisg> OK, what are you trying to mount and you're getting a mount error?
| |
05:12 | <Stefn> I have put the command you said this morning in my script, so that runs when I boot the program which should solve that problem
| |
05:13 | but now, when I put a cd in, al my clients tell me "mount faild: not authorized"
| |
05:14 | <alkisg> Which command did you put?
| |
05:16 | <Stefn> udisks --mount /dev/sr0 --mount-options=umask=0000
| |
05:18 | <alkisg> So. You put a CD in. It gets automatically mounted. Then you try to remount it?
| |
05:18 | Or you can udisks --unmount first?
| |
05:18 | Or did you put that udisks command in some udev rule?
| |
05:18 | Btw, again, all this isn't LTSP related
| |
05:19 | AFAIK the only way to change the default mask in udisks would be to change the following lines in devices.c:
| |
05:19 | static const char *iso9660_defaults[] = { "uid=", "gid=", "iocharset=utf8", "mode=0400", "dmode=0500", NULL };
| |
05:19 | static const char *udf_defaults[] = { "uid=", "gid=", "iocharset=utf8", "umask=0077", NULL };
| |
05:19 | If you put umask=0000 there, and recompile, then it'll automatically get the correct permissions
| |
05:20 | Try to file a bug report against udisks to make it configurable.
| |
05:20 | <Stefn> ok, I'll try it... sorry to put this in the wrong channel, but in most of the channels nobody seems to know how to solve this
| |
05:20 | <alkisg> Yes, it's possible that you don't find an answer in IRC
| |
05:21 | Try to file a bug report against udisks
| |
05:21 | Or send a mail in their mailing list
| |
05:22 | For now, as a workaround, you can use the command I pasted above
| |
05:22 | I guess you're missing an "unmount" in the script you wrote
| |
05:24 | cyberorg (~cyberorg@opensuse/member/Cyberorg) left irc: Read error: Connection reset by peer | |
05:27 | <Stefn> ok, with the unmount option I'm not getting the error anymore
| |
05:27 | <alkisg> Here's a bug report about it, you can write there: https://bugs.launchpad.net/ubuntu/+source/udisks/+bug/682589
| |
05:27 | <Stefn> but umask 0000 is not allowed
| |
05:27 | <alkisg> Why?
| |
05:27 | Didn't you say it works fine if you do it manually?
| |
05:28 | <Stefn> yes, it did
| |
05:29 | it must be an error in my script then
| |
05:29 | I'll find it
| |
05:29 | <alkisg> Pastebin your script if you want
| |
05:31 | <Stefn> http://pastebin.com/wpaR3nei
| |
05:32 | <alkisg> Are you trying to make a script that any user will run, in order to launch the program?
| |
05:32 | <Stefn> yes
| |
05:32 | <alkisg> The way you wrote it, if 20 users run your script, they'll unmount/mount the CDROM 20 times
| |
05:33 | Clearly this isn't what you want
| |
05:34 | Lumiere (~jstraw@pool-72-83-232-11.washdc.fios.verizon.net) left irc: Quit: leaving | |
05:34 | <Stefn> true, hadn't thought about that
| |
05:34 | <alkisg> And also, they'll try to run the program from the wine folder of user "klas-4". That doesn't sound right
| |
05:34 | Finally, you're missing a " at the end of the line,
| |
05:34 | And you have a $ there which also doesn't seem right
| |
05:34 | And you're missing the shebang, i.e. a line on top like this : #!/bin/sh
| |
05:35 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Quit: Leaving. | |
05:36 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
05:36 | <Stefn> the line for the wine command isn't complete but, it works on the server, so that's not really a problem... and I read that the #!/bin/sh wasn't good when you wanted to make scripts usable on doubleclick
| |
05:37 | <alkisg> Erm, wherever you read that, stop using that site :)
| |
05:37 | brunolambert (~brunolamb@2001:470:8829:1000:221:6aff:fe94:21d8) joined #ltsp. | |
05:38 | <Stefn> :) I also thought it was weird, but since everything was working I didn't pay much attention on it
| |
05:38 | <alkisg> Also, with the default udisks settings, one user can't unmount the cdrom if another user mounted it
| |
05:39 | So those "unmount / mount" commands need to be issued by the same user that mounted the cd rom
| |
05:40 | <Stefn> I thought about putting the udisks commands in the rc.local files, so that they are executed on startup
| |
05:40 | should that work?
| |
05:40 | <alkisg> If this is about a specific cdrom, it might be easier to copy it to your hard disk and have it mounted in fstab
| |
05:40 | Or, if you only care about UDF disks, you can just create an fstab entry to allow any user to mount it
| |
05:41 | <Stefn> I tried to copy it to the HDD, but it's protected against that
| |
05:42 | <alkisg> It won't work in rc.local unless you always have that cd inserted while booting
| |
05:42 | And if you plan to do that, then it's better to just create an /etc/fstab entry
| |
05:44 | <Stefn> but like you said before, I can edit the lines in devices.c?
| |
05:44 | <alkisg> If you know how to compile, yes
| |
05:45 | `apt-get source udisks` gets you the source, then edit, then run `debuild -b -tc` to get a deb file
| |
05:45 | For details, google it, it's not that hard :)
| |
05:46 | <Stefn> ok thanks, I'll check that... sorry for al the stupid questions :)
| |
05:46 | <alkisg> Nah they're fine questions. It's just not the correct channel for them.
| |
05:47 | Make sure to comment on the bug report, it's your best chance for a proper solution in the future
| |
05:48 | <Stefn> well the problem is, I'm on an internship, so within a few weeks I'm gone here :)
| |
05:49 | <alkisg> Well, if you want others to help you, you should be helping others too
| |
05:49 | <Stefn> that's true, I'll do it :)
| |
05:49 | <gothaggis> i have a specific model of thin client that is not booting - they will get to the 'ubuntu' screen and then the screen goes blank. I had this problem before and I believe it was due to network card drivers. how do i remove the ubuntu splash screen to see a more verbose startup?
| |
05:50 | cyberorg (~cyberorg@opensuse/member/Cyberorg) joined #ltsp. | |
05:50 | <alkisg> sudo gedit /var/lib/tftpboot/ltsp/i386/pxelinux.cfg/default => remove "quiet splash"
| |
05:50 | <gothaggis> thanks!
| |
05:52 | Lumiere (~jstraw@72.83.232.11) joined #ltsp. | |
05:53 | Lumiere (~jstraw@72.83.232.11) left irc: Client Quit | |
05:53 | Lumiere (~jstraw@72.83.232.11) joined #ltsp. | |
06:11 | dyllan (~dyllan@dsl-185-71-241.dynamic.wa.co.za) joined #ltsp. | |
06:17 | dyllan (~dyllan@dsl-185-71-241.dynamic.wa.co.za) left irc: Ping timeout: 252 seconds | |
06:29 | cyberorg (~cyberorg@opensuse/member/Cyberorg) left irc: Remote host closed the connection | |
06:29 | cyberorg (~cyberorg@opensuse/member/Cyberorg) joined #ltsp. | |
06:34 | Gadi (~romm@ool-18bbe47a.static.optonline.net) joined #ltsp. | |
06:35 | dyllan (~dyllan@dsl-185-71-241.dynamic.wa.co.za) joined #ltsp. | |
06:36 | jammcq (~jam@70-91-230-209-BusName-Michigan.hfc.comcastbusiness.net) joined #ltsp. | |
06:36 | <jammcq> hello friends
| |
06:39 | <Hyperbyte> Hello there jammcq!
| |
06:51 | <jammcq> hey Hyperbyte
| |
06:54 | andygraybeal (~andy.gray@obsidian.casanueva.com) joined #ltsp. | |
06:57 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Ping timeout: 240 seconds | |
07:19 | Stefn (~Stefan@19.247-201-80.adsl-static.isp.belgacom.be) left irc: Quit: Moving to Suburbia | |
07:28 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
07:36 | brunolambert (~brunolamb@2001:470:8829:1000:221:6aff:fe94:21d8) left irc: Ping timeout: 260 seconds | |
08:01 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) joined #ltsp. | |
08:13 | feanorsam (~laurent@bus-cri-01.ujf-grenoble.fr) left irc: Remote host closed the connection | |
08:16 | <gothaggis> what are the steps I need to do to figure out what network card my thin client has...and to install the driver on the LTSP server?
| |
08:17 | staffencasa (~staffenca@128.193.147.241) joined #ltsp. | |
08:19 | dyllan (~dyllan@dsl-185-71-241.dynamic.wa.co.za) left irc: Ping timeout: 250 seconds | |
08:26 | <muppis> vagrantc, sorry for disappearing last night, but now I made ubuntu-desktop-applications -metapackage based on ubuntu-desktop (removed xorg and gdm depency).
| |
08:26 | Roasted (~jason@unaffiliated/roasted) left irc: Ping timeout: 240 seconds | |
08:27 | <vagrantc> muppis: now just need to get it into ubuntu :)
| |
08:27 | <muppis> It can be found at http://apt.muppis.net ltsp main (GPG: http://apt.muppis.net/gpg.key )
| |
08:28 | Oh, it misses last s from packagename.
| |
08:29 | <gothaggis> nevermind about the network driver stuff, figured it out...jme!
| |
08:32 | <muppis> vagrantc, it is quick draw, so it might have some odds. I though it could have metas for gdm and xorg to get them removed.
| |
08:36 | <vagrantc> muppis: seems like ubuntu-desktop could depend on ubuntu-desktop-applications + all the other cruft
| |
08:40 | <muppis> vagrantc, are you meaning we could have own set of application for ubuntu-desktop ?
| |
08:41 | <vagrantc> muppis: i think ubuntu-desktop in Ubuntu should be split into at least two packages.
| |
08:43 | <muppis> vagrantc, that's true.
| |
08:43 | <vagrantc> muppis: one that depends on all the applications (ubuntu-desktop-applications), and ubuntu-desktop should then: Depends: ubuntu-desktop-applications, xorg, gdm, etc.
| |
08:45 | <muppis> vagrantc, yes, I agree, but then, do they want to do that? To make one more package to maintain.
| |
08:45 | <vagrantc> muppis: that's what bug reports are for
| |
08:46 | <muppis> True.
| |
08:47 | But now had to go give some evenign snack for kids and get them to bed. See you later.
| |
08:48 | * vagrantc waves | |
09:02 | japerry (~japerry@drupal.org/user/45640/view) joined #ltsp. | |
09:02 | <japerry> hey Carl
| |
09:02 | you there?
| |
09:14 | brunolambert (~brunolamb@gw-sherb.rlnx.com) joined #ltsp. | |
09:22 | Gremble (~Ben@cpc12-aztw24-2-0-cust146.aztw.cable.virginmedia.com) joined #ltsp. | |
09:22 | JamesB192 (debian-tor@gateway/tor-sasl/jamesb192) joined #ltsp. | |
09:23 | JamesB192 (debian-tor@gateway/tor-sasl/jamesb192) left #ltsp. | |
09:33 | Gremble (~Ben@cpc12-aztw24-2-0-cust146.aztw.cable.virginmedia.com) left irc: Quit: I Leave | |
09:40 | ogra_ (~ogra@p5098ed03.dip0.t-ipconnect.de) left irc: Excess Flood | |
09:41 | ogra_ (~ogra@p5098ed03.dip0.t-ipconnect.de) joined #ltsp. | |
09:42 | cyberorg (~cyberorg@opensuse/member/Cyberorg) left irc: Ping timeout: 258 seconds | |
09:45 | kusznir (~kusznir@casas-net.ailab.wsu.edu) left irc: Remote host closed the connection | |
09:46 | <andygraybeal> lts.conf lives here --> /var/lib/tftpboot/ltsp/i386 ?
| |
09:46 | <alkisg> In Ubuntu, yes
| |
09:51 | <andygraybeal> k, thank yuo :)
| |
09:56 | mistik1 (mistik1@unaffiliated/mistik1) left irc: Ping timeout: 240 seconds | |
10:17 | Trixboxer (~Trixboxer@office.supportdepartment.net) left irc: Quit: "Achievement is not the end, its the beginning of new journey !!!" | |
10:21 | <abeehc> hi andygraybeal how's it goin
| |
10:21 | <andygraybeal> hi abeehc... i'm pulling my hair out a little.
| |
10:21 | abeehc, hows things going with you today?
| |
10:21 | <abeehc> just woke up.. my girl wants to go camping so until i hav emy coffee...
| |
10:21 | i am running libvirt/kvm instance at home here
| |
10:21 | <andygraybeal> nice!
| |
10:22 | yea, i can't get my client to boot :(
| |
10:22 | <abeehc> I think i did find the same with those e1000 drivers
| |
10:22 | <andygraybeal> it stops at the nbd.img
| |
10:22 | yea, i stopped using e1000 and i'm using virtio now.
| |
10:22 | <abeehc> but for virtio it works perfect i'm just double confirming
| |
10:22 | <pmatulis> is there a proper way (not rm command) to clean up old kernel files in the tftpboot directory?
| |
10:22 | <abeehc> this ubuntu, andygraybeal?
| |
10:22 | <andygraybeal> abeehc, ubuntu 10.04
| |
10:23 | <vagrantc> andygraybeal: nbd.img or nbi.img?
| |
10:23 | <andygraybeal> er...
| |
10:23 | <alkisg> andygraybeal: why nbi.img and not pxelinux.0? Doesn't it support pxelinux?
| |
10:23 | pmatulis: I think ltsp-update-kernels does remove the old kernels, if you removed them from the chroot before that is
| |
10:23 | I think it leaves only the old nbi image there
| |
10:23 | <andygraybeal> abeehc, nbi.img and i don't know if it supports pxelinux or not -- i do have a pxelinux file in the tftp folder
| |
10:23 | <abeehc> i don't htink deb ships the pxe rom thats why i asked
| |
10:24 | <vagrantc> i'd configure dhcpd.conf to use pxelinux.0 and ignore the nbi.img stuff
| |
10:24 | abeehc: the etherboot in debian supports PXE
| |
10:24 | <andygraybeal> vagrantc, okay, i think it says 'use pxelinux.0 ... if it can... and if it can't use nbi.img' or something like that in my dhcpd.conf
| |
10:25 | <vagrantc> andygraybeal: yes, but the logic is broken
| |
10:25 | <andygraybeal> if your on the list i posted my dhcpd.conf file, or i can pastie it too
| |
10:25 | aah broken logicness
| |
10:25 | <vagrantc> andygraybeal: just tell it to always use pxelinux.0
| |
10:25 | <andygraybeal> okay, i will look over my dhcpd
| |
10:25 | <vagrantc> unless your thin client really can't support pxe
| |
10:25 | <abeehc> vagrantc: it's kvm
| |
10:25 | your kvm host should have the roms in /usr/share/kvm
| |
10:25 | <vagrantc> abeehc: yeah, it's probably claiming it's etherboot and not PXE
| |
10:26 | <andygraybeal> i'm pretty sure it can support pxe.. i installed omething like kvm-pxe
| |
10:26 | <pmatulis> alkisg: the man page just says copy. anyway, i can confirm it does not due to the number i currently have
| |
10:26 | <abeehc> pxe-virtio.bin
| |
10:26 | yeah that should od it
| |
10:26 | <andygraybeal> gimme a minute to look at my dhcpd
| |
10:27 | <alkisg> pmatulis: sudo chroot /opt/ltsp/i386 dpkg -l 'linux*' | grep ^ii
| |
10:27 | Pastebin the output of that, and also the contents of your tftp dir
| |
10:27 | <pmatulis> alkisg: i've already done all that
| |
10:27 | <alkisg> Where's the pastebin link?
| |
10:27 | <vagrantc> abeehc: yes, it's pxe, but it may advertise that it's etherboot.
| |
10:28 | abeehc: which will confuse the logic in dhcpd.conf
| |
10:28 | so just have dhcpd.conf always send pxelinux.0
| |
10:28 | because any recent version of etherboot supports pxe ... in fact, we should maybe change the default dhcpd.conf always do that
| |
10:30 | <andygraybeal> okay, i have sadness to report, i changed it to only look for a pxelinux.0 it says "loading 10.0.0.1:/ltsp/i386/pxelinux.0 ...." it's hanging there.
| |
10:31 | <alkisg> pmatulis: in ltsp-update-kernels, there's a "removefiles()" function that removes your older kernels, that's why I'm specifically asking for pastebin output
| |
10:32 | <abeehc> I'm using 1010 right now but kvm client with virtio works very quick; server is also in kvm http://uploadpie.com/BmE6D
| |
10:32 | <vagrantc> andygraybeal: sounds like your tftp server isn't working
| |
10:32 | <abeehc> pretty well out of the box.. both the server and the client guest are bridged
| |
10:32 | if you aren't bridged you probly have connectivity problem between the two
| |
10:33 | cause yeah when my server reboots it hangs there too
| |
10:33 | the following lines in my screenshot only happen if the server's talking back
| |
10:33 | <andygraybeal> vagrantc, okay..
| |
10:34 | abeehc, so your saying i'm probably not bridged?
| |
10:34 | <abeehc> well I couldn't say that at all without seeing the definitions of your guests
| |
10:34 | and your underlying ubuntu network file cause to bridge in kvm is a pain
| |
10:34 | and involves modifying the host networks file
| |
10:34 | <andygraybeal> i bridged both of my network cards in libvirt
| |
10:34 | <abeehc> I'm sure it's possible with the other modes like nat or host only
| |
10:35 | <andygraybeal> brb.. i got to help someone with a scanner
| |
10:35 | <abeehc> i'd just double check the part a bout creating a network bridger is familiar https://help.ubuntu.com/community/KVM/Networking
| |
10:36 | xet7 (~xet7@bbwirelessgw2-fee2dc00-171.dhcp.inet.fi) joined #ltsp. | |
10:36 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Quit: Leaving. | |
10:36 | <abeehc> then i'd think about booting hte client with a live cd and poking the server with tftpclient or whatever
| |
10:39 | <andygraybeal> abeehc, thank you for giving me sometihng to look into.
| |
10:40 | aaah abeehc, awesome troubleshooting idea.
| |
10:40 | wonderful
| |
10:45 | herman_ (~herman@p579876DC.dip.t-dialin.net) joined #ltsp. | |
11:02 | gothaggis (~gothaggis@corp.heavyhammer.com) left irc: Read error: Connection reset by peer | |
11:06 | japerry (~japerry@drupal.org/user/45640/view) left irc: Ping timeout: 240 seconds | |
11:13 | japerry (~japerry@drupal.org/user/45640/view) joined #ltsp. | |
11:27 | kusznir (~kusznir@casas-net.ailab.wsu.edu) joined #ltsp. | |
11:28 | <kusznir> Hi all: is there an easy command like ltsp-localapps that will run and return results for a console command?
| |
11:29 | I assume ssh $LTSP_??? <command> would work...
| |
11:30 | <abeehc> that's what i do with a script
| |
11:30 | if i'm looking to get info off the clients.. at one point i wanted to figure ou twhich had local hard drives
| |
11:32 | <kusznir> I've got a user using eclipse for dev'ing for an android phone. Eclipse needs to run on the terminal server, but then it needs to talk to the phone plugged in via usb. So I'm trying to figure out how to "transparently" let it run its usb upload script on the actual thin client.
| |
11:34 | <abeehc> ah I see.. i'd think the ssh option would work for you.. other people here might have better ideas; i'm not so familiar with localdevices
| |
11:35 | then again i think the android utils are server/client deals
| |
11:36 | running adb on the client and telling eclipse that might work? i've only played with that stff a couple times
| |
11:36 | <kusznir> Yea, I was also thinking about that route, but my first round of googling (done in the last 5 min) has not been helpful in that route.
| |
11:36 | <abeehc> I guess that could be sketchy
| |
11:36 | maybe adb is the only part of the toolkit that has server operation http://developer.android.com/guide/developing/tools/adb.html
| |
11:39 | ssh with the right key in the chroot and it's really flexible though; i could the interesting parts of some of my basic scripts
| |
11:45 | <kusznir> By default, is a users' $HOME and all that stuff ready and set?
| |
11:45 | As in, if a user on the terminal server has .ssh/authorized_keys set up so they could ssh into itself, will that also let them ssh directly into a thin client as themselves?
| |
11:45 | <vagrantc> should, yes.
| |
11:45 | <kusznir> cool.
| |
11:48 | <abeehc> I'm not so clear on that; i'd think they would still need to ssh as root to the thinclient?
| |
11:48 | <vagrantc> well, if the application needs root to run, yes.
| |
11:49 | kusznir: you could also just use an ltsp-localapp to do it, though
| |
11:49 | primeministerp (~ppouliot@64.119.153.82) left irc: Read error: Connection reset by peer | |
11:49 | <vagrantc> running sshd on the thin client has some man-in-the-middle attack potential
| |
12:01 | Roasted (~jason@unaffiliated/roasted) joined #ltsp. | |
12:03 | primeministerp (~ppouliot@64.119.153.82) joined #ltsp. | |
12:25 | <highvoltage> vagrantc: I might have to ask you some dumb questions now and again about the ldm-themes package if that's ok :)
| |
12:25 | vagrantc: should it be a single binary package with all the themes, or a multi-binary package that generates a binary package for every theme?
| |
12:26 | <vagrantc> highvoltage: ask away :)
| |
12:26 | highvoltage: both have advantages and disadvantages
| |
12:27 | highvoltage: a single package is simple, although you may end up shipping a little extra cruft if people only end up using one of the themes
| |
12:28 | highvoltage: also depends on what kind of dependency bloat it brings in ...
| |
12:28 | <highvoltage> vagrantc: I tend to lean towards a multi-binary package for this
| |
12:29 | <vagrantc> highvoltage: a separate package for each theme allows the greatest flexibility, but any new themes or obsoleted themes will require ftpmaster action, so depending on how frequent new/old themes happen, it could annoy the ftpmasters
| |
12:29 | <highvoltage> ok.
| |
12:29 | <vagrantc> highvoltage: although i'd think a separate source package for each theme, if you're going through the both, unless some of the themes share a lot of files
| |
12:30 | er, if you're going through the approach of having separate packages per theme
| |
12:30 | <highvoltage> I doubt we'll have a huge influx of ldm themes, so far I expect spacefun, maybe ltsp upstream, maybe one for debian-edu and whatever the wheezy theme will be
| |
12:30 | <vagrantc> ltsp upstream is just shipped with LDM
| |
12:30 | debian-edu already handles their own theme
| |
12:31 | <highvoltage> they currently use the upstream one
| |
12:31 | <vagrantc> not intentionally
| |
12:31 | <highvoltage> at least they did last when I talked to them about it just before the squeeze release
| |
12:31 | ah ok
| |
12:31 | in that case it might as well just be a single package then
| |
12:31 | since ldm themes are small enough anyway
| |
12:32 | <vagrantc> highvoltage: i think the default theme for debian artwork would make sense
| |
12:32 | highvoltage: i.e. right now, it's spacefun, and when wheezy releases, it'll be whatever that is
| |
12:33 | and if other people want to make themes, then they can
| |
12:34 | i'm tempted to drop the dependency on gtk2-engines-ubuntulooks and just pull in the default clearlooks ... but it adds a pretty large dependency tree.
| |
12:34 | clearlooks used to be it's own package ... but alas...
| |
12:34 | <highvoltage> so there should be single-binary packages for each theme like ldm-theme-spacefun, ldm-theme-wheezy, etc?
| |
12:34 | drdata (~drdata@pool-173-57-189-158.dllstx.fios.verizon.net) joined #ltsp. | |
12:34 | <vagrantc> highvoltage: i'd just call it ldm-themes and leave it at that
| |
12:35 | <highvoltage> righto, I'll get on with it then
| |
12:35 | <vagrantc> highvoltage: put the name of each theme in the description problem
| |
12:35 | probably
| |
12:36 | if there's reason to split it further later, we can do it then
| |
12:36 | <highvoltage> ok, that makes sense
| |
12:41 | <menomc> hi, FYI dealextreme is finally selling a usable thin-client http://www.dealextreme.com/p/ultra-mini-fanless-compact-pc-computer-w-tdx600-1ghz-cpu-windows-98-2000-xp-ce-dos-linux-70770
| |
12:42 | <muppis> Cool.
| |
12:44 | <vagrantc> muppis: that looks suspiciously like the ebox-2300 that mysterously didn't work well with ltsp5
| |
12:44 | <menomc> :(
| |
12:45 | vagrantc: what was the problem?
| |
12:45 | <vagrantc> menomc: it took 5-10 minutes just to boot, and ran really slowly after that
| |
12:45 | <menomc> ouch+
| |
12:46 | <vagrantc> *maybe* it's a newer model and doesn't have that problem ...
| |
12:46 | i seem to recall the processor being slower than what's listed there
| |
12:46 | <muppis> Hope so.
| |
12:47 | <vagrantc> but it even performed slower than you would have though with the processor it had
| |
12:48 | <muppis> Poor nic performance?
| |
12:48 | <vagrantc> muppis: nothing so simple could explain it ...
| |
12:49 | it ran fine on ltsp 4.x ... disklessworkstations was selling them for a while
| |
12:49 | <menomc> in the comments people says it's miss titled, been "clearly" a 3300 and not 2300...
| |
12:49 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
12:49 | <vagrantc> maybe there's hope, then
| |
12:50 | <menomc> who tries it first? :p
| |
12:50 | <kusznir> vagrantc, so ssh is not normally running on the thin clients? ltsp-localapps doesn't use ssh?
| |
12:50 | <vagrantc> kusznir: no, it doesn't use ssh
| |
12:51 | it communicates via the X server's xatoms/xproperties
| |
12:51 | <kusznir> Hmm...Ok.
| |
12:51 | <vagrantc> it's a little weird, but sort of elegant
| |
12:51 | <kusznir> I tried to use ltsp-localapps to run console commands (as this is), but it didn't work; I had to use ltsp-localapps to run an xterm, then run it from inside the xterm.
| |
12:52 | <vagrantc> kusznir: yeah, might have to run wrapper scripts or some such
| |
12:53 | lns_ (~lns@75-149-52-89-SFBA.hfc.comcastbusiness.net) joined #ltsp. | |
12:54 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Quit: Leaving. | |
12:54 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
12:56 | dead_root (~dead_root@76.75.3.174) left irc: Remote host closed the connection | |
13:10 | <andygraybeal> abeehc, hey are you still around or did yuo go camping already?
| |
13:16 | <abeehc> i'm still procrastinating
| |
13:19 | mgariepy (~mgariepy@ubuntu/member/mgariepy) left irc: Quit: Leaving | |
13:23 | elias_a (elias@hilla.kapsi.fi) joined #ltsp. | |
13:37 | brunolambert (~brunolamb@gw-sherb.rlnx.com) left irc: Quit: brunolambert | |
13:37 | chupacabra (~chupacabr@cpe-70-112-10-45.austin.res.rr.com) left irc: Ping timeout: 240 seconds | |
13:38 | mistik1 (mistik1@unaffiliated/mistik1) joined #ltsp. | |
14:00 | <andygraybeal> abeehc, i got a 2848 :)
| |
14:00 | just hooked it up and turned it on!
| |
14:00 | reset the config :)
| |
14:01 | your right, the java applet is entirely slow
| |
14:18 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Quit: Leaving. | |
14:25 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) left irc: Ping timeout: 252 seconds | |
14:28 | Mip5 (~chatzilla@208.72.71.69) joined #ltsp. | |
14:30 | <Mip5> Afternoon Gang - when I logon to a server, it shows that some updates are available. I've run apt-get update && apt-get dist-upgrade, and have installed the updates. When I check for updates, none show up. However, if I restart the server and ssh back into it, I once again multiple updates. My other ubuntu machines don't do this.
| |
14:31 | Gadi (romm@ool-18bbe47a.static.optonline.net) left #ltsp. | |
14:32 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) joined #ltsp. | |
14:35 | bobby_C (~bobby@188.20.161.210) joined #ltsp. | |
14:35 | Ahmuck (~quietly@p178n22.ruraltel.net) joined #ltsp. | |
14:36 | Ahmuck-Sr (~quietly@p178n22.ruraltel.net) left irc: Ping timeout: 276 seconds | |
14:37 | artista_frustrad (~artista_f@187.6.155.246) joined #ltsp. | |
14:37 | Mip5 (~chatzilla@208.72.71.69) left irc: Ping timeout: 264 seconds | |
14:44 | dlezcano (~dlezcano@AToulouse-159-1-53-173.w92-134.abo.wanadoo.fr) left irc: Read error: Operation timed out | |
14:55 | <abeehc> andygraybeal: hekc yeah i don't think you'll regret that purchase...
| |
15:02 | jammcq (~jam@70-91-230-209-BusName-Michigan.hfc.comcastbusiness.net) left irc: Quit: leaving | |
15:20 | bobby_C (~bobby@188.20.161.210) left irc: Ping timeout: 252 seconds | |
15:27 | ogra_ (~ogra@p5098ed03.dip0.t-ipconnect.de) left irc: Ping timeout: 276 seconds | |
15:28 | <highvoltage> vagrantc: how would you prefer I provide my source packages to you? e-mail? http? other?
| |
15:49 | <vagrantc> highvoltage: VCS?
| |
15:52 | chupacabra (~chupacabr@cpe-70-112-10-45.austin.res.rr.com) joined #ltsp. | |
15:59 | ball (~ball@c-98-226-194-183.hsd1.il.comcast.net) joined #ltsp. | |
16:04 | shamino (~shamino@a91-156-185-177.elisa-laajakaista.fi) left irc: Remote host closed the connection | |
16:10 | ball (~ball@c-98-226-194-183.hsd1.il.comcast.net) left irc: Read error: Operation timed out | |
16:11 | shamino (~shamino@a91-156-185-177.elisa-laajakaista.fi) joined #ltsp. | |
16:21 | xet7 (~xet7@bbwirelessgw2-fee2dc00-171.dhcp.inet.fi) left irc: Ping timeout: 258 seconds | |
16:21 | herman_ (~herman@p579876DC.dip.t-dialin.net) left irc: Quit: Leaving | |
16:35 | staffencasa (~staffenca@128.193.147.241) left irc: Read error: Connection reset by peer | |
16:45 | japerry (~japerry@drupal.org/user/45640/view) left irc: Ping timeout: 240 seconds | |
16:52 | japerry (~japerry@drupal.org/user/45640/view) joined #ltsp. | |
16:56 | ||
17:04 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) left irc: Quit: leaving | |
17:31 | drdata (~drdata@pool-173-57-189-158.dllstx.fios.verizon.net) left irc: Quit: drdata | |
17:32 | drdata (~drdata@pool-173-57-189-158.dllstx.fios.verizon.net) joined #ltsp. | |
17:40 | japerry (~japerry@drupal.org/user/45640/view) left irc: Ping timeout: 252 seconds | |
17:46 | japerry (~japerry@drupal.org/user/45640/view) joined #ltsp. | |
18:05 | MorningSon (~MorningSo@cpe-66-25-84-220.satx.res.rr.com) joined #ltsp. | |
18:38 | japerry (~japerry@drupal.org/user/45640/view) left irc: Ping timeout: 260 seconds | |
18:45 | japerry (~japerry@drupal.org/user/45640/view) joined #ltsp. | |
18:45 | japerry (~japerry@drupal.org/user/45640/view) left irc: Client Quit | |
19:23 | ball (~ball@c-98-226-194-183.hsd1.il.comcast.net) joined #ltsp. | |
20:34 | ball (~ball@c-98-226-194-183.hsd1.il.comcast.net) left irc: Quit: leaving | |
20:45 | andygraybeal (~andy.gray@obsidian.casanueva.com) left irc: Read error: Connection reset by peer | |
20:54 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
21:32 | cyberorg (~cyberorg@opensuse/member/Cyberorg) joined #ltsp. | |
21:54 | fosser_josh (~prathames@59.95.29.38) joined #ltsp. | |
22:16 | alkisg (~alkisg@ubuntu/member/alkisg) left irc: Ping timeout: 250 seconds | |
22:27 | alkisg (~alkisg@ubuntu/member/alkisg) joined #ltsp. | |
22:49 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) joined #ltsp. | |
23:07 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) left irc: Ping timeout: 276 seconds | |
23:25 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) joined #ltsp. | |
23:28 | vagrantc (~vagrant@c-24-21-191-93.hsd1.or.comcast.net) left irc: Client Quit | |
00:00 | --- Sat Apr 23 2011 | |