Table of Contents

Debian Base Install

Pros and Cons of Using a Debian Base

Pros

Cons

Creating your own base install of Debian

You can follow instructions here and here.

NOTE: The above links are great guides, but
the process described below adds a few tweaks and provides
you with a more-compact base



Simple Instructions:

nano /etc/apt/sources.list

add your own local mirror for speedy downloads + updates

deb http://ftp.debian.org/debian etch main contrib
deb-src http://ftp.debian.org/debian etch main contrib

Then make sure to comment out the line with the CD in it with a #. Close and save the file.

apt-get update

The base that we have is missing a few small tools that I prefer in my distros. apt-get install the
following packages, leave out any that you don't want:

To get a small X-Server base system to work, install the following packages using apt-get install:
xserver-xorg-video-vesa
xserver-xorg-video-vga
xserver-xorg-video-vmware
xserver-xorg-input-mouse
xserver-xorg-input-kbd
xserver-xorg-input-synaptics
xserver-xorg-core
xfonts-base
xfonts-scalable

The main reason behind not doing a full apt-get install xserver-xorg is that xserver-xorg is modular
and pulls down xserver drivers that we do not need. By specifying exactly what we want we can save a lot of
space (you can always add something later if you need to).

NOTE: I have also intentionally left out non-free from the sources list. I personally believe there is no
need for it. If others need non-free they can add it later.