Ayuda en administracion basica en Ubuntu.

Configuración
Aquí puedes encontrar y dejar guías útiles para configurar tu equipo
Como configurar o reparar tu lista de repositorios
La manera más fácil de tener la lista de repositorios sana es regenerarla. Para eso editamos el archivo /etc/apt/sources.list con permisos de superusuario. La forma sencilla de hacerlo es desde una terminal y, de acuerdo con nuestra distribución escribimos

Ubuntu

sudo gedit /etc/apt/sources.list

Kubuntu

sudo kate /etc/apt/sources.list

Xubuntu

sudo mousepad /etc/apt/sources.list

Y una vez que le demos la contraseña, se nos va aparecer un archivo. Borramos todo lo que hay ahí y escribimos en su lugar

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.

deb http://es.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://es.archive.ubuntu.com/ubuntu/ hardy restricted main multiverse    universe #Added by software-properties

## Major bug fix updates produced after the final release of the
## distribution.
deb http://es.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://es.archive.ubuntu.com/ubuntu/ hardy-updates restricted main multiverse universe #Added by software-properties

## 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/ hardy universe

## 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
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://es.archive.ubuntu.com/ubuntu/ hardy multiverse

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://es.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe  multiverse
deb-src http://es.archive.ubuntu.com/ubuntu/ hardy-backports main restricted universe multiverse

deb http://es.archive.ubuntu.com/ubuntu/ hardy-security main restricted
deb-src http://es.archive.ubuntu.com/ubuntu/ hardy-security restricted main   multiverse universe #Added by software-properties
deb http://es.archive.ubuntu.com/ubuntu/ hardy-security universe
deb http://es.archive.ubuntu.com/ubuntu/ hardy-updates multiverse universe
deb http://es.archive.ubuntu.com/ubuntu/ hardy-security multiverse
# deb http://apt.cerkinfo.be/ unstable main contrib
# deb-src http://apt.cerkinfo.be/ unstable main contrib

Ya tenemos una lista de repositorios sana. Guardamos los cambios y cerramos el archivo.
Ahora nos queda agregar los repositorios multimedia.
Como agregar repositorios multimedia
Vamos a usar los Medibuntu que son compatibles con los repositorios oficiales. En unaterminal tecleamos

sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list

sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get  update

Nos va a preguntar si queremos instalar algo sin autenticar, nuestra llave de seguridad de echo, le decimos S y ya está.
Como abrir todos los archivos de audio, vídeo, etc.
Abrimos una terminal y escribimos

En Ubuntu o Xubuntu

sudo apt-get install update
sudo apt-get install ubuntu-restricted-extras

En Kubuntu

sudo apt-get install update
sudo apt-get install kubuntu-restricted-extras

Si recibimos algún error [[http://hamlab.patiomaravillas.net/index.php/Guías#Como_configurar_o_reparar_tu_lista_de_repositorios  reparamos nuestros repositorios]],
Ahora nos fijamos que hallamos instalado los [[http://hamlab.patiomaravillas.net/index.php/Guías#Como_agregar_repositorios_multimedia repositorios multimedia]] y escribimos

sudo apt-get install w32codecs

y si tenemos dvd

sudo apt-get install libdvdcss2

Como instalar el flash
El paquete ubuntu-restricted-extras ya lo instala, pero en caso de que querramos solamente el flash o no nos funcione:

sudo apt-get install flashplugin-nonfree
Guías y recursos de ayuda para Ubuntu
Listas y Foros
* '''Índice de la lista del Hackademy'''. Lugar se pueden encontrar mensajes antiguos. http://www.mail-archive.com/hackademy%40listas.sindominio.net
* '''Foro de Ubuntu en Español'''. Foro masivo con sección para gente nueva en Ubuntu. Lugar indicado para encontrar soluciones de problemas que otros hayan resuelto. Inconveniente: Responden solamente a preguntas que no ayan sido echas antes y estén bien planteadas de acuerdo a sus criterios. No se como será el foro de  principiantes. http://www.ubuntu-es.org/index.php?q=forum
* '''Foro de Ubuntu'''. Como el anterior pero mucho mas masivo y en inglés irve, y  es mejor que Google, para encontrar soluciones a cosas" difíciles". Inconvenientes: Hay que saber un poco de inglés y hay tantos mensajes que  es difícil que alguien te responda. http://ubuntuforums.org/
* '''Lista de correo de Ubuntu en español'''. Similar a la lista del Hackademy pero  mucho más masiva y con gente de todas partes del mundo. Ventajas: Te pueden echar una mano en problemas como configuración de periféricos y convivencia con otros sistemas operativos. DESVENTAJAS: Se reciben por lo menos 20 mensajes por día. No puedes  encontrarte después con la gente para arreglar cosas :( https://lists.ubuntu.com/mailman/listinfo/ubuntu-es
Guías y Manuales
* '''Guia Ubuntu'''. Lo mejor para empezar. Una wiki donde van explicando como ir instalando o configurando muchas cosas de Ubuntu, en espaniol. http://www.guia-ubuntu.org/index.php?title=Portada
* '''Ubuntu Guide'''. Una wiki donde van poniendo como instalar o cambiar ciertas cosas en Ubuntu, todo en la misma pagina, sin muchas explicaciones, solo lo que hay que hacer. En ingles. http://ubuntuguide.org/wiki/Ubuntu:Hardy

Como usar la Terminal
Puedes acceder a un tutorial sobre el uso de la Linea de Comandos: [[Hackademy/Terminal]], orientado a aprender lo basico para manejarse en la terminal sobre Ubuntu/Debian.