LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 02-04-2017, 09:55 PM   #1
Vexon
Member
 
Registered: Feb 2017
Distribution: Trisquel
Posts: 32

Rep: Reputation: Disabled
Question Wireless Card [RTL8188CE] Not Detected/Installed!


Had a clean install of Trisquel Mini 7.0 64-bit on a Toshiba Netbook. When I click on the wireless button on the taskbar, a pop-up box comes up, saying "No network devices available".

How can I get the wireless working?

Thanks for the help!
Vexon

Last edited by Vexon; 02-07-2017 at 10:26 PM. Reason: Improve Title + Correct Typo!
 
Old 02-04-2017, 09:59 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,349
Blog Entries: 28

Rep: Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146Reputation: 6146
What wireless chipset is installed? You can use the command lspci in a terminal to determine that (you may have to do so as root).
 
1 members found this post helpful.
Old 02-04-2017, 10:36 PM   #3
Vexon
Member
 
Registered: Feb 2017
Distribution: Trisquel
Posts: 32

Original Poster
Rep: Reputation: Disabled
lspci Result!

I ran lspci normally. Last line is:

07:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)

Does this seems to be correct?

Thanks again.
 
Old 02-05-2017, 12:10 AM   #4
erik2282
Member
 
Registered: May 2011
Location: Texas
Distribution: Primarily Deb/Ubuntu, and some CentOS
Posts: 831

Rep: Reputation: 229Reputation: 229Reputation: 229
It can connect to your network via Ethernet? If so, hook it up and try installing the realtek driver like so:

Code:
# apt install firmware-realtek
Then test wireless, may need reboot.

Last edited by erik2282; 02-05-2017 at 12:11 AM.
 
Old 02-05-2017, 12:38 AM   #5
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 erik2282 View Post
It can connect to your network via Ethernet? If so, hook it up and try installing the realtek driver like so:

Code:
# apt install firmware-realtek
Then test wireless, may need reboot.
Hi...

Considering that this particular distribution is committed to the cause of free software (and discourages the use of non-free software,) seen from threads like this one and this one, it's quite possible this command won't work, depending on which repositories Trisquel is using. From what I see here, it's their own, not Ubuntu's.

The OP can get the firmware in a Debian package here but I'm not entirely sure which version he/she will need or if it will even work with this distribution.

Regards...

Last edited by ardvark71; 02-05-2017 at 12:39 AM. Reason: Changed wording.
 
Old 02-05-2017, 12:46 AM   #6
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
It requires a driver (kernel or module compiled against the current kernel) and firmware (closed source binary blobs). Which may or may not be provided by your distro. It may also need a driver and firmware version newer than the one provided by your distro. The output of dmesg should help identify some hints on the status of things.

$ dmesg | grep -i firm

$ dmesg | grep -i net
 
Old 02-05-2017, 12:52 AM   #7
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 Vexon View Post
How can I get the wireless working?
Hello and welcome to the forum

If you would and have access to the internet via ethernet, please open a terminal and run these commands...

Code:
wget -N -t 5 -T 10 https://github.com/UbuntuForums/wireless-info/raw/master/wireless-info && \
chmod +x wireless-info && \
./wireless-info
Then post the results (or a link to them) in your next reply. Thanks!

Regards...
 
Old 02-05-2017, 06:04 AM   #8
Vexon
Member
 
Registered: Feb 2017
Distribution: Trisquel
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by erik2282 View Post
It can connect to your network via Ethernet?
No, unfortunately, I don't have direct access to my network via Ethernet.

That is, unless someone wants to suggest some method of hooking my machine up via Ethernet to my other Windows machine that is connected to the network via WiFi?

Last edited by Vexon; 02-07-2017 at 11:27 PM. Reason: Fix the Quote Box + Change Wording!
 
Old 02-05-2017, 07:19 AM   #9
erik2282
Member
 
Registered: May 2011
Location: Texas
Distribution: Primarily Deb/Ubuntu, and some CentOS
Posts: 831

Rep: Reputation: 229Reputation: 229Reputation: 229
Quote:
Originally Posted by ardvark71 View Post
Hi...

Considering that this particular distribution is committed to the cause of free software (and discourages the use of non-free software,) seen from threads like this one and this one, it's quite possible this command won't work, depending on which repositories Trisquel is using. From what I see here, it's their own, not Ubuntu's.

The OP can get the firmware in a Debian package here but I'm not entirely sure which version he/she will need or if it will even work with this distribution.

Regards...
I see, am not at all familiar with Trisquel. Well, then seems like OP's choices are to:

- try and test installing the driver somehow (not recommended/supported by Trisquel)
- buy a compatible internal wifi card (wnic)
- trying to find a compatible USB wifi dongle
- or choose a different OS

Last edited by erik2282; 02-05-2017 at 07:52 AM.
 
Old 02-05-2017, 08:08 AM   #10
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,979
Blog Entries: 33

Rep: Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468Reputation: 1468
Vexon,

Once (on another computer) you have downloaded and burned the .iso image to a DVD, no ethernet connection is required on the first suggestion.

1. On a netbook you would probably be better using a lightweight distribution such as the 32 bit or 64 bit version of antiX-16.1 which is based on Debian:
http://antix.mepis.org/index.php?title=Main_Page

