Quote:
Hello
i just bought the efika mx open client and i'm very glad to get one.
I plan to use it first as a server (web -ruby on rails or php- and ftp server)and planned to install debian. But as ubuntu 9.10 is preinstalled i was wondering if it was possible to get an optimized image of ubuntu desktop minimal and a server one ? so we can choose which one to get pre installed or to install via sd card thereafter.
Thanks for your answer.
By te way is there any docs, wiki, how to ?
The preinstalled Ubuntu system is basically the result of the "ubuntu-minimal" metapackage plus a few extras ("nano" editor, wireless-crda, wireless-tools, filesystem tools, "parted" partitioner) to get you started so you don't have to go out to the net to get anything just to format an SD card or edit a configuration file to your liking.
The system is configured to pick packages from the standard Ubuntu ARM repository; if you want a package, just follow the usual rules for Ubuntu.
To update the package lists from the repos:
Code:
sudo apt-get update
To upgrade the current package set to the latest (it will pull -updates, -backports and -proposed variants from the above):
Code:
sudo apt-get upgrade
These first two are recommended for everyone getting their system for the first time.
If you want Apache and PHP, you can find those packages there using:
Code:
sudo apt-cache search apache
And install a good selection:
Code:
sudo apt-get install apache2 php rails proftpd
To install a desktop, the small cheat sheet shipped with every box is a little less than the actual requirement, but we assume everyone has the basic stuff at the top of this list in mind already. To install GNOME, do this:
Code:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install ubuntu-standard ubuntu-desktop
There are a few things in ubuntu-standard that aren't in minimal and aren't pulled in by ubuntu-desktop. To pick another desktop, just figure out the metapackage, it's xubuntu-desktop for Xfce, kubuntu-desktop for KDE 4.1 and lubuntu-desktop for LXDE.
Why don't we have a wiki or docs for this? Well, because it is all standard Ubuntu operation and Ubuntu do a
perfectly good enough job of documenting it along with the
Debian distro tools it's based on. We don't really want to reproduce anything here just for the sake of reproducing it, especially when it's 99.9% all an "I'm Feeling Lucky" away.