LinuxQuestions.org
Review your favorite Linux distribution.
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 10-29-2017, 02:19 AM   #1
Grims
LQ Newbie
 
Registered: Oct 2017
Posts: 1

Rep: Reputation: Disabled
Having an issue connecting to router with anything other than Mint 17.1


Alright, this might be a mouthful, but please bear with me.

On my home PC my HDD died and I decided to install Linux Mint 18.2 on a fresh one as I have played around with Mint before. I put the ISO on a thumbdrive and had no issues with installation. However after the installation was complete I clicked on wireless networks, and it showed "Belkin", but when I clicked on it to connect the wheel just spun like it was attempting to connect and then nothing happened. After a full day of toying with it and not being able to connect to the internet I threw my hands up in defeat and thought maybe I got a bad ISO or something, so I took my thumbdrive and put an ISO for Mint 17.1.

I installed 17.1 with no problems, and now I have no issues with connecting to Belkin. In fact I'm on it right now typing this message out. However the entire OS seems buggy as I can't get Wine to work properly, and other applications are not working well either. Well alright, I thought maybe it was just 18.2, so I tried Unbuntu 17.10. Same issue as before, I can see my wireless network but it just won't allow me to connect to it.

Then I attempted Zorin, but this time before installing it I played around with it while it was still on my thumbdrive. Perfection, no issues, was able to connect to Belkin and was able to logon to Chromium. So I installed it, and after that I tried to connect to Belkin it was the same exact issue again. I can physically see the network, I can click on it and go into settings, but it just won't connect to it. So now I'm back on Mint 17.1 and I connect to my network with no problem, I'm just having issues with applications which makes me want to try a different distro.

I'm pretty new at this, so I'm sorry if my post is long-winded, I just wanted to stress that I've tried multiple things and read multiple things for about two weeks before asking. My wireless works fine with 17.1, but only with 17.1. It also works with Zorin as long as I'm using it from the thumbdrive, but after installation it has the same issue. The other two nothing.

I'm sorry I didn't provide all the information I could, let me know what you need to answer, or should I just give up?
 
Old 10-30-2017, 11:32 AM   #2
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,189
Blog Entries: 18

Rep: Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291
That looks to me like a software (possibly firmware) issue. Clearly the Zorin installation disk contains what is necessary to make the device work but it's not being installed. Please don't give up! This kind of problem is usually soluble if you work systematically.

First boot your Zorin disc and confirm that the card works. Then use the dmesg command to list the kernel's message buffer and see how the kernel has handled the device (it should be near the end). Now do the same with your installed Zorin. With any luck, you will be able to see a difference in the two outputs which will give you some guidance on what is going wrong.

You could try the same with Mint 17 and Mint 18.

Last edited by hazel; 10-30-2017 at 11:33 AM.
 
Old 10-30-2017, 11:52 AM   #3
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
When you installed Mint 18, did you select the option to install 3rd party codecs and drivers?
 
Old 10-30-2017, 12:07 PM   #4
kilgoretrout
Senior Member
 
Registered: Oct 2003
Posts: 2,977

Rep: Reputation: 386Reputation: 386Reputation: 386Reputation: 386
To troubleshoot the problem you need to know the chipset of your wireless card. To do that run:
Code:
 lspci -v | -i grep wireless
It's probably a Broadcom card and they're known to be problematic. I've had them work with one kernel and break with an updated kernel.
 
Old 10-30-2017, 12:32 PM   #5
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,414
Blog Entries: 4

Rep: Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836Reputation: 3836
The software that is usually involved here is called the wpa2 supplicant. Is that installed?

What happens when you attempt to connect? Anything in /var/log/syslog?
 
Old 10-30-2017, 12:41 PM   #6
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,189
Blog Entries: 18

Rep: Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291
Just a note on firmware which you may find useful. Some proprietary wifi drivers include code that has to be loaded into the card's onboard memory before that card will function. The Linux kernel's version of the driver can perform this operation too but only if the file is available. What normally happens is that the main driver is stored as a module, which the kernel loads when it detects the hardware. Then the driver tells the kernel that such-and-such a firmware file is needed. The kernel looks for it in /lib/firmware. If it isn't there, the kernel will complain. If your installation disc contains the relevant file and your installed version doesn't, the solution could be something as simple as copying it over.
 
Old 10-30-2017, 12:45 PM   #7
hazel
LQ Guru
 
Registered: Mar 2016
Location: Harrow, UK
Distribution: LFS, AntiX, Slackware
Posts: 7,189
Blog Entries: 18

Rep: Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291Reputation: 4291
Quote:
Originally Posted by sundialsvcs View Post
The software that is usually involved here is called the wpa2 supplicant. Is that installed?

What happens when you attempt to connect? Anything in /var/log/syslog?
Yes, that's also a possibility. The output of dmesg should show whether this is a wpa error or a more basic one involving firmware (in which case the interface won't even come up). ifconfig should show this too. If the interface is up, it's a wpa problem.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Connecting Linux Mint 15 MATE to wireless router rubyyarn Linux - Newbie 9 12-03-2013 09:27 AM
connecting linux router to Cisco router ? fran1942 Linux - Newbie 2 07-23-2012 04:40 PM
Issue connecting to linksys wireless network on WPM54G router Wintermute Linux - Newbie 2 02-13-2009 12:22 PM
Connecting 2 machines using my DSL router (or router/bridge) resetreset Linux - Networking 3 07-29-2008 05:18 AM
Issue connecting to a linksys router. Liam123 Linux - Wireless Networking 5 01-04-2008 09:17 AM

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

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