To reduce the number of ISO tests required during each release cycle, the *buntu "alternate install" image was discontinued after Precise. The alternate install was based on Debian-installer (affectionately known as "d-i"), which provides many more options during installation than Ubuntu's Ubiquity graphical installer.
Alas, the quality of Ubiquity appears to be decreasing with each subsequent release. Fortunately, building a system via the Debian installer is still possible, because the Ubuntu server images are built around d-i rather than Ubiquity. Browse to http://releases.ubuntu.com/, select your desired release, and download the "Server install image." Burn it to a CD-ROM or copy it to a USB drive, and then use this to boot your computer into the installer.
I like to enable "expert mode" because it allows selecting a mirror; for those in the U.S., mirror.anl.gov is likely to be the fastest. Near the end, you'll be presented a list of server packages -- don't install any of these. Allow the installer to finish and reboot your computer. The next step is to clean up the minimal amount of true server-related stuff that's still remaining:
(The second command purges configuration files not removed by the first one.)
Finally, install the Kubuntu desktop:
Alas, the quality of Ubiquity appears to be decreasing with each subsequent release. Fortunately, building a system via the Debian installer is still possible, because the Ubuntu server images are built around d-i rather than Ubiquity. Browse to http://releases.ubuntu.com/, select your desired release, and download the "Server install image." Burn it to a CD-ROM or copy it to a USB drive, and then use this to boot your computer into the installer.
I like to enable "expert mode" because it allows selecting a mirror; for those in the U.S., mirror.anl.gov is likely to be the fastest. Near the end, you'll be presented a list of server packages -- don't install any of these. Allow the installer to finish and reboot your computer. The next step is to clean up the minimal amount of true server-related stuff that's still remaining:
Code:
sudo tasksel remove server sudo apt-get purge $(dpkg -l | awk '/^rc/ {print $2}')
Finally, install the Kubuntu desktop:
Code:
sudo tasksel install kubuntu-desktop
Comment