Earlier today I prepared to demo the latest daily build of Ubuntu Touch for the San Francisco Ubuntu Hour on a Nexus 7 device. I needed to do a few things.
- I followed the directions. wiki.ubuntu.com/Touch The well done tool does all the work.
phablet-flash cdimage-touch
Patience is a virtue, even when the messages on screen give an impression of doing nothing. The device reboots several times during the process. - Using a real keyboard for typing is much easier than the soft keyboard so after connecting to wifi I opened a terminal.
sudo apt-get update; sudo apt-get install openssh-server
. The default password for the user phablet is phablet. - On the device
ifconfig
will show the IP number provided by your network. In my case it was 192.168.0.103. So to connect from my computer:ssh phablet@192.168.0.103
- Demoing a device that displays UTC time is less than impressive. In the Release notes it describes how to change the timezone using two commands.
echo "America/Los_Angeles" | sudo tee /etc/timezone
sudo dpkg-reconfigure --frontend noninteractive tzdata - I wanted to run the Intro Tour again that happens when you FIRST launch the device. Many thanks to the people who provided assistance in the
#ubuntu-touch
IRC channel on freenode.net today. I put the following commands in a file named./demo
(using pico or vi) thenchmod +x ./demo
to make it executable. The file./demo
contains these three lines. One of them is very long indeed.
#!/bin/shdbus-send --system --print-reply --dest=org.freedesktop.Accounts /org/freedesktop/Accounts/User32011 org.freedesktop.DBus.Properties.Set string:com.canonical.unity.AccountsService string:demo-edges variant:boolean:true
sudo -iu phablet /sbin/restart unity8
- Each time I wanted to show a new person the Nexus 7 running Ubuntu Touch I ran
./demo
in the terminal, waited for unity8 to restart and handed it to them.
The Intro Tour really does help new users get started and build confidence. The tour is much better than a clumsy verbal lecture/description and helps leave a much more robust overall impression.
There were still a set of recurring questions from new users about the new gestures. The gestures take some time to learn and feel natural. For example, the web browser’s default URL address bar is hidden from view and requires a bottom edge gesture to reveal it. Years of expectations have conditioned people to expect command bars at the top of a window. Every UI must balance discoverability with it’s display features.
Ubuntu Touch isn’t self-documenting yet and is still a technology preview. The Touch UI is breaking new ground, providing a genuinely new interface that takes advantage of improvements in touch screens, processing power and battery life and moves beyond our customary window, icon, menu and pointer (aka. WIMP) metaphors. Innovation in HCI is much more risky than other technological improvements. I applaud Canonical for providing a Free Software user experience that has a competitive chance in the evolving post-WIMP consumer computing landscape.
