This is a very subjective matter, nothing is written on stone; this is just the way i
like my system.
The installation was uneventful, i gave antiX my hd and let it do its thing. After it
was thru installing i went to /etc/apt/sources.list and edited, making it a stable Lenny
type of distro, this is the way it looks:
Code: Select all
# Debian
deb http://ftp.fr.debian.org/debian/ stable main contrib non-free
deb http://security.debian.org/ stable/updates main contrib non-free
#deb-src http://ftp.fr.debian.org/debian/ stable main contrib non-free
# mplayer
deb http://www.debian-multimedia.org lenny main
# wicd
#deb http://apt.wicd.net debian extras
#virtualbox
#deb http://download.virtualbox.org/virtualbox/debian lenny non-free
# Remastersys
#deb http://www.remastersys.klikit-linux.com/repository debian/
###### Debian Unstable/Sid/sidux ##########
###### Use at your own risk! ########
#deb http://ftp.de.debian.org/debian/ unstable main contrib non-free
#deb http://www.debian-multimedia.org unstable main
#deb http://sidux.com/debian/ sid main contrib non-free firmware fix.main fix.contrib
fix.non-free
Code: Select all
# dpkg -P fluxbox slim conky rox-filer vim-tiny claws-mail
Code: Select all
# some more ls aliases
alias startx='startx -- -dpi 85'
alias x="startx"
alias agi="sudo apt-get install"
alias agud="sudo apt-get update && sudo apt-get dist-upgrade"
i can install packages with 'agi' as user, instead of 'sudo apt-get install'
now i can write as user:'agud' instead of 'sudo apt-get update && sudo apt-get dist-upgrade'
These are little things that make your life easier __{{emoticon}}__
For all this to work i have to configure sudo at /etc/sudoers
Code: Select all
# nano -wx /etc/sudoers
and add these 2 lines at the bottom:
macondo ALL = NOPASSWD : ALL
giovi ALL = NOPASSWD: /sbin/halt, /sbin/reboot
Then i test it:
$ sudo apt-get update
fine.
Then i update/dist-upgrade the system:
$ agud
Install some apps i like:
$ agi xfonts-terminus xfe numlockx unclutter gpm preload localepurge debfoster ratpoison
sylpheed
I edit /boot/grub/menu.lst, and leave the top part looking like this:
Code: Select all
timeout 0
#color cyan/blue white/blue
#foreground ffffff
#background 0639a1
#gfxmenu /boot/grub/message
i go to /etc/inittab and edit this line leaving like this:
Code: Select all
The default runlevel.
id:4:initdefault:
Then i edit my .xinitrc:
$ nano -wx .xinitrc
wipe it clean and leave it like this:
Code: Select all
#!/bin/sh
xrdb -merge .Xdefaults
numlockx &
unclutter -idle 2 &
icewm
$ nano -wx .Xdefaults
leaving like this:
Code: Select all
URxvt*background: black
URxvt*foreground: light green
URxvt*cursorColor: yellow
URxvt*saveLines: 20000
URxvt*leftScrollBar: true
URxvt*font: -xos4-terminus-*-*-*-*-14-*-*-*-*-*-iso8859-15
Next time you launch the terminal, should show the changes.
To stop some daemons and boot faster:
$ sudo sysvconfig
and disabled:
Code: Select all
ifupdown
networking # i got no LAN
nvidia-kernel # got no nvidia
cups # i got no printer
wicd # i got no laptop
This part is very subjective, every user's needs are different, write down what you
disable/enable in case it doesn't work and put it back.
$ agud
$ sudo reboot
voilá!
Note: this is what works for me, it might not work for you.
Happy trails,
macondo
26 Feb 2009
PD: I had to remove 'openbsd-inet' in order to get in the internet. I removed it from the list.