LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 07-02-2017, 11:46 PM   #1
monojeffrey
Member
 
Registered: May 2012
Posts: 85
Blog Entries: 1

Rep: Reputation: Disabled
Smile DEbian Stretch unable to detect USB WIFI


Hi ,

Recently installed Debian 9(stretch) with Gnome as its GUI interface
issue is unable to detect the wifi adapter attached to it due to that unable to connect to the internet , someone please provide the procedure to detect it , hope some module or firmware need to be installed
 
Old 07-02-2017, 11:56 PM   #2
Shadow_7
Senior Member
 
Registered: Feb 2003
Distribution: debian
Posts: 4,137
Blog Entries: 1

Rep: Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874Reputation: 874
$ apt-cache search --names-only firmware

Code:
grub-firmware-qemu - GRUB firmware image for QEMU
alsa-firmware-loaders - ALSA software loaders for specific hardware
firmware-b43-installer - firmware installer for the b43 driver
firmware-b43legacy-installer - firmware installer for the b43legacy driver
isight-firmware-tools - tools for dealing with Apple iSight firmware
linux-wlan-ng-firmware - firmware files used by the linux-wlan-ng driver
prism2-usb-firmware-installer - firmware files for the prism2_usb kernel driver
dns323-firmware-tools - build and manipulate firmware images for a range of NAS devices
expeyes-firmware-dev - hardware & software framework for developing science experiments
firmware-linux-free - Binary firmware for various drivers in the Linux kernel
sigrok-firmware-fx2lafw - Firmware for Cypress FX2(LP) based logic analyzers
atmel-firmware - Firmware for Atmel at76c50x wireless networking chips.
bluez-firmware - Firmware for Bluetooth devices
dahdi-firmware-nonfree - DAHDI non-free firmware
firmware-crystalhd - Crystal HD Video Decoder (firmware)
firmware-adi - Binary firmware for Analog Devices Inc. DSL modem chips
firmware-atheros - Binary firmware for Atheros wireless cards
firmware-bnx2 - Binary firmware for Broadcom NetXtremeII
firmware-bnx2x - Binary firmware for Broadcom NetXtreme II 10Gb
firmware-brcm80211 - Binary firmware for Broadcom 802.11 wireless cards
firmware-intelwimax - Binary firmware for Intel WiMAX Connection
firmware-ipw2x00 - Binary firmware for Intel Pro Wireless 2100, 2200 and 2915
firmware-ivtv - Binary firmware for iTVC15-family MPEG codecs (ivtv and pvrusb2 drivers)
firmware-iwlwifi - Binary firmware for Intel Wireless cards
firmware-libertas - Binary firmware for Marvell Libertas 8xxx wireless cards
firmware-linux - Binary firmware for various drivers in the Linux kernel (meta-package)
firmware-linux-nonfree - Binary firmware for various drivers in the Linux kernel
firmware-myricom - Binary firmware for Myri-10G Ethernet adapters
firmware-netxen - Binary firmware for QLogic Intelligent Ethernet (3000 and 3100 Series)
firmware-qlogic - Binary firmware for QLogic IBA7220, QLA1xxx, ISP2xxx and SP2x2
firmware-ralink - Binary firmware for Ralink wireless cards
firmware-realtek - Binary firmware for Realtek wired and wireless network adapters
firmware-samsung - Binary firmware for Samsung MFC video codecs
firmware-ti-connectivity - Binary firmware for TI Connectivity wireless network adapters
libertas-firmware - Firmware for Marvell's libertas wireless chip series (dummy package)
midisport-firmware - Firmware loader for M-Audio's MidiSport devices
firmware-zd1211 - binary firmware for the zd1211rw wireless driver
zd1211-firmware - transitional dummy package for firmware-zd1211
Check dmesg for what firmware you tried, but failed to get.

$ dmesg | grep -i firm

$ dmesg | grep -i fail

Currently on jessie, but shouldn't have changed much between releases. If dmesg shows a specific file name, you could use apt-file to locate the exact package that you need.

$ apt-file find rtl8168e-3.fw
Code:
firmware-realtek: /lib/firmware/rtl_nic/rtl8168e-3.fw
$ sudo apt-get install firmware-realtek

For my current machine anyway.
 
Old 07-03-2017, 03:22 PM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
What is the name on the usb adapter?

Command lsusb may be a place to start.
 
Old 07-03-2017, 03:44 PM   #4
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 monojeffrey View Post
Recently installed Debian 9(stretch) with Gnome as its GUI interface
issue is unable to detect the wifi adapter attached to it due to that unable to connect to the internet , someone please provide the procedure to detect it , hope some module or firmware need to be installed
Hello and welcome to the forum

If you would, please connect the system to the internet using an ethernet cable and then open a terminal and run the following 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 navigate to the location of the text file the script created and post the contents (or a link to them) in your next reply. Thanks!

Regards...
 
Old 07-04-2017, 07:24 PM   #5
monojeffrey
Member
 
Registered: May 2012
Posts: 85

Original Poster
Blog Entries: 1

Rep: Reputation: Disabled
Quote:
Originally Posted by jefro View Post
What is the name on the usb adapter?

Command lsusb may be a place to start.



information which i have taken regarding the usb adapter is shown below(used another OS(mint) to determine this)

lsusb | egrep -i 'wire|real'
Bus 002 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. RTL8188EUS 802.11n Wireless Network Adapter
 
Old 07-05-2017, 03:21 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,982

Rep: Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626Reputation: 3626
Should be using rtl8192cu


http://www.thelinuxrain.com/articles...altek-chipsets

Has an idea about the reason maybe.

Last edited by jefro; 07-05-2017 at 03:22 PM.
 
Old 07-08-2017, 01:51 AM   #7
monojeffrey
Member
 
Registered: May 2012
Posts: 85

Original Poster
Blog Entries: 1

Rep: Reputation: Disabled
installed the driver using the following way
actually did a cloning (git) to download the driver

pre-requisites:

apt-get install linux-headers-$(uname -r)


apt-get install git
git clone https://github.com/lwfinger/rtl8188eu
cd rtl8188eu/
make all
make install
mkdir /lib/firmware (since this one was existing)
make install
insmod 8188eu.ko

reboot the machine
 
Old 09-08-2017, 08:49 AM   #8
luckyb56
LQ Newbie
 
Registered: Sep 2017
Posts: 1

Rep: Reputation: Disabled
I'm having similar issue with my usb wi-fi adapter. I ran wireless-info and the output is here https://ghostbin.com/paste/ujtpq

Can anyone please help how can I make it work?
 
  


Reply

Tags
debian, debian 9, desktop, kernel



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] Debian Stretch wifi connects but no internet jimkalb Debian 9 05-31-2017 06:59 AM
[SOLVED] Unable to detect Wifi - Broadcom BCM4352 agonsalves Linux - Newbie 4 05-04-2017 01:19 PM
Redhat 5.3 can't detect my USB wifi lilzz Linux - Hardware 9 09-10-2015 08:04 AM
VM unable to detect USB satimis Linux - Virtualization and Cloud 2 08-24-2015 05:40 PM
moved to debian and it does'nt detect the wifi. arik barnes Linux - Wireless Networking 1 02-01-2008 06:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

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