GnomeUserInterface

Revision 8 as of 2005-11-04 18:32:25

Clear message

Summary

The UbuntuExpress installer interface appears as a window on the live CD desktop. It asks for language, keymap, your name, computer name, login name, password, timezone and location, and partitioning details. The interface is written in Python, invoking backend routines to act on your choices.

Rationale

Use cases

Scope

Since we'll be doing a Qt-based interface as well for KubuntuExpress, the user interface must be cleanly separated from the functional installer backend. The [http://interactors.coop/~trunks/installer/ Guadalinex installer] already does this quite well, but both the front end and the back end need significant work to meet our requirements.

Design

Installation experience is theater. The installer must wow reviewers, and give everyone a good impression of the system they are installing.

Invocation and overall design

The Live CD desktop should contain an "Install Ubuntu Permanently" icon, consisting of an arrow overlaid on the Ubuntu logo.

attachment:overall-layout.png

The installation window is not full screen, but just big enough to show the largest page (the partitioning tool). The window has the title "Install Ubuntu", and is not resizable.

Welcome to the Ubuntu installer

attachment:language.png

The first page of the installer lets you choose your language. On x86, this defaults to the language choice that was made in the bootloader; otherwise, it defaults to . It also displays a welcome message and explanatory blurb in the selected language (which eliminates the appearance of wasting time if you did choose the appropriate language in the bootloader).

  • Once you answer a few questions, Ubuntu can be installed on this computer so you can run the system at full speed and without the CD. Answering the questions should take about five minutes.

Future work: "To use accessibility features while installing, press the Space key now."

Keyboard layout

attachment:keymap.png

The next step is asking for the keymap, so that answers to later questions can be typed successfully.

Personal information

attachment:personal.png

  • What is your name?
  • What login name would you like?
    • This is the name you will use when logging in to Ubuntu. If more than one person will use this computer, you can set up other accounts later.

The name defaults to the first word of the person's name, converted to lower case.

  • Choose a password (enter twice)

Future work: "Who will be using this computer?" -- multiple names at once, to encourage use of individual accounts.

Computer name

  • What name would you like to give your computer?
    • This name will be used if you make your computer visible to others on a network.

This defaults to the hostname from DHCP/DNS if available, otherwise "ubuntu".

Initially, the field is restricted to ASCII characters. The name is used as-is for Avahi configuration, and a normalized version is used as the hostname. The hostname has spaces converted to dashes, and other punctuation stripped; this conversion is presented live during the input.

Future work: Provide some way of letting people enter the hostname manually.

Timezone and location

attachment:time-and-place.png

  • Choose the city nearest to you, for timezone
    • map (Can we just highlight the country/timezone boundries on mouseover so you deon't select a city but a whole region? Lets try to avoid precision clicking. I would even prefer a dropdown for timezone to this. We could even suggest a time zone if an ntp server can be reached based off of their computer's clock.)
  • List of country-like entities (used for suggesting default keymaps, currencies, etc)
  • allows faster software updates -- closer mirrors.

If time: Highlight the entire timezone on the map.

Partitioning

See UbuntuExpress/PartitioningTool.

Future work: Let people transfer non-dot files and fonts from the home folder.

Progress information

A single progress bar should be displayed at the end.

TBD: Work out how to allow cancelling installation of language packs. ( Skip )

Show some sort of demo (Flash v3?) during the installation progress. Put this in an expander (expanded by default), so people can see just the progress if they want.

Implementation

Since the Guadalinex team has already implemented a significant amount of this, we will use their work as a base. However, discounting minor user interface tweaks, the current code base has the problem that it duplicates both code and translatable strings from the installer, which causes problems such as desynchronisation of functionality with the installer (e.g. username/password validation in current ubuntu-express produces different results from the installer's validation code) and the loss of many existing translations of strings from the installer.

I believe that both issues can be solved by borrowing infrastructure from [:OEMInstaller:oem-config], where I had to address similar problems and did so using a debconf protocol filter: debconf-using code (e.g. installer code) can be run unmodified inside a wrapper that runs custom user interface code rather than a standard debconf frontend, and translated strings can be extracted directly from the debconf database. -- ColinWatson

Aside from that, a quick glance over the Guadalinex code suggests that its user interface has reasonably good separation between frontend and backend: the frontend asks all questions up-front and then runs widget-set-independent backend code that feeds answers into the debconf database and performs the installation proper. (Integration with oem-config may suggest answers reaching the debconf database while the frontend is running, but that's OK.)

  • Move debconffilter from oem-config into debconf proper.

Code

Data preservation and migration

Outstanding issues

BoF agenda and discussion

Future work