Difference between revisions of "Translations:FAQ/72/es"

From GhostBSD Wiki
Jump to: navigation, search
(Created page with "Si no genera ninguna salida, significa que la configuracion de red de GhostBSD no detecto su tarjeta inalambrica. Lo proximo que debería hacer es revisar si GhostBSD tiene el...")
 
Line 1: Line 1:
Si no genera ninguna salida, significa que la configuracion de red de GhostBSD no detecto su tarjeta inalambrica. Lo proximo que debería hacer es revisar si GhostBSD tiene el driver de su tarjeta inalambrica instalada
+
Si no genera ninguna salida, significa que la configuración de red de GhostBSD no detecto su tarjeta inalámbrica. Lo próximo que debería hacer es revisar si GhostBSD tiene el driver de su tarjeta inalámbrica instalada
 
: <code>sudo ifconfig | grep -B 3 802.11</code>
 
: <code>sudo ifconfig | grep -B 3 802.11</code>
En este caso run0 es el driver de la tarjeta inalambrica.
+
En este caso run0 es el driver de la tarjeta inalámbrica.
 
<pre>
 
<pre>
 
run0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
 
run0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
Line 10: Line 10:
 
Si tienes una salida similar al ejemplo anterior, necesita configurar el archivo ''/etc/rc.conf''.
 
Si tienes una salida similar al ejemplo anterior, necesita configurar el archivo ''/etc/rc.conf''.
 
: <code>sudo ee /etc/rc.conf</code>
 
: <code>sudo ee /etc/rc.conf</code>
Agregue estas lineas al archivo ''/etc/rc.conf'' (Reemplaze run0 con su driver).
+
Agregue estas lineas al archivo ''/etc/rc.conf'' (Cambie run0 con su driver).
 
<pre>
 
<pre>
 
wlans_run0="wlan0"
 
wlans_run0="wlan0"

Revision as of 18:31, 19 July 2018

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (FAQ)
If you have no output, this mean the GhostBSD network configuration system have not detected your WiFi card. The next step for you will be to look if GhostBSD have your WiFi drivers install.
: <code>sudo ifconfig | grep -B 3 802.11</code>
In this case run0 is the WiFi drivers.
<pre>
run0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
       ether 00:1e:e5:e6:5d:1
       nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
       media: IEEE 802.11 Wireless Ethernet autoselect mode 11a
</pre>
If you have an output similar from the example above, you need to configure the file ''/etc/rc.conf''.
: <code>sudo ee /etc/rc.conf</code>
Add those line in the file ''/etc/rc.conf'' (Replace run0 by your drivers).
<pre>
wlans_run0="wlan0"
ifconfig_wlan0="WPA DHCP"
</pre>
[[wikipedia:en:Esc key|Esc]] and save the file. Now you need to restart <code>netif</code>.
: <code>sudo /etc/rc.d/netif restart</code>
Your wifi is now configured, you might have to turn wlan0 up.
: <code>sudo ifconfig wlan0 up</code>
TranslationSi no genera ninguna salida, significa que la configuración de red de GhostBSD no detecto su tarjeta inalámbrica. Lo próximo que debería hacer es revisar si GhostBSD tiene el driver de su tarjeta inalámbrica instalada
: <code>sudo ifconfig | grep -B 3 802.11</code>
En este caso run0 es el driver de la tarjeta inalámbrica.
<pre>
run0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
       ether 00:1e:e5:e6:5d:1
       nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
       media: IEEE 802.11 Wireless Ethernet autoselect mode 11a
</pre>
Si tienes una salida similar al ejemplo anterior, necesita configurar el archivo ''/etc/rc.conf''.
: <code>sudo ee /etc/rc.conf</code>
Agregue estas lineas al archivo ''/etc/rc.conf'' (Cambie run0 con su driver).
<pre>
wlans_run0="wlan0"
ifconfig_wlan0="WPA DHCP"
</pre>
[[wikipedia:en:Esc key|Esc]] y guarde el archivo. Ahora necesita reiniciar el paquete <code>netif</code>.
: <code>sudo /etc/rc.d/netif restart</code>
Su tarjeta inalambrica esta configurada, deberia encender su red wlan0 up.
: <code>sudo ifconfig wlan0 up</code>

Si no genera ninguna salida, significa que la configuración de red de GhostBSD no detecto su tarjeta inalámbrica. Lo próximo que debería hacer es revisar si GhostBSD tiene el driver de su tarjeta inalámbrica instalada

sudo ifconfig | grep -B 3 802.11

En este caso run0 es el driver de la tarjeta inalámbrica.

run0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 2290
       ether 00:1e:e5:e6:5d:1
       nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
       media: IEEE 802.11 Wireless Ethernet autoselect mode 11a

Si tienes una salida similar al ejemplo anterior, necesita configurar el archivo /etc/rc.conf.

sudo ee /etc/rc.conf

Agregue estas lineas al archivo /etc/rc.conf (Cambie run0 con su driver).

wlans_run0="wlan0"
ifconfig_wlan0="WPA DHCP"

Esc y guarde el archivo. Ahora necesita reiniciar el paquete netif.

sudo /etc/rc.d/netif restart

Su tarjeta inalambrica esta configurada, deberia encender su red wlan0 up.

sudo ifconfig wlan0 up