Hola a todos, estoy corriendo
uname -a
Linux ubuntu 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64
x86_64 x86_64 GNU/Linux
en memoria USB
Mi problema es que mi señal wifi disminuye muy rápidamente con la distancia, normalmente navego por la red con ventanas desde mi habitación, sin embargo, en Ubuntu la señal es muy baja.
Intenté resolver usando
sudo modprobe -r iwlwifi
pero me sale este error
rmmod: ERROR: missing module name.
modprobe: FATAL: Error running remove command for iwlwifi
Traté de arreglar cambiando
/etc/modprobe.d/iwlwifi.conf
y añadiendo la línea
options iwlwifi 11n_disable=1
pero todavía no ha funcionado
Estoy agregando más información sobre mi sistema a continuación.
lspci -nn | grep 0280
08:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8188EE
Wireless Network Adapter [10ec:8179] (rev 01)
iwconfig cerca
iwconfig
eth0 no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point:
Bit Rate=72.2 Mb/s Tx-Power=20 dBm
Retry short limit:7 RTS thr=2347 B Fragment thr:off
Power Management:off
Link Quality=70/70 Signal level=-28 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:332 Missed beacon:0
lo no wireless extensions.
iwconfig lejos (no sé si ayuda)
iwconfig
eth0 no wireless extensions.
wlan0 IEEE 802.11bgn ESSID:""
Mode:Managed Frequency:2.412 GHz Access Point:
Bit Rate=72.2 Mb/s Tx-Power=20 dBm
Retry short limit:7 RTS thr=2347 B Fragment thr:off
Power Management:off
Link Quality=46/70 Signal level=-64 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:13 Missed beacon:0
lo no wireless extensions.
iwlwifi.conf
# /etc/modprobe.d/iwlwifi.conf
# iwlwifi will dyamically load either iwldvm or iwlmvm depending on the
# microcode file installed on the system. When removing iwlwifi, first
# remove the iwl?vm module and then iwlwifi.
remove iwlwifi \
(/sbin/lsmod | grep -o -e ^iwlmvm -e ^iwldvm -e ^iwlwifi | xargs /sbin/rmmod) \
&& /sbin/modprobe -r mac80211
Pídeme más información si es necesario y perdón por el mal inglés.
Respuesta1
Su tarjeta Realtek utiliza el controlador rtl8188ee. Hay algunos parámetros del controlador que puede probar. Primero:
sudo -i
rm /etc/modprobe.d/rtl8188ee.conf
echo "options rtl8188ee msi=1" > /etc/modprobe.d/rtl8188ee.conf
modprobe -r rtl8188ee
modprobe rtl8188ee
exit
¿Cualquier mejora? Si no hay ninguna mejora, intente también reiniciar.
Aparte del cambio en la calidad del enlace informado, ¿cuáles son sus síntomas?
Respuesta2
Un poco tarde, pero para quien pueda ayudar: la solución de @chilli555 funciona perfectamente, sin embargo, en mi caso tuve que hacer un paso adicional (deshabilitar el controlador Intel) antes de que funcionara perfectamente.
driver=$(lspci -nn | grep 0280 | awk '{print tolower($9)}')
rm /etc/modprobe.d/$driver.conf
echo "options $driver msi=1" > /etc/modprobe.d/$driver.conf
modprobe -r $driver
modprobe $driver
rm /etc/modprobe.d/iwlwifi.conf
echo "options iwlwifi 11en_disable=1" > /etc/modprobe.d/iwlwifi.conf
modprobe -r iwlwifi
modprobe iwlwifi
Escriba el script anterior en un archivo y ejecute este ejecutable.
Reiniciar el sistema