<br><br><br><div class="gmail_quote">2009/2/2 Douglas Jiménez <span dir="ltr"><<a href="mailto:dougjim@gmail.com">dougjim@gmail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="gmail_quote">2009/2/3 Andrés Flórez <span dir="ltr"><<a href="mailto:andrewflorez@gmail.com" target="_blank">andrewflorez@gmail.com</a>></span><div><div></div><div class="Wj3C7c"><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hola a todos,<br><br>Estuve realizando todos los intentos, soluciones
en antiguos posts y en google pero aun no consigo hacer funcionar la
red inlambrica en hardy heron 8.04<br>Instale el driver con ndiswrapper bcmwl5 agregue el modulo de ndiswrapper y nada.<br>
<br>lspci:<br><br>05:00.0 Network controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 02)<br>08:08.0 Ethernet controller: Intel Corporation PRO/100 VE Network Connection (rev 02)<br><br>Kernel:<br><br>2.6.24-16-generic<br>
<br>iwconfig:<br><br>lo no wireless extensions.<br>eth0 no wireless extension</blockquote></div></div><div><br>A mí me dieron esto y me funcionó. Prueba a ver:<br><br> *********************************************************************************************<br>
        
        
        
        
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000"><a href="http://novatillaenapuros.wordpress.com/2008/02/09/conecta-tu-wifi-en-ubuntu/" target="_blank">http://novatillaenapuros.wordpress.com/2008/02/09/conecta-tu-wifi-en-ubuntu/</a>
</font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">-
Primero en consola tecleamos: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">iwconfig
</font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">De
esta forma veremos que en eth1, tenemos la tarjeta wireless en eth1. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">-
Para ver las redes wifi disponibles tecleamos en consola: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
iwlist eth1 scan </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Nos
pedirá la contraseña de root y a continuación todas las redes que
tenemos a nuestro alcance. Apuntar la ESSID ya que luego nos hará
falta. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">-
Como predeterminada tendreis la conexión eth1 en vuestra
administración de redes. Con la ESSID y la contraseña de red, que
en mi caso telefónica me facilitó, ponemos en consola, lo
siguiente: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
ifconfig eth1 up </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
iwconfig eth1 essid elnombredelaESSID </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
iwconfig eth1 key s:lacontraseña </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
dhclient eth1 </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Si
todo va bien, ya tenemos conexión a internet. Abrir el navegador o
para tenerlo controlado siempre (como yo lo tengo), vais al panel,
añadir al panel y en Sistema y Hardware, añadiros Monitor de Red.
Selecionais ETH1 y os marcará la fuerza de la señal entre otras
cosas. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Para
automatizarlo, simplemente nos creamos un archivo de texto con el
siguiente contenido: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">#!/bin/bash
</font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
ifconfig eth1 up </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
iwconfig eth1 essid elnombredelaESSID </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
iwconfig eth1 key s:lacontraseña </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
dhclient eth1 </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Y
lo guardais como: conecta.sh </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Bien,
ahora tenemos que añadirlo al sistema de arranque automático. Para
ello, primero nos vamos al terminal escribimos: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">gksudo
nautilus </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Y
copiamos el archivo conecta.sh en /etc/init.d , y finalmente le
asignamos permisos 0755 desde consola (chmod 0755
/etc/init.d/conecta.sh) o desde nautilus, botón derecho a
conecta.sh, permisos y los asignamos. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Para
terminar, abrimos consola y tecleamos: </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">sudo
update-rc.d conecta.sh defaults </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Con
lo que añadimos un enlace a ese archivo a los archivos de inicio. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><br>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Finalmente,
reiniciamos para aplicar cambios. </font>
</p>
<p style="margin-bottom: 0cm; text-decoration: none;"><font color="#000000">Y
FIN, ya tienes configurada tu conexión wifi en tu Ubuntu.</font></p>
<br>**********************************************************************************************<br></div><div class="Ih2E3d"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>Les agradezco mucho su ayuda</blockquote></div><div><br>Ojalá sirva. <br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><font color="#888888"><br>
-- <br>Andrés F. Flórez <br></font></blockquote><div><br></div></div></blockquote></div><br>Hola Douglas, te agradezco tu respuesta, el asunto es que no tengo realmente un problema de configuraciojn de la tarjeta, el asunto es que mi computador no la detecta, no consigo instalar el driver adecuado, alguna sugerencia????<br>