Download the 32 bit or 64 bit antiX-16.1_386-full.iso:
http://antix.mepis.org/index.php?tit...Page#Downloads

antiX-16 FAQs:
http://download.tuxfamily.org/antix/...FAQ/index.html

To enable wifi after installation:

Menu > Control Centre > Network > Network Interfaces (ceni) > wlan0 > follow wizard and give SSID/network name and wifi password.

Your Realtek 8188ce may still present problems, but it is worth a try first.

2. Failing that, one easy and cheap way to solve this is to get a D-Link N150 USB wifi adapter:
https://www.amazon.co.uk/D-Link-Wire.../dp/B008PC19DC

This wifi adapter works “out of the box” in Linux.

3. The kernel driver on your Toshiba is rtl8188ce (rtl8192ce covers rtl8188ce and all other rtl81xxce versions).

Trisquel is Ubuntu-based.

Possible solutions (requiring an ethernet connection) on Ubuntu 14.04 & 16.04:
http://askubuntu.com/questions/50376...ltek-rtl8188ce

Last edited by beachboy2; 02-05-2017 at 08:10 AM.
 
Old 02-05-2017, 11:17 PM   #11
Jjanel
Member
 
Registered: Jun 2016
Distribution: any&all, in VBox; Ol'UnixCLI; NO GUI resources
Posts: 999
Blog Entries: 12

Rep: Reputation: 364Reputation: 364Reputation: 364Reputation: 364
Do you have a rtl8192ce driver? (find/locate/modinfo) -MAYBE/wild_guess- this:
echo "options rtl8192ce swenc=1 ips=0" | sudo tee /etc/modprobe.d/rtl8192ce.conf
sudo modprobe -rfv rtl8192ce
sudo modprobe -v rtl8192ce
 
Old 02-07-2017, 09:53 PM   #12
Vexon
Member
 
Registered: Feb 2017
Distribution: Trisquel
Posts: 32

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ardvark71 View Post
... this particular distribution is committed to the cause of free software (and discourages the use of non-free software,) ...
Yes, free software is a concern for me. That's why I got Trisquel. Unfortunately, I need the machine work right now, and I can't get new hardware.

Quote:
The OP can get the firmware in a Debian package here but I'm not entirely sure which version he/she will need or if it will even work with this distribution.
I downloaded the file from that page. What should I be doing now?

Thanks again for the help!

Last edited by Vexon; 02-07-2017 at 09:55 PM. Reason: Correct Quote!
 
Old 02-07-2017, 10:37 PM   #13
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 Vexon View Post
I downloaded the file from that page. What should I be doing now?
Hi...

If Trisquel comes with a program like gdebi, then you can just double click on the file and it should begin installing it using a GUI. If not, or if you would prefer to install it by command line anyway, you can open a terminal and navigate to the location of the file and then use something like...

Code:
sudo dpkg -i firmware-realtek_0.43_all
I don't know if Trisquel uses sudo, so you may need to omit that particular part. Again, I have no idea if installing that package will work or if it's kernel specific. Take careful note where it installs the firmware files to as you may need to delete them later.

Disclaimer: Be careful with commands that are prefaced with "su" or "sudo." They will essentially allow root access to your system. Mistakes could possibly damage or even destroy your OS.

Regards...

Last edited by ardvark71; 02-07-2017 at 10:40 PM. Reason: Correction/Added wordage.
 
Old 02-07-2017, 10:41 PM   #14
Vexon
Member
 
Registered: Feb 2017
Distribution: Trisquel
Posts: 32

Original Poster
Rep: Reputation: Disabled
Arrow Output of dmesg!

Quote:
Originally Posted by Shadow_7 View Post
It requires a driver (kernel or module compiled against the current kernel) and firmware (closed source binary blobs). Which may or may not be provided by your distro. It may also need a driver and firmware version newer than the one provided by your distro. The output of dmesg should help identify some hints on the status of things.

$ dmesg | grep -i firm

$ dmesg | grep -i net
Attached are dmesg output pictures.
Attached Thumbnails
Click image for larger version

Name:	IMG_20170207_221502.jpg
Views:	38
Size:	183.1 KB
ID:	24160   Click image for larger version

Name:	IMG_20170207_222358.jpg
Views:	37
Size:	241.2 KB
ID:	24161  
 
Old 02-07-2017, 10:45 PM   #15
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 Vexon View Post
Attached are dmesg output pictures.
Hi...

Concerning the firmware error message, was this after you tried installing the package you asked me about?

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] Just installed Fedora 17 and the Wireless Adaptor is not being detected. mrtl Linux - Newbie 4 01-31-2013 06:03 PM
no wireless connection -- card detected, driver installed, config file adjusted noviciado Slackware 9 04-20-2009 02:26 PM
Wireless internet help on Dell Inspiron B130 - Wireless card not detected? agntyellow Linux - Laptop and Netbook 1 08-09-2006 11:42 PM
intel wireless pro 2200 detected as atheros wireless card? whf SUSE / openSUSE 5 08-29-2005 06:04 PM
Sound card not detected even after driver installed eam Linux - Hardware 7 11-11-2004 12:14 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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