Janno Sannik | 4 May 2011 10:04
Picon

Re: Lower footprint kernel

I have now set up everything I need except the users.
Can anyone give me a little advice how to get the final stage working:

I have ~30 thunk clients in hotellrooms. I would like all the users to 
be "guest". That means their session (and history, user data) lives only 
until logout/reboot.
1) Should I create some kind of startup file that runs on every logon 
that flushes the user home directory or is there some more elegant way?
2) Is there a workaround for not having separate user for every thin client?

Thanks!

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Stéphane Leblond | 5 May 2011 10:44
Picon
Favicon

DVI and VGA

Hi,

I try to use my thin client with a monitor (DVI) and a video-projector
(VGA) but it doesn't work correctly. My login window is out of the
screen. Is there a parameter to set in lts.conf ?

Thanks

--

-- 
stef

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

relosrl | 5 May 2011 15:11
Picon

1 client work, 2 not

My dhcp.conf

#
# Default LTSP dhcpd.conf config file.
#

authoritative;

subnet 192.168.1.0 netmask 255.255.255.0 {
     range 192.168.1.11 192.168.1.20;
     option domain-name "NNNN";
     option domain-name-servers 192.168.1.10;
     option broadcast-address 192.168.1.255;
     option routers 192.168.1.1;
#    next-server 192.168.1.10;
#    get-lease-hostnames true;
     option subnet-mask 255.255.255.0;
     option root-path "/opt/ltsp/i386";
     if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
         filename "/ltsp/i386/pxelinux.0";
     } else {
         filename "/ltsp/i386/nbi.img";
     }

host ws001 {
   hardware ethernet 00:00:00:00:00:00;
   fixed-address 192.168.1.12;
   filename "opt/ltsp/images/i386.img";}

host ws002 {
(Continue reading)

relosrl | 5 May 2011 15:14
Picon

[SOLVED] Ltsp - ubuntu natty - ecdsa

Problem with HP package conflict

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

Janno Sannik | 5 May 2011 15:56
Picon

Re: 1 client work, 2 not

On 5/5/2011 4:11 PM, relosrl wrote:
> My dhcp.conf
>
> #
> # Default LTSP dhcpd.conf config file.
> #
>
> authoritative;
>
> subnet 192.168.1.0 netmask 255.255.255.0 {
>       range 192.168.1.11 192.168.1.20;
>       option domain-name "NNNN";
>       option domain-name-servers 192.168.1.10;
>       option broadcast-address 192.168.1.255;
>       option routers 192.168.1.1;
> #    next-server 192.168.1.10;
> #    get-lease-hostnames true;
>       option subnet-mask 255.255.255.0;
>       option root-path "/opt/ltsp/i386";
>       if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
>           filename "/ltsp/i386/pxelinux.0";
>       } else {
>           filename "/ltsp/i386/nbi.img";
>       }
>
> host ws001 {
>     hardware ethernet 00:00:00:00:00:00;
>     fixed-address 192.168.1.12;
>     filename "opt/ltsp/images/i386.img";}
>
(Continue reading)

relosrl | 5 May 2011 16:11
Picon

Re: 1 client work, 2 not

Il 05/05/2011 15.56, Janno Sannik ha scritto:
> On 5/5/2011 4:11 PM, relosrl wrote:

>>
> Should that start with a "/" =>
>
> filename "/opt/ltsp/images/i386.img";}
>

No it's fine without "/"
I try with "cntr+b" at PXE start with and without, no difference.

>> }
>>
>> ws002 work, ws001 ws002 no.
> are they identical hardware?

No different.

>> This is the error:
>> Booting from filename "opt/ltsp/images/i386.img"
>> tftp://192.168.1.10/opt/ltsp/images/i386.img. File not found (0x2d12603b)
>>
>> I try to start from CD and from BIOS

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
(Continue reading)

Gideon Romm | 5 May 2011 17:02

Re: 1 client work, 2 not

You are trying to load the rootfs over tftp?!

That's not how LTSP works. You want to load the pxe bootloader. The
syntax should be:

filename "/ltsp/i386/pxelinux.0";

as in the subnet stanza.

-Gadi

On Thu, May 5, 2011 at 10:11 AM, relosrl <relosrl@...> wrote:
> Il 05/05/2011 15.56, Janno Sannik ha scritto:
>> On 5/5/2011 4:11 PM, relosrl wrote:
>
>>>
>> Should that start with a "/" =>
>>
>> filename "/opt/ltsp/images/i386.img";}
>>
>
> No it's fine without "/"
> I try with "cntr+b" at PXE start with and without, no difference.
>
>>> }
>>>
>>> ws002 work, ws001 ws002 no.
>> are they identical hardware?
>
> No different.
(Continue reading)

Richard Doyle | 5 May 2011 17:33
Favicon

Re: 1 client work, 2 not

On Thu, 2011-05-05 at 15:11 +0200, relosrl wrote:
> My dhcp.conf
> 
> #
> # Default LTSP dhcpd.conf config file.
> #
> 
> authoritative;
> 
> subnet 192.168.1.0 netmask 255.255.255.0 {
>      range 192.168.1.11 192.168.1.20;
>      option domain-name "NNNN";
>      option domain-name-servers 192.168.1.10;
>      option broadcast-address 192.168.1.255;
>      option routers 192.168.1.1;
> #    next-server 192.168.1.10;
> #    get-lease-hostnames true;
>      option subnet-mask 255.255.255.0;
>      option root-path "/opt/ltsp/i386";
>      if substring( option vendor-class-identifier, 0, 9 ) = "PXEClient" {
>          filename "/ltsp/i386/pxelinux.0";
>      } else {
>          filename "/ltsp/i386/nbi.img";
>      }
> 
> host ws001 {
>    hardware ethernet 00:00:00:00:00:00;
>    fixed-address 192.168.1.12;
>    filename "opt/ltsp/images/i386.img";}
> 
(Continue reading)

Russell Brown | 5 May 2011 17:44

Openoffice Spreadsheet really sluggish on thin client


Anyone know of any pointers to tuning oocalc when using it on a thin
station (LTSP 4 if that's relevant).

On even a modest spreadsheet it's really really slugish when dealing
with blocks of cells.

-- 
 Regards,
     Russell
 --------------------------------------------------------------------
| Russell Brown          | MAIL: russell@... PHONE: 01780 471800 |
| Lady Lodge Systems     | WWW Work: http://www.lls.com              |
| Peterborough, England  | WWW Play: http://www.ruffle.me.uk         |
 --------------------------------------------------------------------

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net

relosrl | 5 May 2011 17:57
Picon

Re: 1 client work, 2 not

Il 05/05/2011 17.33, Richard Doyle ha scritto:
> On Thu, 2011-05-05 at 15:11 +0200, relosrl wrote:

>> host ws001 {
>>     hardware ethernet 00:00:00:00:00:00;
>>     fixed-address 192.168.1.12;
>>     filename "opt/ltsp/images/i386.img";}
>>
>> host ws002 {
>>     hardware ethernet 00:00:00:00:00:00:00;
> Too many 00 here. Is this the actual content of your dhcpd.conf file, or
> have you obfuscated it?
>

Obfuscated, the one that works have an octet more. But I don't think 
this is the problem.

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_____________________________________________________________________
Ltsp-discuss mailing list.   To un-subscribe, or change prefs, goto:
      https://lists.sourceforge.net/lists/listinfo/ltsp-discuss
For additional LTSP help,   try #ltsp channel on irc.freenode.net


Gmane