2

I tried following the steps mentioned in this link: make: *** [modules] Error 2

When I am typing this command:

sudo modprobe rtl8723de

I am getting the error:

modprobe: FATAL: Module rtl8723de not found in directory /lib/modules/4.15.0-34-generic

Previously I tried the command rm /etc/modprobe.d/iwlwifi.conf as it was giving bad option error.

Steps as follows:

$ sudo rm -r rtl8723de*
rm: cannot remove 'rtl8723de*': No such file or directory

$ sudo apt update && sudo apt -y install git
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

$ git clone https://github.com/lwfinger/rtlwifi_new.git
done

$ cd rtlwifi_new
$ make
make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-34-generic'

$ sudo make install
make -C /lib/modules/4.15.0-34-generic/build M=/home/shubham/rtlwifi_new modules
make[1]: Entering directory '/usr/src/linux-headers-4.15.0-34-generic'
  Building modules, stage 2.
  MODPOST 15 modules
make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-34-generic'
Making backups
Install rtlwifi SUCCESS

$ sudo modprobe rtl8723de
modprobe: FATAL: Module rtl8723de not found in directory /lib/modules/4.15.0-34-generic
Zanna
  • 70,465

1 Answers1

0

Please try:

sudo rm -rf rtlwifi_new
git clone -b extended https://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
make
sudo make install 
sudo modprobe rtl8723de

Post any errors, please.

We cloned the 'extended' branch of the git. Mr. Finger currently maintains nine branches for this driver suite. He adds and deletes branches from time to time. Therefore, not every answer posted on every forum will be valid forever.

chili555
  • 60,188