web-dev-qa-db-fra.com

Comment installer libelf-devel ou elfutils-libelf-devel sur ubuntu 18.04 hp laptop ay503tx

pilote ubuntu 18.04 wifi wifi rtl8723be

j'ai couru cette commande dans le terminal

git clone https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
git checkout extended
Sudo make install

make command not found :

alors j'ai couru

Sudo apt-get install --reinstall make
 Sudo apt-get install build-essential

erreur:

 Sudo make install
make -C /lib/modules/4.15.0-33-generic/build M=/home/rizwan/Downloads/rtlwifi_new modules
make[1]: Entering directory '/usr/src/linux-headers-4.15.0-33-generic'
Makefile:976: "Cannot use CONFIG_STACK_VALIDATION=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel"
  CC [M]  /home/rizwan/Downloads/rtlwifi_new/base.o
cc1: error: code model kernel does not support PIC mode
scripts/Makefile.build:332: recipe for target '/home/rizwan/Downloads/rtlwifi_new/base.o' failed
make[2]: *** [/home/rizwan/Downloads/rtlwifi_new/base.o] Error 1
Makefile:1552: recipe for target '_module_/home/rizwan/Downloads/rtlwifi_new' failed
make[1]: *** [_module_/home/rizwan/Downloads/rtlwifi_new] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-33-generic'
Makefile:87: recipe for target 'all' failed
make: *** [all] Error 2

j'ai installé ces modules en utilisant la commande

Sudo apt install libelf-dev  libelf-devel elfutils-libelf-devel

seul libelf-dev est installé mais il reste deux éléments non localisés à localiser

rizwan@rizwan-HP:~$ Sudo apt install libelf-dev  libelf-devel elfutils-libelf-devel
[Sudo] password for rizwan: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package libelf-devel
E: Unable to locate package elfutils-libelf-devel
rizwan@rizwan-HP:~$ 

finalement, j'ai trouvé que le nom des bibliothèques est différent, différent pour différentes distributions Linux, alors aidez-moi à installer libelf-devel elfutils-libelf-devel à Ubuntu 18.04 hp laptop ay503tx

1
Rizwan

vous devez installer les en-têtes linix génériques en:

Sudo apt-get update
Sudo apt-get install linux-generic

Je vois que vous avez déjà téléchargé les pilotes realtek wifi, assurez-vous que vous êtes dans le bon répertoire et lancez-le pour les installer:

cd rtlwifi_new
Sudo dkms add ../rtlwifi_new
Sudo dkms build rtlwifi-new/0.6 
Sudo dkms install rtlwifi-new/0.6
Sudo modprobe -v rtl8723de ant_sel=2

Félicitations, vous avez en cours d'exécution wifi.

Enregistrez la configuration avec cette commande:

Sudo /bin/sh -c 'echo "options rtl8723de ant_sel=2" >> /etc/modprobe.d/rtl8723de.conf'

Redémarrer.

Détails ici:

https://h30434.www3.hp.com/t5/Notebook-Wireless-and-Networking/Realtek-8723DE-wifi-module-amp-Bluetooth-Linux-driver/td-p/6477307

1
Wolfie