coldrru
Usuario (Colombia)

Registrate y eliminá la publicidad! Que tal taringueros... Hace algun tiempo salio la nueva distribucion de UBUNTU en su version 8.04; sin embargo por las cuestiones del copyright, existen algunos elementos restringidos o linux-restricted-modules, por lo que la instalacion de nuevos driver se hace algo compleja, por lo que a continuacion se encuetran los links (para no hacer copy, paste) con los pasos a seguir para no quedar trancados con esta maravilla de sistema operativo, como lo es Linux... PAQUETES ESENCIALES DESPUÉS DE INSTALAR http://cmdos.wordpress.com/2008/05/26/que-hacer-despus-de-instalar-ubuntu-804/: En este link se encuentran los pasos a seguir despues de instalar el sistema operativo; con las siguientes correcciones realizadas en los comentarios de los mismos y en la fuente del articulo: ""Has de instalar el Medibuntu repository primero, con estas dos líneas: 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 Y a continuación: sudo apt-get install acroread""(por si el server expuesto en los pasos esta caido) ""$ gedit /etc/apt/sources.list Es el /etc/apt/sources.list, vete a la linea 57 de ese fichero y borras o comentas esa linea problematica. $ sudo apt-get update"" (para el avant por si se tiran el source.list)"" Luego, como se esperaria, querran activar compiz, aunque evitando utilizar el driver presente por defecto: http://www.ubuntu.org.uy/main/?q=node/388 INSTALAR NVIDIA, eliminando driver por defecto 169 e instalando última versión de Nvidia Para lograr lo anterior, un paso importante es: sudo apt-get remove nvidia-kernel-common Y algo a tener es cuenta es que el comando "su" por lo general no funciona al no estar preestablecida la clave de root ( sudo passwd ); por lo que ademas de seguir los pasos (algunos) del link, si el driver les indica que estan corriendo en el "X server" entonces deberan: Después de bajar el driver de nvidia.com 1. Ctrl + Alt + F2 (usuario, contrasenha) 2. sudo /etc/init.d/gdm stop ( no funciona telinit; http://www.debianadmin.com/debian-and-ubuntu-linux-run-levels.html) 3. sudo sh '/dir1/dir2.../dirn/nombre_driver.run' 4. Instalar siguiendo instrucciones (Colocando todo YES ) 5. sudo reboot now. 6. Y sale para pintura. INSTALAR ALSA ALSA driver Instalando y/o actualizando audio http://www.guia-ubuntu.org/index.php?title=Alsa Por ultimo, para darle un toque MAN OS X a nuestro Linux: http://rockmanx.wordpress.com/2008/06/02/make-your-linux-ubuntu-look-like-a-mac-hardy-heron/ = http://rapidshare.de/files/38210507/MyTheme.tar.gz.html( Si quieren evitar leer, y tan solo instalar el tema ) PROGRAMAS ADICIONALES Y APLICACIONES DE WINDOWS EN LINUX Y antes que se me olvide, hago referencia a un post de esta comunidad para que su Linux ademas de actualizado, sea completo: http://www.taringa.net/posts/linux/1189314/Si-tenes-Ubuntu-entra___-%5Bedit%5D.html Donde si tienen problemas con el paquete de Wine; tan solo es necesario seguir los pasos descritos en: http://www.winehq.org/site/download-deb Luego, para dejar Windows totalmente en el pasado: http://www.mybsod.com/2008/06/05/using-office-2007-in-ubuntu-804/: Donde ademas dicen que el Wine corre mejor si se arranca desde la consola (Terminal) Pase toda la tarde realizando el proceso, hasta que di con las fuentes adecuadas, por lo que considere util compartirlas. Gracias, y espero que les sea de utilidad.
NO SEAN PEREZOSOS Y LEAN, puede servirles. Hace algunos días mi Ubuntu se averió cuando intentaba instalarle un driver ALSA perteneciente a Intrepid, además antes de aquel incidente ya llevaba 8GB utilizadas sin saber el porqué, ya que no había instalado nada extra a los paquetes recomendados. Después de reinstalar Ubuntu decidí investigar cómo LIMPIAR Linux para que no ocupara espacio sin necesidad aparente; encontrando el siguiente link: http://ph.ubuntuforums.com/showthread.php?t=898573 Luego de ingresar los comandos descritos en link anterior en repetidas ocasiones cada vez que instalaba algo nuevo, encontré la forma de combinar esas instrucciones en un SCRIPT: http://www.ubuntu-es.org/index.php?q=node/78116 Script que luego modifiqué para cerciorarme que todo había sido eliminado (limpiado) obteniendo el siguiente resultado: #!/bin/bash OLDCONF=$(dpkg -l|grep "^rc"|awk '{print $2}') BLUE="\033[1;34m" RED="\033[0;31m" ENDCOLOR="\033[0m" $var echo -e "\n" if [ $USER != root ]; then echo -e $RED"Error: Privilegios insuficientes" echo -e $RED"Script finalizado"$ENDCOLOR exit 0 fi echo -e "\n" df -Th | sort echo -e $BLUE"\nBuscando librerias y/o paquetes huéfanos..."$ENDCOLOR deborphan echo -e $BLUE"Reparando paquetes rotos..."$ENDCOLOR var=$(apt-get install -f) echo -e $BLUE"Actualizando repositorios..."$ENDCOLOR var=$(apt-get update) echo -e $BLUE"Eliminando lenguages innecesarios..."$ENDCOLOR localepurge echo -e $BLUE"Limpiando Cache para apt..."$ENDCOLOR var=$(apt-get autoremove && apt-get autoclean && apt-get clean) echo -e $BLUE"Limpiando Cache con aptitude..."$ENDCOLOR var=$(aptitude autoclean && aptitude clean) echo -e $BLUE"Liberando todas las papeleras..."$ENDCOLOR rm -rf /home/*/.local/share/Trash/*/** &> /dev/null rm -rf /root/.local/share/Trash/*/** &> /dev/null echo -e $BLUE"Eliminando archivos ¨viejos¨ de configuración...\n"$ENDCOLOR aptitude purge $OLDCONF echo -e $BLUE"\nBuscando librerias y/o paquetes huéfanos..."$ENDCOLOR deborphan echo -e "\n" df -Th | sort echo -e "\n" echo -e $BLUE"¡Script Finalizado!\n"$ENDCOLOR Las modificaciones que realicé incluyen el mostrar las particiones del disco con su espacio disponible en orden, algunas tareas repetitivas para asegurarse de matar cualquier archivo inservible, además de las rutinas ¨localepurge¨ y ¨deborphan¨ que inicialmente es posible que deban instalarlas, ya que no vienen por defecto. Otra cosa que hice fue asignar una variable que nunca se imprime para no llenar la consola con el proceso que hace cada orden. El anterior código deben ingresarlo en un archivo de texto, guardarlo normalmente con el nombre que deseen ( por ejemplo ¨limpiar¨ ) y luego adjudicarle derechos de ejecución como programa: 1. Click derecho sobre el archivo > propiedades > permisos > Activar casilla:¨Permitir ejecución como programa¨ 2. Ingresando en Terminal: sudo chmod -c ./limpiar (encontrándose en la parte que se guardó el mismo) Por último solo resta ingresar a terminal, acceder a root ya sea por medio de sudo o su -nuevamente mientras estamos en el directorio del archivo- y escribir cualquiera de las siguientes opciones: 1. sudo ./limpiar 2. su ./limpiar Cabe resaltar que yo lo utilizo y me funciona. AH, si no saben qué podrían instalar; pues en http://taringa.net/posts/linux/1496673/Instalar-Nvidia-y-extras-en-Ubuntu-8_04-(Seguir-estos-pasos).html se les indica qué les serviría en una instalación recién hecha. Gracias, y espero que les sea útil. PD: Si algo no es claro o está mal explicado, me comentan.
REPOSITORIOS ESENCIALES DESPUÉS DE INSTALAR Los unicos repositorios necesario son: sudo wget http://www.medibuntu.org/sources.list.d/intrepid.list --output-document=/etc/apt/sources.list.d/medibuntu.list Luego es necesario autenticar los repositorios de Wine: http://wine.budgetdedicated.com/apt/Scott%20Ritchie.gpg Y paso seguido se dirigen a: Sistema>Administracion>Recursos... y en software terceros agregan: deb http://wine.budgetdedicated.com/apt intrepid main #WineHQ - Ubuntu 8.10 "Intrepid Ibex" Luego, como se esperaria, querran activar compiz, aunque evitando utilizar el driver presente por defecto: http://www.ubuntu.org.uy/main/?q=node/388 INSTALAR NVIDIA utilizando el driver que se encuentre en la pagina oficial Después de bajar el driver de nvidia.com: 1. Ctrl + Alt + F2 (usuario, contrasenha) 2. sudo /etc/init.d/gdm stop ( no funciona telinit; http://www.debianadmin.com/debian-and-ubuntu-linux-run-levels.html) 3. sudo sh '/dir1/dir2.../dirn/NVIDIA-Linux-x86_64-177.80-pkg2.run' 4. Instalar siguiendo instrucciones (Colocando todo YES ) 5. sudo /etc/init.d/gdm start. 6. Y sale para pintura. NOTA: si aun estan en 8.04 y desea 8.10 puede ejecutar hasta el segundo paso y luego escribir sudo aptitude dist-upgrade para no borrar documentos personales SYNAPTIC Sistema > Administracion > Synaptic Dado que para esta distribucion, el gestor de paquetes tiene la opcion de quick search; pues buscaran y seleccionaran los siguientes paquetes: (ya sea i386 o AMD64) non-free-codecs..........................Para reproduccion multimedia flashplugin-nonfree.....................Youtube, juegos, firefox, etc sun-java6-jre...........................Ayuda al anterior sun-java6-jdk...........................Librerias de desarrollo java w64-codecs o x32-codecs.................Reproduccion mas especializada build-essential.........................Compilacion ubuntu-restricted-extras................Reproduccion DVD, MP£, LAME, etc awn....................................."Imitacion" dock MAC OS skype...................................Video conferencia, voIP compizconfig-settings-manager...........Configuracion efectos compiz emerald.................................Decorador de bordes en las ventanas wine....................................Para correr aplicaciones de Windows winefish................................Editor Latex, para documentos PDF vlc.....................................Reproductor multimedia completo ( agrega gstreamer ) msttcorefonts...........................Fuentes de Microsoft eclipse.................................Plataforma de programacion Aplicar, y listo... SI NO DESEAN USAR SYNAPTIC, pueden abrir terminal y escribir: "sudo+(aptitude o apt-get)+"cualquier nombre de los anteriores" Opcionalmente aca esta el script usado, que contiene todas las librerias y paquetes utilizados para dejar Intrepid Ibex al pelo (aunque algunos para AMD64). Pueden grabarlo como archivo de texto y proporcionales permisos de ejecucion o, copiar en terminal las lineas. #!/bin/sh wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/glibc/libc6-i386_2.8~20080505-0ubuntu7_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gcc-4.3/lib32gcc1_4.3.2-1ubuntu11_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/z/zlib/lib32z1_1.2.3.3.dfsg-12ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gcc-4.3/lib32stdc++6_4.3.2-1ubuntu11_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/a/alsa-lib/lib32asound2_1.0.17a-0ubuntu4_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/n/ncurses/lib32ncurses5_5.6+20071124-1ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/i/ia32-libs/ia32-libs_2.2ubuntu18_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/j/java-common/java-common_0.30ubuntu3_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/s/sun-java6/sun-java6-jre_6-10-0ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/u/unixodbc/odbcinst1debian1_2.2.11-16build2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/u/unixodbc/unixodbc_2.2.11-16build2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/s/sun-java6/sun-java6-bin_6-10-0ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/s/sun-java6/sun-java6-jdk_6-10-0ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/ttf-wqy-zenhei/ttf-wqy-zenhei_0.6.26-2ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/n/nss-mdns/lib32nss-mdns_0.10-3ubuntu2_amd64.deb wget -c http://wine.budgetdedicated.com/apt/pool/main/w/wine/wine_1.1.7~winehq0~ubuntu~8.10-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/w/wine-gecko/wine-gecko_0.1.0-0ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/x/xutils-dev/xutils-dev_7.4+3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/o/openjdk-6/openjdk-6-jre-lib_6b12-0ubuntu6_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/c/ca-certificates-java/ca-certificates-java_20080712ubuntu3_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tzdata/tzdata-java_2008h-2ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/r/rhino/rhino_1.7R1-1ubuntu3_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/j/java-access-bridge/libaccess-bridge-java_1.24.0-0ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/o/openjdk-6/openjdk-6-jre-headless_6b12-0ubuntu6_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/o/openjdk-6/openjdk-6-jre_6b12-0ubuntu6_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/o/openjdk-6/icedtea6-plugin_6b12-0ubuntu6_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gcc-4.3/libstdc++6-4.3-dev_4.3.2-1ubuntu11_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gcc-4.3/g++-4.3_4.3.2-1ubuntu11_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gcc-defaults/g++_4.3.1-1ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/p/patch/patch_2.5.9-5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/d/dpkg/dpkg-dev_1.14.20ubuntu6_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/b/build-essential/build-essential_11.4_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/c/cabextract/cabextract_1.2-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libn/libntlm/libntlm0_0.3.13-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/g/gsasl/libgsasl7_0.2.26-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/m/mysql-dfsg-5.0/mysql-common_5.0.67-0ubuntu6_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.67-0ubuntu6_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/m/mailutils/libmailutils1_1.2+dfsg1-2build1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/e/exim4/exim4-config_4.69-5ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/e/exim4/exim4-base_4.69-5ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/e/exim4/exim4-daemon-light_4.69-5ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/e/exim4/exim4_4.69-5ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/m/mailutils/mailutils_1.2+dfsg1-2build1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/o/opalmod/opalmod_0.1.16_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/d/debarchiver/debarchiver_0.8.2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tex-common/tex-common_1.11_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-common_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/texlive-base-bin_2007.dfsg.2-3ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-doc/texlive-doc-base_2007.dfsg.1-1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-base_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-fonts-recommended_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-latex-base_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-latex-recommended_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/tetex-bin_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/d/dvipdfmx/dvipdfmx_20071115-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/e/emerald/libemeraldengine0_0.7.2-0ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/e/emerald/emerald_0.7.2-0ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/n/nspluginwrapper/nspluginwrapper_1.1.2-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/f/flashplugin-nonfree/flashplugin-nonfree_10.0.12.36ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/f/freepats/freepats_20060219-1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/g/gsfonts-x11/gsfonts-x11_0.20ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/a/a52dec/liba52-0.7.4_0.7.4-11ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/f/ffmpeg-debian/libavutil49_0.svn20080206-12ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/f/faac/libfaac0_1.26-0.1ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/f/faad2/libfaad0_2.6.1-3.1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libg/libgsm/libgsm1_1.0.12-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/l/lame/libmp3lame0_3.98-0.0_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/x/x264/libx264-59_0.svn20080408-0.0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/x/xvidcore/libxvidcore4_1.1.2-0.1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/f/ffmpeg/libavcodec-unstripped-51_0.svn20080206-12ubuntu3+unstripped5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/f/ffmpeg-debian/libavformat52_0.svn20080206-12ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/f/ffmpeg-debian/libpostproc51_0.svn20080206-12ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.5-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libc/libcdaudio/libcdaudio1_0.99.12p2-5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libd/libdc1394-22/libdc1394-22_2.0.2-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libd/libdvdread/libdvdread3_0.9.7-11ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libd/libdvdnav/libdvdnav4_4.1.2-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/g/gmyth/libgmyth0_0.7.1-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libi/libiptcdata/libiptcdata0_1.0.2+libtool01-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libf/libfreebob/libfreebob0_1.0.11-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/j/jack-audio-connection-kit/libjack0_0.109.2-3ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libm/libmms/libmms0_0.4-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libm/libmpcdec/libmpcdec3_1.2.2-1build1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/n/neon27/libneon27-gnutls_0.28.2-2build1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/f/fftw3/libfftw3-3_3.1.2-3.1ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libo/libofa/libofa0_0.9.3-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/s/soundtouch/libsoundtouch1c2_1.3.1-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/w/wildmidi/libwildmidi0_0.2.2-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.8-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/f/ffmpeg-debian/libswscale0_0.svn20080206-12ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libq/libquicktime/libquicktime1_1.0.2+debian-2build2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/m/mjpegtools/libmjpegtools0c2a_1.8.0-0.2ubuntu5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/g/gst-plugins-bad-multiverse0.10/gstreamer0.10-plugins-bad-multiverse_0.10.6-1ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libi/libid3tag/libid3tag0_0.15.1b-10_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libm/libmad/libmad0_0.15.1b-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/m/mpeg2dec/libmpeg2-4_0.4.1-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libs/libsidplay/libsidplay1_1.36.59-5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly_0.10.9-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/g/gst-plugins-ugly-multiverse0.10/gstreamer0.10-plugins-ugly-multiverse_0.10.7-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/l/latex-xcolor/latex-xcolor_2.11-1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/p/pgf/pgf_2.00-1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/l/latex-beamer/latex-beamer_3.07-1ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libv/libv4l/lib32v4l-0_0.5.0-3~intrepid1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/n/nas/libaudio2_1.9.1-4_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libd/libdvbpsi4/libdvbpsi4_0.1.5-3.1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libe/libebml/libebml0_0.7.7-3.1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/e/enca/libenca0_1.9-6_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libc/libcdio/libiso9660-5_0.78.2+dfsg1-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/l/lua5.1/liblua5.1-0_5.1.3-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libm/libmatroska/libmatroska0_0.8.1-1.1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/libm/libmodplug/libmodplug0c2_0.7-7_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqtcore4_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-xml_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-dbus_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-script_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqtgui4_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-designer_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-network_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-sql_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-qt3support_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/libqt4-sql-mysql_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/s/sdl-image1.2/libsdl-image1.2_1.2.6-3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libt/libtar/libtar_1.2.11-5_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tidy/libtidy-0.99-0_20080116cvs-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/t/twolame/libtwolame0_0.3.12-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/v/vcdimager/libvcdinfo0_0.7.23-4ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/v/vlc/vlc-data_0.9.4-1ubuntu3_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/v/vlc/libvlccore0_0.9.4-1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/v/vlc/libvlc2_0.9.4-1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/l/lmodern/lmodern_1.010x-5_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/m/msttcorefonts/msttcorefonts_2.5_all.deb wget -c http://packages.medibuntu.org/pool/non-free/a/amrnb/libamrnb3_7.0.0.2-0.0medibuntu1_amd64.deb wget -c http://packages.medibuntu.org/pool/non-free/a/amrwb/libamrwb3_7.0.0.3-0.0medibuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/u/ubuntu-restricted-extras/ubuntu-restricted-extras_25_amd64.deb wget -c http://packages.medibuntu.org/pool/non-free/w/w64codecs/w64codecs_20071007-0medibuntu2_amd64.deb wget -c http://packages.medibuntu.org/pool/non-free/n/non-free-codecs/non-free-codecs_3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-generic-recommended_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-extra/texlive-pstricks_2007.dfsg.2-1ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/p/prosper/prosper_1.00.4+cvs.2007.05.01-3_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/q/qt4-x11/qt4-qtconfig_4.4.3-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/r/rar/rar_3.8b2-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-bin/texlive-base-bin-doc_2007.dfsg.2-3ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-fonts-recommended-doc_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-latex-base-doc_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-base/texlive-latex-recommended-doc_2007.dfsg.1-2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/texlive-extra/texlive-pstricks-doc_2007.dfsg.2-1ubuntu1_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tidy/tidy_20080116cvs-2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tipa/tipa_1.3-12_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/tofrodos/tofrodos_1.7.8.debian.1-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/ttf-indic-fonts/ttf-bengali-fonts_0.5.4ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/ttf-indic-fonts/ttf-kannada-fonts_0.5.4ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/ttf-indic-fonts/ttf-oriya-fonts_0.5.4ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/t/ttf-indic-fonts/ttf-telugu-fonts_0.5.4ubuntu2_all.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/u/unrar-nonfree/unrar_3.8.2-1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/libd/libdca/libdca0_0.0.5-0.1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/v/vlc/vlc-nox_0.9.4-1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/liba/libass/libass1_0.9.5-0ubuntu2_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/multiverse/v/vlc/vlc_0.9.4-1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/main/s/samba/winbind_3.2.3-1ubuntu3_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/w/winefish/winefish_1.3.3-0dl1ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/c/compizconfig-python/python-compizconfig_0.7.8-0ubuntu1_amd64.deb wget -c http://co.archive.ubuntu.com/ubuntu/pool/universe/c/compizconfig-settings-manager/compizconfig-settings-manager_0.7.8-0ubuntu3_all.deb wget -c http://packages.medibuntu.org/pool/non-free/s/skype/skype-common_2.0.0.72-0medibuntu4_all.deb wget -c http://packages.medibuntu.org/pool/non-free/s/skype/skype_2.0.0.72-0medibuntu4_amd64.deb PROGRAMAS ADICIONALES Y APLICACIONES DE WINDOWS EN LINUX Y antes que se me olvide, hago referencia a un post de esta comunidad para que su Linux ademas de actualizado, sea completo: http://www.taringa.net/posts/linux/1189314/Si-tenes-Ubuntu-entra___-%5Bedit%5D.html Solo me queda decir, que en cuanto a rendimiento y audio, si mejoro con respecto a su antecesor. Gracias, y espero que les sea de utilidad.