LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-24-2020, 06:02 PM   #31
high_existence
LQ Newbie
 
Registered: Jun 2017
Posts: 28

Original Poster
Rep: Reputation: Disabled

Quote:
Originally Posted by ferrari View Post
It's unclear to me where you are now at. Reboot and do
Code:
dmesg | grep "firmware|rtl"
Any errors reported?

Is the driver loaded?
Code:
lsmod | grep rtl
hello.

#dmesg | grep "firmware|rtl" #<enter>
#lsmod | grep rtl
Code:
btrtl                  24576  1 btusb
bluetooth             659456  41 btrtl,btintel,btbcm,bnep,btusb,rfcomm
 
Old 04-24-2020, 06:43 PM   #32
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
So, try loading the wifi driver module manually...
Code:
sudo modprobe rtl8723de
Then check to see if a wireless device node is now present
Code:
ip a

Last edited by ferrari; 04-24-2020 at 06:58 PM.
 
Old 04-26-2020, 07:45 PM   #33
high_existence
LQ Newbie
 
Registered: Jun 2017
Posts: 28

Original Poster
Rep: Reputation: Disabled
Hello ferrary

#sudo modprobe rtl8723de
Code:
modprobe: FATAL: Module rtl8723de not found in directory /lib/modules/5.4.0-0.bpo.4-amd64
Anyway:

# ip a
Code:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
    link/ether e4:e7:49:0a:e3:58 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.32/24 brd 192.168.0.255 scope global dynamic noprefixroute eno1
       valid_lft 601971sec preferred_lft 601971sec
    inet6 fe80::e6e7:49ff:fe0a:e358/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
Thank you. I really appreciate your help.
 
Old 04-26-2020, 08:06 PM   #34
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Not sure why the module you built isn't found.

Run the following command to see if the compressed module is present as expected...
Code:
sudo ls /lib/modules/$(uname -r)/kernel/drivers/net/wireless/realtek/rtlwifi/
Assuming that the module is built, also check which compression schemes are supported by the running kernel...
Code:
zcat /proc/config.gz | grep CONFIG_KERNEL
 
Old 04-26-2020, 08:25 PM   #35
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
FWIW, I've just built the wifi modules successfully in my openSUSE environment (even though I don't have this hardware), using the same instructions I gave you. We just need to find where the issue is occurring for you.
 
Old 04-26-2020, 09:21 PM   #36
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,348

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Quote:
make[1]: se sale del directorio '/usr/src/linux-headers-5.4.0-0.bpo.4-amd64'
make: *** [Makefile:87: all] Error 2
The module didn't compile so you won't have the driver.
Did you delete the rtlwifi_new directory before running the git command?
 
Old 04-26-2020, 09:52 PM   #37
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
That was back in post #25 (the OP didn't have the requisite build environment). However, going back through the thread I must admit that the OP hasn't been clear about where they are now at. I may have incorrectly assumed that they had now successfully built the required module when they actually haven't.
 
Old 04-27-2020, 03:57 AM   #38
Marina56
LQ Newbie
 
Registered: Apr 2020
Posts: 6

Rep: Reputation: Disabled
Quote:
Originally Posted by ferrari View Post
That was back in post #25 (the OP didn't have the requisite build environment). However, going back through the thread I must admit that the OP hasn't been clear about where they are now at. I may have incorrectly assumed that they had now successfully built the required module when they actually haven't.
Maybe what you said is right,waiting for the reply from OP.
 
Old 04-27-2020, 05:31 AM   #39
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,348

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
Quote:
FWIW, I've just built the wifi modules successfully in my openSUSE environment (even though I don't have this hardware), using the same instructions I gave you. We just need to find where the issue is occurring for you.
I have this wifi dongle and have to build it every time I have a kernel update. On my Xubuntu and fedora system I use dkms and it takes care of it self with kernel upodates. On my Slackware system I manually build the driver whenever I have a kerel update. When the 5.0 kernel came out the original download from https://github.com/lwfinger/rtlwifi_new/ wouldn't build, so had to Download again from the same website.
I still had the old downloaded file to check and make sure I wasn't imagining things and sure enough it wouldn't build on a 5.0 kernel. The op needs to delete the rtlwifi_new and redownload it. The op can manually download the zip file from https://github.com/lwfinger/rtlwifi_new/ if they pefer doing that instead of using the git command.

Last edited by colorpurple21859; 04-27-2020 at 05:32 AM.
 
Old 04-27-2020, 06:05 AM   #40
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Yes, that is what I’d hoped they had done. Anyway, best to see if they can confirm where they are at.
 
Old 04-27-2020, 06:16 AM   #41
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,348

