Home > Articles > Open Source > Linux/UNIX/Open Source Operating Systems

This chapter is from the book

Managing Your LTSP Server

Updating the Server

Shortly after installation, you may notice a balloon message appear in the top right-hand corner of the screen informing you that updates are available for your system. It is advisable that you install updates because they help keep your system secure and bug free. To install these updates, simply click on the balloon or launch the update manager by going to the System > Administration > Update Manager link in the main menu.

You will be prompted for your password and then presented with a list of updates available for your system. If there are any updates that you do not want to install, simply untick them from the list at the top of the window. When you are satisfied, click on the Install Updates button. Downloading all the required packages from the Internet will take a while to complete, especially if this is the first time you have run the update manager since installation.

Installing Applications

By default, the operating system is configured to talk to all of the software repositories. These are explained in greater detail in Chapter 5 and in Appendix B. There are many more packages available in the universe and multiverse repositories; however, some may have different licensing. By using the Software Sources package, you can modify this list of repositories. Simply select System > Administration > Software Sources from the menu, and you will be presented with the Software Sources screen.

Whether you are running a thin client system or you installed Ubuntu or Edubuntu in a non-LTSP mode, you will at some point need to install extra applications onto the system. This is simple in either Ubuntu or Edubuntu and is achieved by selecting Applications > Add/Remove from the main menu at the top left of the screen. Enter your password when prompted, and you will see the Add/Remove Applications window appear.

In addition to being the central point for installing all extra software for your system, the Add/Remove Applications program has a special section just for education. Clicking on this will filter the available set of applications to show those that have a high relevance to educational establishments. At the time of writing there were over eighty applications available in this section, and the list keeps growing, as shown in Figure 9-14.

In the application list you will see some checkboxes next to the application names. If you want to install a particular application, simply tick the checkbox next to its name. You can select multiple applications before clicking the Apply button.

Once you have chosen your applications and clicked the Apply button, you will be guided through the rest of the procedure and asked to confirm your selections prior to installation. Edubuntu will now collect the packages from the Internet or the Edubuntu CDs and begin installing them on your machine.

If you have chosen a few packages, the installation step may take a while. Installing software in this way is easy because Add/Remove Applications will handle all the required dependencies and install those, too.

Once the install has completed, the new applications should now be available on your Edubuntu machine. If you are running a thin client system, this now means that all the clients have the software available to them and can use it right away.

Removing Applications

Just as it was easy to install applications in Edubuntu, the same applies for removing them. The process is just the exact reverse of the install procedure. Load up the Add/Remove Applications utility and simply untick the applications that you no longer want to be installed.

Clicking on the Apply button will prompt you to confirm your decision before uninstalling the packages you selected. The package will now no longer be available on the Edubuntu server or on any thin client machine that boots from the network.

Changing Your IP Address

At some point it may become necessary to change the IP address of the server. Changing the IP address of a normal machine would not usually have much consequence on the client machine. However, in an LTSP environment, changing the IP address will result in clients being unable to log in. This is because when the LTSP root is built, it is populated with SSH authorization keys, which allow authentication between the client and the server without a password.

The procedure for solving this issue is fairly simple. First, you must load a terminal window, using the Applications > Accessories > Terminal link in the main menu. Once this has loaded, you need to run the LTSP SSH key update script by typing the following command into the terminal and pressing Enter. You will be prompted for your password.

sudo ltsp-update-sshkeys

Local Devices over LTSP

Since Ubuntu Edgy 6.10, Edubuntu has included the update to LTSP to allow what are called local devices. Plugging a USB storage device into a thin client machine, for example, will trigger the local devices mechanism, and the device will be correctly mounted and shown on the desktop of the client machine.

When using USB sticks with Ubuntu, you would normally have to unmount the device before removing it physically. This is so that Ubuntu has time to write all the data it needs to the USB stick and can safely unmount it. In the LTSP environment, using a USB stick is a little different. There is no unmount option because the data is written to the USB stick on a very regular basis. Hence you do not need to unmount it and can just remove it once the computer has finished writing information to it.

