By default the Babbage Karmic image will run a live session that offers installation to USB disk/key or SD card. This page describes how to switch a Babbage Desktop image to different variants of the Ubuntu installation process.<
> As the Ubuntu liveCD also the Babbage image knows different installation variants.<
> Due to redboot not having framebuffer support builtin we can not present a seclection menu on image boot.<
> The commands below will help to set an image or SD card up for certain installation variants.<
> /!\ Replace /dev/mmcblk0 in the commands below with the device you have written your image to. Note that you can also modify the image directly before writing it to SD by pointing both -d options in the command to your downloaded desktop image. Make sure to have the redboot-tools package installed, the redboot-cmdline command is contained in there. == Only Ubiquity == No live session, just run the installer in fullscreen. {{{ sudo redboot-cmdline -w "$(echo $(sudo redboot-cmdline -r -d /dev/mmcblk0)|sed s/\\\//'\\'\\\//g) only-ubiquity" -d /dev/mmcblk0 }}} == OEM Install (for manufacturers) == Do a cloneable installation that fires up a personalization and configuration helper on first boot (setting up user, language, timezone, machine name etc). {{{ sudo redboot-cmdline -w "$(echo $(sudo redboot-cmdline -r -d /dev/mmcblk0)|sed s/\\\//'\\'\\\//g) oem-config\/enable=true" -d /dev/mmcblk0 }}} == Integrity Check == Check image for defects {{{ sudo redboot-cmdline -w "$(echo $(sudo redboot-cmdline -r -d /dev/mmcblk0)|sed s/\\\//'\\'\\\//g) integrity-check" -d /dev/mmcblk0 }}}