Rep: Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589Reputation: 1589
for the op if you want to use dkms, install dkms if it isn't installed then as root
Code:
cd rtlwifi_new
dkms add ../rtlwifi_new
dkms build rtlwifi-new/0.6 
dkms install rtlwifi-new/0.6
modprobe -v rtl8723de ant_sel=2
create a /etc/modprobe.d/50-rtl8723de.conf and put this
Code:
options rtl8723de ant_sel=2
 
Old 04-27-2020, 09:30 PM   #42
high_existence
LQ Newbie
 
Registered: Jun 2017
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ferrari View Post
Not sure why the module you built isn't found.

Run the following command to see if the compressed module is present as expected...
Code:
sudo ls /lib/modules/$(uname -r)/kernel/drivers/net/wireless/realtek/rtlwifi/
Assuming that the module is built, also check which compression schemes are supported by the running kernel...
Code:
zcat /proc/config.gz | grep CONFIG_KERNEL
Hi Ferrari.

Below the outputs

#sudo ls /lib/modules/$(uname -r)/kernel/drivers/net/wireless/realtek/rtlwifi/
Code:
btcoexist  rtl8188ee  rtl8192c  rtl8192ce  rtl8192cu  rtl8192de  rtl8192ee  rtl8192se  rtl8723ae  rtl8723be  rtl8723com  rtl8821ae  rtl_pci.ko  rtl_usb.ko  rtlwifi.ko
The rtl8723de is not there.

#zcat /proc/config.gz | grep CONFIG_KERNEL
Code:
gzip: /proc/config.gz: No such file or directory
 
Old 04-27-2020, 09:56 PM   #43
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,805

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Quote:
Originally Posted by high_existence View Post
Hi Ferrari.

Below the outputs

#sudo ls /lib/modules/$(uname -r)/kernel/drivers/net/wireless/realtek/rtlwifi/
Code:
btcoexist  rtl8188ee  rtl8192c  rtl8192ce  rtl8192cu  rtl8192de  rtl8192ee  rtl8192se  rtl8723ae  rtl8723be  rtl8723com  rtl8821ae  rtl_pci.ko  rtl_usb.ko  rtlwifi.ko
The rtl8723de is not there.
As suspected. Return to post #22 onwards.
 
Old 04-28-2020, 08:20 PM   #44
high_existence
LQ Newbie
 
Registered: Jun 2017
Posts: 28

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ferrari View Post
That might the case, but surely a typo?

In any case I notice that the https://github.com/lwfinger/rtlwifi_new page mentions

and
Code:
git clone https://github.com/lwfinger/rtlwifi_new.git -b extended
cd rtlwifi_new
make
sudo make install
sudo modprobe -r <<YOUR WIRELESS DRIVER CODE>>
sudo modprobe <<YOUR WIRELESS DRIVER CODE>>
*where rtl8723de is the driver name. The existing rtlwifi_new would need to be deleted first, before doing 'git clone...'
Hello ferrari...thanks. What I did was:

# git clone https://github.com/lwfinger/rtlwifi_new.git -b extended
Code:
fatal: the destiny path 'rtlwifi_new' already exist and it is not an empty directory.
So I changed the path as per git webpage as:

# git clone https://github.com/lwfinger/rtlwifi_...re/rtlwifi.git -b extendedClonando en 'rtlwifi'...
Code:
fatal: repository 'https://github.com/lwfinger/rtlwifi_new/tree/master/firmware/rtlwifi.git/' not found
So I erase the /tree/master/:

# git clone https://github.com/lwfinger/rtlwifi_...re/rtlwifi.git -b extended
Code:
Cloning en 'rtlwifi'...
remote: Not Found
fatal: repository 'https://github.com/lwfinger/rtlwifi_new/firmware/rtlwifi.git/' not found
Again, please consider me as a newcomer. I appreciate you think I am at least an amateur but I am not. Saying that, what would I do next?

Thanks in advace.
 
Old 05-08-2020, 09:02 PM   #45
high_existence
LQ Newbie
 
Registered: Jun 2017
Posts: 28

Original Poster
Rep: Reputation: Disabled
Hi fellows.

I repeated step by step all the procedure ferrari adviced me. I (we, or you!) solved it! thank you so much. Now I am very happy with my GNU/linux Debian 10.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Hw to get WiFi on Debian10 MosheWiener Linux - Laptop and Netbook 13 01-26-2020 01:39 AM
[SOLVED] dell7591&debian10,mouse,keyboard,touchpad do not work after susped& resume,Help! chu887 Linux - Laptop and Netbook 5 12-24-2019 07:58 AM
If I put debian10 on a micro-sd card that is FAT formatted, using Etcher, will the OS on the sd boot? bvv Linux - Newbie 3 09-17-2019 04:17 PM
Need help installing Mandrake (again, again, again...) DicedMalt Mandriva 6 08-26-2003 04:47 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:25 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration