|
Just Beginning
Introduction Is Ubuntu for You?* Which Ubuntu to pick? Installing Ubuntu inside XP Plan Partitions Download and Burn Ubuntu Burn ISO from Mac Install Desktop CD Ubuntu Install Alternate CD Ubuntu* Modest Specs Where's the Terminal? Password in Terminal Install Software Extra Repositories* File Permissions Security in Ubuntu Next Steps Beyond the Basics Playing Around Troubleshooting * Off-site link |
Modest Spec or Barebones Installation of Ubuntu
What is this page about?
From there, you'll get a list of releases:
Ubuntu Releases The following releases of Ubuntu are available:
Although they are not directly supported by Canonical, releases of Xubuntu are available from the cdimage server. For old releases, see old-releases.ubuntu.com. If you have 128 MB of RAM, your best bet is to select Xubuntu and then select the Alternate CD.
What to do with the .ISO once it's downloaded Once you've burnt the ISO to CD, reboot your computer with the CD in the drive to start up the installer.
As you can see, the Alternate Install CD starts off with a menu that looks similar to the Desktop CD, but the options are different. If you do not have the resources to run the live CD while installing, you'll want to use this Alternate Install CD and pick the first option: Install to Hard Disk. The Alternate CD is a graphical installer, but it's text-based. If you want to install Ubuntu (to do a dual-boot with Windows) using this text-based graphical installer, visit this site.
Warning: you must have a working internet connection in order to use this tutorial. A wired broadband connection is ideal. Dial-up modem or wireless configurations could be problematic.
Download the mini.iso
Starting the installation
server in order to install just the base system. You'll be adding some more software packages later.
Tab will move between elements Once the installation has finished, and you've rebooted, you should get a terminal that fills the whole screen. Log in with your username and password. At the prompt (something like username@ubuntu:~$), you can type terminal commands given in the next sections.
Enabling extra repositories Type this command to edit the repositories list. The terminal is case-sensitive, and the -B parameter creates a backup of the file before editing it. sudo nano -B /etc/apt/sources.list This will bring up the sources.list file in the Nano text editor. Remove the # sign from any line that looks like a web address.
For example... Before
# deb http://archive.ubuntu.com/ubuntu feisty universe
# deb-src http://archive.ubuntu.com/ubuntu feisty universe After
deb http://archive.ubuntu.com/ubuntu feisty universe
deb-src http://archive.ubuntu.com/ubuntu feisty universe Then save the file by pressing Control-X, Y, and then Enter.
Getting a usable home desktop If you're using Gutsy Gibbon (7.10), Feisty Fawn (7.04), or Edgy Eft (6.10): sudo apt-get update
sudo apt-get install xorg xterm gdm icewm menu firefox gksu synaptic sudo dpkg-reconfigure xserver-xorg sudo /etc/init.d/gdm start If you're using Dapper Drake (6.06) or Breezy Badger (5.10): sudo apt-get update
sudo apt-get install x-window-system-core xterm gdm icewm menu firefox gksu synaptic sudo dpkg-reconfigure xserver-xorg sudo /etc/init.d/gdm start If you're using Hoary Hedgehog (5.04) or Warty Warthog (4.10): sudo apt-get update
sudo apt-get install x-window-system-core xterm gdm icewm menu mozilla-firefox gksu synaptic sudo dpkg-reconfigure xserver-xorg sudo /etc/init.d/gdm start The first command lets the software package manager know what software is available to install. The second command installs the appropriate software packages. The third command configures your video screen resolution. You'll be asked a series of questions. Answer them as best you can. If you don't know the answer, just go with the default selection. The last command starts up your graphical login.
Variations sudo apt-get install xorg xterm wdm icewm menu dillo You would then have to use this for the fourth command: sudo /etc/init.d/wdm start
Some people prefer Fluxbox, Openbox, PekWM, or Windowmaker to IceWM. If you know how to configure those window managers, you can obviously substitute those in for IceWM in the second command. You can learn more about different window managers at http://xwinman.org
|