LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking
User Name
Password
Linux - Wireless Networking This forum is for the discussion of wireless networking in Linux.

Notices


Reply
  Search this Thread
Old 04-25-2019, 05:36 PM   #16
Slackwarefanboy
Member
 
Registered: Apr 2019
Location: Garden State
Distribution: Slackware
Posts: 110

Original Poster
Rep: Reputation: Disabled

I downloaded the zip and went to the respective proper files as instructed and did the following codes:
Code:
bash-4.3# ls
README
rtl8188EUS_linux_v4.3.0.8_13968.20150417
rtl8188EUS_linux_v4.3.0.8_13968.20150417-target-kernel_4.4
rtl8188eu.tar.gz

bash-4.3# make
"******************************************"
"NO SKRC,we will use default KSRC"
"******************************************"
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.4.172/build M=/home/kernel-master/drivers/TL-WN722N_v2.0-Ralink/rtl8188EUS_linux_v4.3.0.8_13968.20150417-target-kernel_4.4  modules
make[1]: Enteri
...
Code:
bash-4.3# make install
"******************************************"
"NO SKRC,we will use default KSRC"
"******************************************"
install -p -m 644 8188eu.ko  /lib/modules/4.4.172/kernel/drivers/net/wireless/
/sbin/depmod -a 4.4.172
Code:
bash-4.3# modprobe lib80211
bash-4.3# modprobe cfg80211
bash-4.3# insmod 8188eu.ko
bash-4.3# modprobe 8188eu
bash-4.3# iwconfig 
usb0      no wireless extensions.

lo        no wireless extensions.

eth0      no wireless extensions.

