LTSP |
Installation root@serv1:~# apt-get install dhcp3-server debconf-utils debootstrap fuse-utils libasound2-plugins ltsp-server \ Edit /etc/dhcp3-server/dhcpd.conf according to your needs and your network features. The following is our non-authoritative, mac-address based, vdd server dhcpd configuration file (our vdd net is a subnet of a wider LAN). You can put here your thin-clients and, if does not another authoritative dhcp server exist in the LAN, your virtual machines. # VDD net Edit /etc/default/dhcp3-server INTERFACES="eth0" Restart you dhcp server root@serv1:~# /etc/init.d/dhcp3-server restart Build ltsp-client image *If you are, as is the case, on a 64-bit system but your clients have another architecture you have to use the --arch option root@serv1:~# ltsp-build-client --arch i386 Then update the client image. * NOTE that you must do that every time you make some modifications in the ltsp-client root, id est in the directory /opt/ltsp/i386 * * See LTSP documentation for further details * root@serv1:~# ltsp-update-image Edit /etc/default/tftpd-hpa RUN_DAEMON = yes Edit /etc/inetd.conf # tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftpboot Restart both services root@serv1:~# /etc/init.d/tftpd-hpa restart // Still we are not really using lts.conf Edit /etc/exports /opt/ltsp 192.168.108.0/255.255.255.0(ro,no_root_squash,async,no_subtree_check) and launch: root@serv1:~# exportfs -a Finally, if not already done, create at least one normal user on vdd server. It (or they) will be the user (or users) to login with in the ltsp thin client desktop environment and to do further interesting things ... ;) root@serv1:~# adduser user1 |