Bueno, una cosilla para aquellos que sigan luchando o utilizando el ubuntu, y vengan desde un entorno KDE. Al igual que ubuntu carga el entorno de Gnome, existe la distribución kubuntu, la cual es la misma, pero con entorno KDE.

Pero no hace falta eliminar nuestro SO ya instalado... podemos tener los dos entornos gráficos, o instalar el kde y eliminar después el gnome... Para ello debemos instalar el paquete kubuntu-desktop, el cual nos instalará KDE junto con un montón de aplicaciones diseñadas para funcionar en él (K3B, KONQUEROR, etc). Cuando arranquemos el ordenador, antes de iniciar sesión podremos elegir con qué queremos inciarla, si Gnome o Kde.

Si lo que queremos es quedarnos sólo con KDE, entonces no tenemos más que eliminar el paquete ubuntu-desktop de nuestro sistema y listo

A parte de esto, voy a pegar la información que he ido recogiendo por ahí, por si a alguno le resulta de ayuda:

############
REPOSITORIOS
############

## Uncomment the following two lines to fetch updated software from the network
deb http://es.archive.ubuntu.com/ubuntu breezy main restricted
deb-src http://us.archive.ubuntu.com/ubuntu breezy main restricted

## Uncomment the following two lines to fetch major bug fix updates produced
## after the final release of the distribution.
deb http://es.archive.ubuntu.com/ubuntu breezy-updates main restricted
deb-src http://es.archive.ubuntu.com/ubuntu breezy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://es.archive.ubuntu.com/ubuntu breezy universe
deb-src http://es.archive.ubuntu.com/ubuntu breezy universe

deb http://security.ubuntu.com/ubuntu breezy-security main restricted
deb-src http://security.ubuntu.com/ubuntu breezy-security main restricted

deb http://security.ubuntu.com/ubuntu breezy-security universe
deb-src http://security.ubuntu.com/ubuntu breezy-security universe

deb http://archive.ubuntu.com/ubuntu breezy multiverse
deb-src http://archive.ubuntu.com/ubuntu breezy multiverse

## Extras
deb http://ubuntu-backports.mirrormax.net/ breezy-extras main universe multiverse restricted

## Backports
deb http://ubuntu-backports.mirrormax.net/ breezy-backports main universe multiverse restricted


#############
DRIVER ATI 3D
#############

http://foros.maximopc.org/showthread...3&page=1&pp=15

sudo aptitude remove xorg-driver-fglrx
sudo aptitude remove fglrx-control
sudo aptitude remove linux-restricted-modules-$(uname -r)

Como yo no tenía instalado NADA antes, o sea, ningún driver de video más que el VESA original no me hizo falta reconfigurar X. Si lo tienen que hacer es simple:
Código:

$ sudo dpkg-reconfigure xserver-xorg

Luego:
sudo aptitude install gcc-3.4 module-assistant build-essential fakeroot dh-make debconf libstdc++5

Y ahora nos metemos en el directorio donde descargamos nuestro driver y ....
Código:

$ sudo sh ./ati-driver-installer-8.18.8-i386.run --buildpkg Ubuntu/breezy
$ cd /tmp
$ ls
$ fglrx-control_8.18.8-1_i386.deb fglrx-sources_8.18.8-1_i386.deb xorg-driver-fglrx-dev_8.18.8-1_i386.deb fglrx-kernel-source_8.18.8-1_i386.deb xorg-driver-fglrx_8.18.8-1_i386.deb

Estos son los archivos .deb generados por el paquete instalador, los que vamos a instalar paso a paso en éste orden.
Código:

$ sudo dpkg -i xorg-driver-fglrx_8.18.8-1_i386.deb
$ sudo dpkg -i xorg-driver-fglrx-dev_8.18.8-1_i386.deb
$ sudo dpkg -i fglrx-kernel-source_8.18.8-1_i386.deb
$ sudo dpkg -i fglrx-sources_8.18.8-1_i386.deb
$ sudo dpkg -i fglrx-control_8.18.8-1_i386.deb
$ sudo aptitude -f upgrade

Ahora nos toca RECOMPILAR el driver mismo dentro del kernel:
Código:

$ sudo module-assistant prepare
$ sudo module-assistant update
$ sudo module-assistant a-i fglrx


Finalmente nos queda solo actualizar xorg.conf
Código:

$ sudo aticonfig --initial

Reiniciamos y como siempre, rogamos ingresar sin problemas a X.

Si lo pudimos hacer satisfactoriamente, corroboramos que tengamos nuestro driver bien instalado al igual que las aceleraciones correspondientes.
Código:

$ fglrxinfo
$ fgl_glxgears

Más comandos útiles:
Código:

$ lspci | grep ati
$ lsmod | grep agp


##################
GOOGLETALK EN GAIM
##################

http://www.google.com/support/talk/b...y?answer=24073
Enter the following information in the 'Add Account' window:

* Protocol: Jabber
* Screen Name: enter your full Gmail username (everything before '@gmail.com')
* Server: gmail.com
* Password: we suggest leaving this field blank for increased security, but if you'd like to log in automatically, enter your Gmail password
* Alias: leave this field blank
* Remember password: check the box if you'd like GAIM to remember your password (you won't be prompted to enter it each time you log in, if you select this option)
* Auto-login: check the box if you'd like to connect to the Google Talk service each time you use GAIM

# Click the '+' next to 'Show more options.'
# Enter the following information in the section that appears:

* Jabber Options: Check the box next to 'Use TLS if available,' and leave the other boxes unchecked.
* Port: 5222
* Connect server: talk.google.com
* Proxy type: Use Global Proxy Settings


############
PARA IPW2200
############

En /etc/modprobe.d
Crear archivo ipw2200 que contenga:
options ipw2200 led=1

En el kismet.conf:
source=ipw2200,eth0,intel


########################
PARA HACER UBUNTU GONITO
########################

Instalar los paquetes:

sudo aptitude install gnome-themes-extras 3ddesktop gnome-art gdesklets


##########################
TILDES EN PARTICIONES NTFS
##########################

Simplemente hay que añadir la opción nls=utf8 en el fstab para cada partición NTFS.


##################
MONTAR ISOs Y NRGs
##################

PARA ISOs:
$ sudo mkdir /media/iso
$ sudo modprobe loop
$ sudo mount file.iso /media/iso/ -t iso9660 -o loop

PARA NRGs: (http://wiki.linuxquestions.org/wiki/Nero_CD_image)
Similar to converting them, it's easy to mount them as an ISO9660 image, just need to skip the first 307200 bytes, example:

# mount -t iso9660 -o loop,offset=307200 myNeroImage.ngr /mnt/myISOmountDir