Local device support is set up by default in Edubuntu; however, to use it you must add to the fuse group the users who require access to such support. You can do this from the user manager. Start by going to System > Administration > Users and Groups option. From here, select the user to whom you wish to give local device access and click on the User Properties button. Click on the User Privileges tab, and from here tick the checkbox for allowing use of fuse filesystems, as shown in Figure 9-15.

Sound over LTSP

Since Ubuntu Dapper 6.06, Edubuntu has the ability to play sound through the speakers of the client machine. For versions of Edubuntu prior to 6.10 and LTSP setups installed on top of Ubuntu, you must add an entry to the /opt/ltsp/i386/etc/lts.conf file to enable sound for client machines.

The easiest way to edit this file is to hold down Alt-F2, which will bring up the run command dialog box. Type in the following command:

gksudo "gedit /opt/ltsp/i386/etc/lts.conf"

Clicking OK will bring up an editing window. Make sure to have at least a [default] section in the lts.conf file where you will add the following line:

SOUND=True

For all versions after 6.10 of Edubuntu, this is already done for you, and sound should work on client machines out of the box.

Printing over LTSP

There are two ways in which printing can be achieved in an LTSP environment. The first is for a printer to be connected directly to the server. In this instance, printing is set up in the usual way. You can find more details on this in Chapter 4.

The second way to allow printing is to make one of the workstation machines a print server. This feature was introduced in Ubuntu Edgy 6.10. Up to three printers can be attached to the workstation using the parallel and USB ports. LTSP uses the jetpipe program on the workstation to redirect printing from the server to the workstation. In order to attach a printer to the workstation, a change must be made to the /opt/ltsp/i386/etc/lts.conf file. The following is an example of some configuration options.

[00:4C:69:73:61:00]
   PRINTER_0_DEVICE = /dev/lp0
   PRINTER_1_DEVICE = /dev/usblp0

This will cause the jetpipe program to begin running as a background process and will open ports 9100 and 9101, where it will listen for a print stream from the server. This stream will then get redirected to the printer attached to the parallel port on the computer.

In this example, we use the client’s MAC address to identify it on the network. Unless you know the MAC address of the client machine that the computer is connected to, you will need to run the following command to find it. When the client boots up, it will display its IP address in the bottom right of the login screen. Simply replace the <IP> in the following chunk of code with that IP address to find the MAC address of the client machine.

IP=<IP> ; ping -c1 $IP | grep "NULL"; arp -a | grep $IP

Here is an example:

pete@ubunt:~$ IP=192.168.16.5; ping -c1 $IP | grep "NULL"
pete@ubunt:~$ arp -a | grep $IP
? (192.168.16.5) at 00:12:50:30:5A:E5 [ether] on eth0
pete@ubunt:~$

All that is needed now is to create the print queue on the server, so that the client machines know the printer exists. This can be done in the usual way of adding a printer as shown in Chapter 4. The jetpipe program allows the workstation printer to be identified as an HP JetDirect system. To add the printer to the server, you will need to enter the IP address of the workstation and the port that the jetpipe service is listening on. The first printer you connect to a workstation will be on 9100, the second on 9101, and the third on 9102.

Using Other Window Managers with Edubuntu

Using other window managers with Edubuntu is easy. With versions from Edubuntu Edgy 6.10 forward, adding a window manager will result in a new option being present in the LDM login screen. This will allow you to choose which window manager to use when logging in. In order to use a new window manager, you must install the appropriate package. You have the following choices:

  • xubuntu-desktop: a lightweight window manager, perfect for lower-end systems
  • kubuntu-desktop: a feature-rich window manager
  • ubuntu-desktop: the standard window manager, used by default

To install one of these packages, you should first load a terminal window, using the Applications > Accessories > Terminal link in the main menu, and then use the following command.

sudo apt-get install xubuntu-desktop

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020