I was working through a kiosk computing question yesterday. Somebody is trying to deploy Ubuntu as a single-application appliance in a way that they can hand the machine to a client and it'll let them configure a network on first-boot but after that it'll boot into Firefox.
The booting into Firefox part is simple but configuring networks is somewhat harder. nmcli
is an option but what if the people handling these machines doesn't understand it? I'd like a graphical method.
Also there's the problem that there might not be an installed underlying desktop environment. Assume this is an Ubuntu Server installed with X, Network Manager and Firefox but no Unity/Gnome/KDE or their various configuration applications.
Version 0.9.10 of Network Manager —with its lovely curses-based nmtui
command-line app— didn't make it into 14.04... So that's off the cards. I'd prefer to avoid any command line interaction on this one because I'm frankly not sure if the deploying people have password access to the command line. They might only have an on-screen keyboard.
We need to tick the following boxes:
- So simple your grandma could use it.
- Graphical so we don't have to force somebody to log in via a TTY
- Standalone so it doesn't need a desktop running in the background
- Dependency-light so we don't need to install half a desktop to run it.
What applications are available and (if they're part of a desktop) how do you install them in the lightest possible way?
The original question isn't mine but I can test answers as I have a kiosk-style machine.
jessie
, and build it fortrusty
? Should be far more simple, and will get @Olinmtui
as well. – muru Jul 04 '14 at 23:06