El Software y el conocimiento debe ser Libre
Distribuciones
Anuncio de cada distribución de interés al mundo del Software Libre.
Chromium será el navegador por defecto en Ubuntu 10.10 Netbook Remix
Jun 8th
Chromium será el navegador por defecto en Ubuntu 10.10 Netbook Remix, y teniendo en cuenta el creciente número de usuarios a usarlo, se necesita mejorar el modelo de seguridad para este software.
Los principales retos son:
- Averiguar como obtener actualizaciones de seguridad de una manera fluida.
- Gestión de la decoración de ventanas para la integración con el escritorio.
- Crear en el menú la opción correcta para la aplicación.
- Manejo de las traducciones.
- Hacer que entre en el CD.
3com wireless pc card not working in Ubuntu
Jun 8th
I have had the same problem with the update to Ubuntu 10.04 LTS (Lucid Lynx). From 8.10 then to 9.04 then to 9.10 everything worked out of the box but suddenly no connection now with 3Com 3CRWE154G72 officeconnect pcmcia card. I got the 2 very faint lights on but no activity and no recognition that the wireless interface existed. There are 2 packages missing that need installing, at least for me.
I did:
sudo apt-get install linux-firmware-nonfree
this allowed the card to be seen by the OS and the p54pci driver to be installed. At this point the faint lights go out indicating positive control over the interface. But if you try to connect at this point you will get the lights flashing but no connection is established. then I did:
sudo apt-get install wireless-tools
now iwconfig works and you can use network manager to configure the interface and it connects OK. So a solution but still does not work out of the box as it used to so I guess some work needs to be done on the instalation.
While the above packages did provide me with a stable WiFi connection, I noticed that hotplug was not being supported and if the PCMCIA card was not present at startup or was ejected during a session and then re-inserted it would not be recognised and the interface was lost. So hotplug was not being supported. I did:
sudo apt-get install linux-wlan-ng
and restarted the system. Now I have hotplug on the PCMCIA card too.
Como arreglar el problema de depencia libstdc++5 en Ubuntu 10.04
Jun 5th
Tras actualizar a Ubuntu 10.04 me di cuenta que algunas aplicaciones no se ejecutaban,el problema venía que estas dependían de la librería libstdc++5.
Esta librería se ha declarado obsoleta y en su lugar ha sido sustituida por libstdc++6 en su lugar. Al parecer la eliminación de esta biblioteca no fue acertada y fue reportada como un bug. El error que da al querer ejecutar una aplicación que depende de esta librería es el siguiente:
“Error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory“
No voy a indicar las aplicaciones que han dejado de funcionar al eliminar esta librería.
Los desarrolladores de han puesto manos a la obra para corregir este error, por lo general sustituyendo la dependencia con libstdc++5 por libstdc++6.
Mi solución es sencilla, se trata de descargar el paquete libstdc++5 de Ubuntu 9.04 (Jaunty Jackalope) e instalarlo en Ubuntu 10.04 Lucid.
Nota: Necesitarás el paquete i386 si usar Ubuntu_i386, y necesitaras los paquetes i386 y amd64 si usas Ubuntu_amd64 esto es para las aplicaciones i386 que se ejecuten bajo la arquitectura amd64.
Para Ubuntu 10.04 i386
Descargamos el paquete i386 Jaunty libstdc++5.
Lo instalamos así de un terminal:
$ sudo dpkg -i libstdc++5_3.3.6-17ubuntu1_i386.deb
Para Ubuntu 10.04 amd64
Como indicaba al principio debemos descargar ambos paquetes para i386 y amd64:
El paquete amd64:
Descargamos el paquete amd64 Jaunty libstdc++5 y lo instalamos de la siguiente manera desde un terminal:
$ sudo dpkg -i libstdc++5_3.3.6-17ubuntu1_amd64.deb
El paquete i386:
Descargamos el paquete i386 Jaunty libstdc++5.
Lo instalamos así:
$ sudo dpkg-deb -x libstdc++5_3.3.6-17ubuntu1_i386.deb ./tmp $ sudo cp ./tmp/usr/lib/* /usr/lib32/
Y hasta aquí os puedo ayudar.
¡SUERTE!