bash-4.3# ifconfig
lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1  (Local Loopback)
        RX packets 7  bytes 429 (429.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 7  bytes 429 (429.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

usb0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.42.148  netmask 255.255.255.0  broadcast 192.168.42.255
        inet6 fe80::7b:eff:fe76:4438  prefixlen 64  scopeid 0x20<link>
        ether 02:7b:0e:76:44:38  txqueuelen 1000  (Ethernet)
        RX packets 35371  bytes 32359576 (30.8 MiB)
        RX errors 4  dropped 0  overruns 0  frame 4
        TX packets 37205  bytes 6090460 (5.8 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
NOTE: I am communicating to you from my PC via a teethering with my android and horrible data rate.

I ran:
Code:
bash-4.3# iwconfig wlan0 mode Monitor
Error for wireless request "Set Mode" (8B06) :
    SET failed on device wlan0 ; No such device.
bash-4.3# iwconfig wlan0 mode Monitor
Error for wireless request "Set Mode" (8B06) :
    SET failed on device wlan0 ; No such device.
bash-4.3# ifconfig usb0 mode Monitor
Monitor: Host name lookup failure
ifconfig: `--help' gives usage information.
bash-4.3# ifconfig lo mode Monitor
mode: Host name lookup failure
ifconfig: `--help' gives usage information.
bash-4.3# iwconfig wlan0 mode Monitor
Error for wireless request "Set Mode" (8B06) :
    SET failed on device wlan0 ; No such device.
I then disconnected my lamp (it connects to the computer via usb) and the tethering/phone and ran:

Code:
bash-4.3# iwconfig                 
lo        no wireless extensions.

wlan1     unassociated  Nickname:"<WIFI@REALTEK>"
          Mode:Managed  Frequency=2.412 GHz  Access Point: Not-Associated   
          Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality:0  Signal level:0  Noise level:0
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

eth0      no wireless extensions.

bash-4.3# iwconfig wlan1 mode Monitor
Error for wireless request "Set Mode" (8B06) :
    SET failed on device wlan1 ; Operation not permitted.
Note: I have been running all this and most of my computing with my SlackBox as root, I know it's not suggested but I have yet to connect to the internet and henceforth and still in the "post installation phase".

Rebooting now. (retethering)
 
Old 04-25-2019, 05:50 PM   #17
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
did you by any chance forget to
Code:
sudo chmod +x /etc/rc.d/rc.networkmanager
sudo /etc/rc.d/rc.networkmanager start
sudo /etc/rc.d/rc.networkmanager restart
or just reboot after setting it to executable.
 
Old 04-25-2019, 06:23 PM   #18
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
list of commands to try
Code:
#!/bin/bash
#device name
sudo ifconfig wlan0 up
#list providers
sudo  iwlist wlan0 scan
#manually set a provider to the device
sudo iwconfig wlan0  essid "Provider name goes here in quotes" key "off"
 
Old 04-25-2019, 06:30 PM   #19
Slackwarefanboy
Member
 
Registered: Apr 2019
Location: Garden State
Distribution: Slackware
Posts: 110

Original Poster
Rep: Reputation: Disabled
I rebooted and logged in fresh to my root account and started network manager.

The network is up and running and recognizing the networks around me. SOLVED!

FOR REFERENCE:
Code:
bash-4.3# sudo  iwlist wlan0 scan
wlan0     Interface doesn't support scanning.

bash-4.3# sudo  iwlist wlan1 scan
wlan1     Scan completed :
          Cell 01 - Address: 00:83:C7:4B:B8:08
                    ESSID:"4BB800"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD910050F204104A0001101044000102103B00010310470010FE9E3EEA777A5CAFB48CF58BC1B7BC8010210008536167656D636F6D102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000F4E51313630353730393030373433331054000800060050F2040001101100064F70656E52471008000200041049000600372A000120
                    Quality=0/100  Signal level=28/100  
          Cell 02 - Address: 70:62:B8:49:50:0C
                    ESSID:"495008"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.412 GHz (Channel 1)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD880050F204104A0001101044000102103B000103104700100000000000000000000000000000000010210006442D4C696E6B102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000D525A42383145343032353533351054000800060050F2040001101100064F70656E5247100800020084103C000101
                    Quality:0  Signal level:0  Noise level:0
          Cell 03 - Address: AC:3B:77:BC:44:8E
                    ESSID:"Longleggs"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.412 GHz (Channel 1)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD840050F204104A0001101044000102103B000103104700107AD59AC3C9C3821C92DCC550CC4A06031021000842726F6164636F6D1023000842726F6164636F6D1024000631323334353610420004313233341054000800060050F20400011011000A42726F6164636F6D4150100800022008103C0001031049000A00372A00012005022688
                    Quality:0  Signal level:0  Noise level:0
          Cell 04 - Address: 00:A4:23:DB:90:7D
                    ESSID:"Simmons_5G"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.412 GHz (Channel 1)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F204104A00011010440001021049000600372A000120
                    Quality:0  Signal level:0  Noise level:0
          Cell 05 - Address: 48:EE:0C:F7:DD:AE
                    ESSID:"F7DDAA"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD880050F204104A0001101044000102103B000103104700100000000000000000000000000000000010210006442D4C696E6B102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000D525A42383146323031313639341054000800060050F2040001101100064F70656E5247100800020084103C000101
                    Quality:0  Signal level:0  Noise level:0
          Cell 06 - Address: 02:57:C1:9F:24:0E
                    ESSID:"StartHotspot.com"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:off
                    Bit Rates:108 Mb/s
                    Quality:0  Signal level:0  Noise level:0
          Cell 07 - Address: 00:D9:4D:44:8D:46
                    ESSID:"448D3E"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F204104A00011010440001021049000600372A000120
                    Quality:0  Signal level:0  Noise level:0
          Cell 08 - Address: 00:3E:5D:AA:D8:74
                    ESSID:"AAD86C"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F204104A00011010440001021049000600372A000120
                    Quality:0  Signal level:0  Noise level:0
          Cell 09 - Address: F8:E4:FB:7D:A1:59
                    ESSID:"ZWLNF"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.437 GHz (Channel 6)
                    Encryption key:on
                    Bit Rates:130 Mb/s
                    Extra:rsn_ie=30140100000fac040100000fac040100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DDBE0050F204104A0001101044000102103B00010310470010010102020303040405050606070708081021001A416374696F6E74656320456C656374726F6E69637320494E432E10230019576972656C6573732042726F616462616E6420526F75746572102400043030303110420004303030311054000800060050F204000110110019576972656C6573732042726F616462616E6420526F75746572100800020082103C000103104900140024E26002000101600000020001600100020001
                    Quality:0  Signal level:0  Noise level:0
          Cell 10 - Address: 3C:1E:04:DA:6E:9E
                    ESSID:"DA6E9A"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD880050F204104A0001101044000102103B000103104700100000000000000000000000000000000010210006442D4C696E6B102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000D525A42383145433030303735311054000800060050F2040001101100064F70656E5247100800020084103C000101
                    Quality:0  Signal level:0  Noise level:0
          Cell 11 - Address: 00:65:A3:F5:62:52
                    ESSID:"F5624A"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020000
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD910050F204104A0001101044000102103B00010310470010944C6FAE540F5200AEFD835B0BB90D7610210008536167656D636F6D102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000F4E51313630313130393030313434361054000800060050F2040001101100064F70656E52471008000200041049000600372A000120
                    Quality:0  Signal level:0  Noise level:0
          Cell 12 - Address: C4:12:F5:88:8C:EC
                    ESSID:"888CE8"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:wpa_ie=dd1a0050f20101000050f20202000050f2040050f20201000050f202
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    Extra:rsn_ie=30180100000fac020200000fac04000fac020100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD880050F204104A0001101044000102103B000103104700100000000000000000000000000000000010210006442D4C696E6B102300194F70656E524720506C6174666F726D20506861736520342E351024000433342E351042000D525A42383146353033333932321054000800060050F2040001101100064F70656E5247100800020084103C000101
                    Quality:0  Signal level:0  Noise level:0
          Cell 13 - Address: C8:A7:0A:CA:41:FC
                    ESSID:"FiOS-Z3TAL"
                    Protocol:IEEE 802.11bgn
                    Mode:Master
                    Frequency:2.462 GHz (Channel 11)
                    Encryption key:on
                    Bit Rates:144 Mb/s
                    Extra:rsn_ie=30140100000fac040100000fac040100000fac020c00
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD860050F204104A0001101044000102103B00010310470010CB5A26F0F1D8B8E48FFFBE39D5028E4710210009477265656E576176651023000342485210240001341042000F4731413131353033323330363136351054000800060050F20400011011000E477265656E576176652042485234100800022008103C0001031049000600372A000120
                    Quality:0  Signal level:0  Noise level:0
 bash-4.3# sudo ifconfig wlan1 up
 
Old 04-25-2019, 06:32 PM   #20
Slackwarefanboy
Member
 
Registered: Apr 2019
Location: Garden State
Distribution: Slackware
Posts: 110

Original Poster
Rep: Reputation: Disabled
https://www.youtube.com/watch?v=cH-K3MU7-fA
 
Old 04-25-2019, 06:50 PM   #21
BW-userx
LQ Guru
 
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342

Rep: Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242Reputation: 2242
Das ist gut, ya?!?!
 
Old 04-25-2019, 07:07 PM   #22
Slackwarefanboy
Member
 
Registered: Apr 2019
Location: Garden State
Distribution: Slackware
Posts: 110

Original Poster
Rep: Reputation: Disabled
Ja!
https://www.youtube.com/watch?v=gvilfpEBIMk
 
  


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
Tenda U12 AC1300 wireless usb dongle under Kali (VM) bennypr0fane Linux - Hardware 7 03-22-2019 04:22 PM
Tenda w522u usb dongle won't work on Mint 13 uchoward Linux - Wireless Networking 2 05-01-2015 07:27 AM
Tenda Wireless Card w54p stevorobs3 Linux - Newbie 6 08-06-2013 02:05 AM
Driver for Plexus/Tenda W302p with Ralink RT2760 chipset? SadPenguin Linux - Wireless Networking 3 05-31-2008 01:57 AM
Please somone help internet problem for my slackbox. KrazyKid Slackware 3 08-08-2002 01:52 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking > Linux - Wireless Networking

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