LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint
User Name
Password
Linux Mint This forum is for the discussion of Linux Mint.

Notices


Reply
  Search this Thread
Old 06-28-2017, 09:48 AM   #1
davhenry
LQ Newbie
 
Registered: Jun 2017
Location: Near York, England.
Distribution: Mint 18.1 Serena 64 bit
Posts: 4

Rep: Reputation: Disabled
Wifi driver problems on a Probook, no wifi detection on a clean installation.


Have obtained a second HP Probook for my wife. Installed Mint 18.1 Serena as previously on to a clean hard disk. All went well with the exception of wifi connection. Looks like a missing driver.
Can anyone help please.

Probook 455-G2
 
Old 06-28-2017, 07:22 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,345
Blog Entries: 28

Rep: Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145
Some wireless manufacturers provide better Linux support that others, but we can probably get it working.

What wireless chipset is in that box? (You can find out by running the command lspci in a terminal; you may have to do so as root.)
 
Old 06-28-2017, 11:04 PM   #3
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Hi...

To expand on frankbell's suggestion, please open a terminal and post the results of this command...

Code:
lspci -nnk | grep -i net -A2
This will give us information concerning your adapter.

Regards...
 
Old 06-29-2017, 12:33 AM   #4
davhenry
LQ Newbie
 
Registered: Jun 2017
Location: Near York, England.
Distribution: Mint 18.1 Serena 64 bit
Posts: 4

Original Poster
Rep: Reputation: Disabled
Hi, many thanks for your quick responses, being an old hardware man (very) I took the quick route and exchanged the wifi adapters with the working machine. (both are identical adapters) Result, no difference. (Realtek RTL8723BE)
The terminal results were; Family 15h models 30h - 3fh and device 1424.

Driver manager reported; Do not use AMD64-microcode version 2.20160316.1 for CPUs. It would appear that an attempt was made to download an update from Ubuntu archives, which of course failed. Figured I might use the other machine to obtain this update code and transfer to a card if that is possible.

Regards to frankbell and ardvark71.
 
Old 06-29-2017, 12:46 AM   #5
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
The lspci output which was requested will show the chipset details and driver in use. Vague descriptions won't cut it. If you need to get that info here without internet connectivity, the general approach is to copy/paste to a text file and transfer on a memory stick via an internet connected machine. It might be that your wireless device is soft-blocked. That can be checked using the 'rfkill' command if necessary. (I'm not a Mint user, and it may need to be installed first.)
 
Old 06-29-2017, 12:57 AM   #6
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
I suspect your original wifi card will be as reported (for the same model) in this thread.
Code:
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter
Subsystem: Hewlett-Packard Company Device 2231
Physical Slot: 0
Flags: bus master, fast devsel, latency 0, IRQ 47
I/O ports at 3000 [size=256]
Memory at d4800000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: rtl8723be

A better form of filtering for network devices is to filter by class 02 like this...
Code:
lspci -nnk | grep '\[02' -A3

Last edited by ferrari; 06-29-2017 at 12:58 AM.
 
Old 06-29-2017, 02:11 AM   #7
davhenry
LQ Newbie
 
Registered: Jun 2017
Location: Near York, England.
Distribution: Mint 18.1 Serena 64 bit
Posts: 4

Original Poster
Rep: Reputation: Disabled
The terminal readout was a full page of blurb, most of which was irrelevant, and no direct mention of chipsets. For a first time user it is somewhat overwhelming.
My adapter switch test surely eliminates the card itself, both being exactly the same and producing the same results on both machines.

The only 'error message' shown so far is regarding the AMD processor firmware located on the Ubuntu archive website as mentioned.

The code ending 'A3' was rejected.
 
Old 06-29-2017, 03:07 AM   #8
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,819

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Even if it doesn't mean much to you, it can be definitive and helpful to those trying to assist. (Commands and output are generally better that verbal descriptions.) I'm not sure why the grep option was rejected. It's a valid option to Print a given number lines of trailing context after matching lines. Did you type the command as in the code box? In any case you could just run 'lspci -nnk' without grep filtering and just post the output block pertaining to your wireless device only.

Quote:
My adapter switch test surely eliminates the card itself, both being exactly the same and producing the same results on both machines.
Not necessarily. Some BIOS prevent switching of cards not on an in-built whitelist, so I'd be careful about doing that. We need to determine if the wireless hardware is disabled soft/hard blocked as well.
 
Old 06-29-2017, 03:36 AM   #9
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by davhenry View Post
The terminal readout was a full page of blurb, most of which was irrelevant, and no direct mention of chipsets. For a first time user it is somewhat overwhelming.
Hi...

Not to sound rude but please let us determine what's useful or not. Copy and and paste the command I gave above into a terminal and post the entire results in your next reply. In addition, please also include the results of...

Code:
rfkill list
Regards...
 
Old 08-03-2017, 04:45 AM   #10
davhenry
LQ Newbie
 
Registered: Jun 2017
Location: Near York, England.
Distribution: Mint 18.1 Serena 64 bit
Posts: 4

Original Poster
Rep: Reputation: Disabled
No wifi on an HP Probook.

Problem was solved by fitting the new Penguin wifi adapter. worked straight out of the box as claimed on my wifes HP Probook.
The slight difference in age of our two identical laptops accounts for the problem, being the collusion between Microsoft and the leading manufacturers to favour Windows only.

Very pleased to be free of it, though it did cost £40 by the time it reached me.
 
Old 08-03-2017, 06:06 AM   #11
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by davhenry View Post
Problem was solved by fitting the new Penguin wifi adapter.
Hi...

Glad you were able to find a solution. If you would, please mark this thread as "SOLVED" by clicking on "Thread Tools" directly above your initial post. Thanks!

Regards...
 
  


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] Replacement wifi driver or secondary too get wifi to carry into linux? msfixitplz Linux - Software 1 02-29-2016 12:02 PM
hp probook 445 g2 -- wifi isn't working in kali linux. G.Nithin Linux - Newbie 3 10-05-2015 11:28 AM
Detection of WIFI on Wifi/Bluetooth combo minipcie card BusteR[PL] Linux - Hardware 2 01-25-2012 08:58 AM
how to develop a wifi's driver by using the SDIO WIFI card the hope Linux - Software 2 03-15-2011 02:57 AM
Configure wireless with Intel WiFi Link 1000 on HP Probook 4710s tbre Linux - Wireless Networking 4 05-27-2010 02:28 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux Mint

All times are GMT -5. The time now is 04:40 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