Cómo Instalar Driver de RTL8723BE en Kali Linux

Tengo un portatil HP con el siguiente PCI_Vendor 0bda:b006 y quería instalarlo ya que en en internet aparecía cómo hacer que lo reconociera pero aparecía baja señal y mirando en internet me crucé con  el siguiente vídeo que explicaba cómo instalarlo paso a paso y también dejo por aquí el script del vídeo, lo más cómodo es ponerlo en un «archivo.sh» y después ejecutarlo con «bash archivo.sh»

#!/bin/bash

# Make sure your system is up to date !!!
printf «[+] Updating the system …n»
apt update -y && apt upgrade -y && apt dist-upgrade -y
# install the headers module [ IMPORTANT ] !!!
printf «[+] Installing linux headers …»
apt-cache search linux-headers-4.* apt install -y linux-headers-«`uname -r`»
# Grab the firmware files
printf «[+] Downloading files …n»
cd /opt
git clone https://github.com/lwfinger/rtlwifi_new
chmod +x rtlwifi_new/**
cd rtlwifi_new
# Installing…
printf «[+] Installing firmware …n»
make && make install
depmod -a
modprobe -rv rtl8723be
modprobe -v rtl8723be ant_sel=2
ip link set wlan0 up
echo «options rtl8723be ant_sel=2» | sudo tee /etc/modprobe.d/50-rtl8723be.conf

Esto ha sido todo por el tutorial de hoy espero que hayáis aprendido algo y hasta la próxima.

Gracias por visitar mi blog de informática, mi nombre es Tomás y soy formador y desarrollador web. Si quiere usted dejarme alguna sugerencia, ayuda o quiere un servicio de formación estoy escuchando ofertas en tomas.gonzalez@infogonzalez.com, en Facebook a https://www.facebook.com/Infogonzalez estoy deseando escucharle. Su duda o sugerencia NO molesta.

Tomas Gonzalez
Este sitio web utiliza cookies, si necesitas más información puedes visitar nuestra política de privacidad    Ver
Privacidad
Creative Commons License
Except where otherwise noted, the content on this site is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
A %d blogueros les gusta esto: