LTSP Management

Updating your LTSP server

When logging onto the LTSP network as an administrator you will sometimes find a bubble appear in the top right informing you that there are updates available for you computer. Any updates you apply here will automatically be applied to all clients, though they may require a reboot. This is because LTSP clients all use the same set of applications on the server. When this prompt appears click the small red icon updateicon.png , and enter your password to display the following application.

updateavailable.png

This application allows you to apply all available updates for your computer quickly and easily. Clicking on the Check button, checks to see if there are any more updates since the computer last checked. If you are going to perform the updates, it's a good idea to click this button. Once the check is completed, you are ready to update your system.

Be sure to check how much information is going to be downloaded, if you are low on bandwidth, or using a slow connection. Click on the Update button, to set the computer downloading and installing updates. Once clicked, if there are any verification issues, these will be shown. If you are happy that the packages come from a trusted source, you can click ok to continue. First, your computer will download all available packages and display a screen similar to that below

updatedownload.png

After all packages have finished downloading, you will be presented with the progress box, which shows how far the computer has come in updating. If you wish you can click the word terminal to show more detailed information about the updates as shown below.

updateinstall.png updateinstallterminal.png

After the updates have completed, the computer will inform you if you need to restart in order for the updates to come into effect. You can either shutdown when you wish, or click the small blue icon restarticon.png in the top right hand corner, and you will be presented with this question.

updaterestart.png

Warning /!\ IMPORTANT If you restart your computer without shutting down your clients, their computers will stop responding and they may lose data. Be sure all clients are logged out before restarting the server.

Updating your LTSP clients NFS root

At some point in the future, updates will become available for your LTSP server. You must remember that although you may have applied all the updates to the server itself, as in the instructions....HERE it is likely that the LTSP chroot will also need updating. To do this you must open up a terminal and use the following commands.

First make sure the Client environment has the same Package lists as the Server, to achieve that, you will copy the sources.list file from the Server to the Client environment.

sudo cp /etc/apt/sources.list /opt/ltsp/i386/etc/apt/

Now issue the command below.

sudo chroot /opt/ltsp/i386

This will change your root directory to be the LTSP clients root directory. In essence, anything you now do inside here, will be applied to the LTSP clients NFS root. This is a separate small set of files that are used to boot the clients into a usable, and enable them to contact the LTSP server. Once inside this shell, we must type the following command to obtain the latest list of packages from the apt servers.

apt-get update

Once this has completed you will have to upgrade the software in the chroot by running the following command

apt-get upgrade

Once all upgrades have finished, you must leave the chroot by either typing 'exit' or by using the key combination Ctrl+D. This will return you to the root of the server.

If your kernel has been upgraded you must run the LTSP kernel upgrade script, to ensure that your LTSP root uses the latest version. This is performed by running the command below

sudo ltsp-update-kernels

You will see some output similar to the following

pete@edubuntu:~$ sudo ltsp-update-kernels
`/opt/ltsp/i386/boot/vmlinuz' -> `/var/lib/tftpboot/ltsp/vmlinuz'
`/opt/ltsp/i386/boot/vmlinuz-2.6.15-20-386' -> `/var/lib/tftpboot/ltsp/vmlinuz-2.6.15-20-386'
`/opt/ltsp/i386/boot/initrd.img' -> `/var/lib/tftpboot/ltsp/initrd.img'
`/opt/ltsp/i386/boot/initrd.img-2.6.15-20-386' -> `/var/lib/tftpboot/ltsp/initrd.img-2.6.15-20-386'
Not on powerpc, skipping yaboot installation.
Skipping etherboot images.  Install the mknbi package if you need them.
Skipping openfirmware images.  Install the mkvmlinuz package if you need them.
Skipping netabootwrap images.  Install the aboot package if you need them.

All of your clients will now use the latest kernel upon their next reboot.

Changing the IP of your LTSP server

At some point in time, it may become necessary to change the IP address of your LTSP server. Normally this does not present an issue, but LTSP servers and clients communicate over an encrypted channel and require all SSL certificates to be updated. Without this update, no LTSP clients will be able to log in. This is done by simply opening a terminal and running the following command.

sudo ltsp-update-sshkeys

You should see output similar to the following, and your clients will now be able to log in again.

pete@edubuntu:~$ sudo ltsp-update-sshkeys
# Creating dsa-hostkey for edubuntu
# Creating rsa-hostkey for edubuntu
# Creating dsa-hostkey for 172.29.103.77
# Creating rsa-hostkey for 172.29.103.77

This workstation isn't authorized to connect to server error message on client, please run commands sudo ltsp-update-sshkeys and sudo ltsp-update-image (in this order) reference: https://bugs.launchpad.net/ubuntu/+source/ltsp/+bug/144296

HowToCookEdubuntu/Chapters/LTSPManagement (last edited 2009-04-30 01:00:45 by adsl190-027000006)