LinuxQuestions.org
Review your favorite Linux distribution.
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 09-16-2018, 07:46 AM   #1
Rikeri
LQ Newbie
 
Registered: Sep 2018
Location: Toronto CA
Distribution: Trying to use Zorin >.>
Posts: 7

Rep: Reputation: Disabled
Wireless and audio wont work on my fresh installs.


Hi, I've recently trying to install Linux onto my fairly new, and very cheap(really low specs) laptop. I've tried Lubuntu, Ubuntu and now Zorin Lite which is my favorite and the one I plan to use.

The problem however is that all of the above OS fail to detect my audio while both Ubuntu and Zorin fail to detect my wireless firmware. It runs on Lubuntu fine. The wireless is my main concern at the moment.

I know my PC uses a realtek wlan adapter so I went to their site on another computer and downloaded all 4 of their wlan/bluetooth drivers and tried each of them one by one on the 'Windows Wireless Drivers' thing. They all come up as 'Hardware Present: No'. I also tried various random commands I found on the internet for these things but none of them work. I mean except for the ones that download stuff from the internet since the laptop doesn't have a Ethernet port.

The following is the result from running 'sudo lshw -c network':
*-network DISABLED
description: Wireless interface
physical id: 1
logical name: wlan0
serial: 84:20:96:d0:a16
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=rt18723bs mutlicast=yes wirelesss=unassociated

I tried posting this on Zorin OS but the post didn't go through(I think). It didn't show up but maybe its just laggy.

Thanks.
 
Old 09-16-2018, 01:19 PM   #2
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,452

Rep: Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342
Hello, Rikeri & Welcome to LQ.

The most effective search is usually to google '<device> linux module' and you'll usually find something. In some cases Realtek particularly will have a module, but not in the kernel. That usually builds a module using your kernel source and puts in /lib/modules/<kernel-version>/misc.

If firmware is required, that may be another issue. You find the binary and stuff it as instructed in /lib/firmware.
 
1 members found this post helpful.
Old 09-16-2018, 08:02 PM   #3
Rikeri
LQ Newbie
 
Registered: Sep 2018
Location: Toronto CA
Distribution: Trying to use Zorin >.>
Posts: 7

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
Hello, Rikeri & Welcome to LQ.

The most effective search is usually to google '<device> linux module' and you'll usually find something. In some cases Realtek particularly will have a module, but not in the kernel. That usually builds a module using your kernel source and puts in /lib/modules/<kernel-version>/misc.

If firmware is required, that may be another issue. You find the binary and stuff it as instructed in /lib/firmware.
Hi, Business Kid thanks for replying. I tried searching up my specific driver 'realtek rt18723bs linux driver' but there was no driver for that version. Does the driver need to be exact or can other realtek wlan linux drivers work?

Also it might be a firmware issue since every time before start up, three missing lines pop up for a second saying:
[ 8.972493] Request firmware failed with error 0xfffffffe
[ 9.067029] Request firmware failed with error 0xfffffffe
[ 9.069716] Request firmware failed with error 0xfffffffe
 
Old 09-17-2018, 03:58 AM   #4
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,452

Rep: Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342Reputation: 2342
Yes, one driver might be covering a few, or many realtek chips. They do keep making different models, but research, development & testing/approvals isn't that fast a process even if you throw huge resources at it.

Asking for firmware is a good sign. Repeat the google with 'firmware' instead of model. Something I missed earlier was this.
Code:
configuration: broadcast=yes driver=rt18723bs mutlicast=yes wirelesss=unassociated
That indicates some module is talking to it, so relax, and let's worry about firmware. That's a binary to run the onboard cpu. This is conbfusing as it's non-free stuff, but this seems to be a worthwhile_link Try rebooting with that installed. No dependencies, I imagine. It seems to pack stuff in /lib/firmware/rtlwifi/. Can you handle debs? there's deb2tgz somewhere.
 
1 members found this post helpful.
Old 09-17-2018, 06:22 PM   #5
Rikeri
LQ Newbie
 
Registered: Sep 2018
Location: Toronto CA
Distribution: Trying to use Zorin >.>
Posts: 7

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by business_kid View Post
Yes, one driver might be covering a few, or many realtek chips. They do keep making different models, but research, development & testing/approvals isn't that fast a process even if you throw huge resources at it.

Asking for firmware is a good sign. Repeat the google with 'firmware' instead of model. Something I missed earlier was this.
Code:
configuration: broadcast=yes driver=rt18723bs mutlicast=yes wirelesss=unassociated
That indicates some module is talking to it, so relax, and let's worry about firmware. That's a binary to run the onboard cpu. This is conbfusing as it's non-free stuff, but this seems to be a worthwhile_link Try rebooting with that installed. No dependencies, I imagine. It seems to pack stuff in /lib/firmware/rtlwifi/. Can you handle debs? there's deb2tgz somewhere.
Thank you for your continued help on this Business Kid. I think Zorin can run debs. When i tried installing that pack I got the following error message:
Code:
dpkg: error processing archive /home/rikeri/firmware-realtek_0.43_all.deb (--unpack):
 trying to overwrite '/lib/firmware/RTL8192E/main.img', which is also in package linux-firmware 1.157.20
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
 /home/rikeri/firmware-realtek_0.43_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
It might be because of something I tried earlier when I was browsing google for answers. I cloned this git repo which seems to be filled with realtek drivers https://github.com/lwfinger/rtlwifi_new and ran a
Code:
make
sudo make install
on it. It seems to have filled /lib/firmware/rtlwifi with a bunch of *.bin files. Should I remove these and try again? Or is the error something else.
 
Old 09-17-2018, 06:59 PM   #6
Rikeri
LQ Newbie
 
Registered: Sep 2018
Location: Toronto CA
Distribution: Trying to use Zorin >.>
Posts: 7

Original Poster
Rep: Reputation: Disabled
Smile I got it to work!

I finally got my wifi to work and also learned how stupid I am in the process. The driver was rtl8723bs not rtONE8723bs. I was browsing google after searching with rtONE8723bs when I noted that most of the other realtek firmware and drivers all start with 'rtl'. That's when it clicked to me that I am a complete moron.

After establishing that fact I was able to easily find the correct driver and install it. Thank you so much business kid. I couldn't have done this without your help! <3
 
  


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
Wireless and audio wont work on my fresh installation of Zorin. Rikeri Zorin OS 4 09-17-2018 07:03 PM
alsactl wont persist settings and gnome audio slider doesn't work. Recursion Linux - Software 2 06-24-2010 06:58 AM
My wireless wont work SimonTHK Linux - Networking 14 10-01-2009 06:05 AM
wireless driver wont install,ethernet wont work Reanimator Linux - Newbie 4 05-05-2008 08:22 AM
SIGMATEL STAC 97 Audio wont work in Slackware 10 please help Axi0n Linux - Laptop and Netbook 1 10-27-2004 08:18 PM

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

All times are GMT -5. The time now is 10:22 AM.

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