I'm planning to turn my old PowerPC G4 into a wordpress website. I'd like to use the server edition of ubuntu 10.04, install a GUI (to set up wordpress) then uninstall the gui.
Would I be able to do that?
I'm planning to turn my old PowerPC G4 into a wordpress website. I'd like to use the server edition of ubuntu 10.04, install a GUI (to set up wordpress) then uninstall the gui.
Would I be able to do that?
You can install the GUI you want on the server edition by typing:
sudo apt-get install [xk]ubuntu-desktop
,
where ubuntu
installs Gnome,
kubuntu
installs KDE and xubuntu
installs XFCE.
You can later uninstall it with:
sudo apt-get remove/purge [xk]ubuntu-desktop
Personally though, i think that what you're trying to do doesn't need all that fuss.
You should just practice a bit with shell editors like vi/vim or nano
.
Alternatively, you could try to work remotely on the machine and make all the necessary configuration.
sudo apt-get install ...
you should run sudo apt-get update
unless you've done so very recently. This updates information about installable packages and their sources (it doesn't upgrade anything). Also, before installing a GUI on a server, I recommend reading why you probably shouldn't. (Then if you decide to go ahead, that article has some more information about options for GUI's, including some information not currently in this answer.)
– Eliah Kagan
Jun 15 '12 at 23:55
ubuntu-desktop
will not uninstall the GUI. The way these packages work is to install no files themselves, but pull in all the packages that are part of the GUI as dependencies. Since these dependencies are, at least initially, automatically installed (as dependencies) rather than manually installed, removing or purging the metapackage and then running sudo apt-get autoremove
(or sudo apt-get --purge autoremove
) will sometimes work. And sometimes not.
– Eliah Kagan
Jun 16 '12 at 00:00
Webmin is also a great way to administer your Ubuntu box. Once you have Apache up and running install Webmin.
Can't recall how I did it though.Try Googling Webmin.