![]() the psycho cat on an HP Mini with Ubuntu
Just Beginning
Which Ubuntu to pick?
Ubuntu inside Windows
Install Software
Security in Ubuntu
Where's the Terminal? Next Steps Beyond the Basics Playing Around Troubleshooting * Off-site link
Cheap Plugs You may also want to consider donating directly to the Ubuntu project.
|
Modest Spec or Barebones Installation of Ubuntu
What is this page about?
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 At the boot: prompt, type cli 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 dapper universe
# deb-src http://archive.ubuntu.com/ubuntu dapper universe After
deb http://archive.ubuntu.com/ubuntu dapper universe
deb-src http://archive.ubuntu.com/ubuntu dapper universe Then save the file by pressing Control-X, Y, and then Enter.
Getting a usable home desktop If you're using Hardy Heron (8.04), or Gutsy Gibbon (7.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): 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 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
|
|
If you have suggestions or corrections for these tutorials, please post in this Ubuntu Forums thread or leave a comment on my blog. I will not give help to people posting in the above places. If you require technical support, start a support thread on the Ubuntu Forums. That is the appropriate place to ask for help. |
|