Router Wireless fails after upgrade from Mageia 4 to 5

Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 15th, '16, 20:03

Have just upgraded from Mageia 4 to 5 and at the same time - up from 32bit to 64bit distribution and onto a new SSD drive. Everything went well except for wireless access to my Buffalo WHR-G125 router running Tomato firmware. Going into the Tomato/Buffalo system through 192.168.1.1 shows the Wireless system to be enabled and running WPA/WPA2 security. But trying to set up Wireless network connection in MCC, no Wlan0 appears - just request to use ndiswrapper. CLI ifup wlan0 - returns wlan0 not found. It worked fine in Mageia 4 - although I never used the wireless link until installing a wireless printer. The Router wireless system is working because several other windows laptops around the house easily link into it.

Where do I go from here?
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 16th, '16, 12:42

Which desktop environment are you using? And please provide the output of the following commands:

Code: Select all
lspcidrake -v | grep -iE "wlan|wifi|wireless|net"
ps -ef | grep -v grep | grep -iE "net|wpa"


and, as root:
Code: Select all
ifconfig -a
rfkill list all
systemctl status network.service -a
journalctl -ab | grep -iE "fw|firmware|iwl|wifi|wire|80211"
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 16th, '16, 13:20

Hi Doktor5000 - thanks for your quick reply. Attached are the outputs as requested. I'm using KDE as desktop environment. For my current and future education, could you explain, in general (so that I can follow up on this) exactly what your queries are looking for - and what you found.
Attachments
Mageia_Wireless_Router_Problem-1.txt
(11.63 KiB) Downloaded 174 times
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 17th, '16, 15:45

Micromet wrote:For my current and future education, could you explain, in general (so that I can follow up on this) exactly what your queries are looking for - and what you found.


Sure, no problem, so let's try to break it down.

Code: Select all
ps -ef | grep -v grep | grep -iE "net|wpa"

This would show the running processes filtered for network-related processes, allowing to see whether net_applet (the default Mageia network applet) and/or networkmanager are running, and whether one or more wpa_supplicant processes (relevant for wireless encryption) are running or not. Seems you forgot to run that, please add the output for that ;)

Code: Select all
[root@localhost colin]# lspcidrake -v | grep -iE "wlan|wifi|wireless|net"
r8169           : Realtek Semiconductor Co., Ltd.|RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [NETWORK_ETHERNET] (vendor:10ec device:8168 subv:1849 subd:8168) (rev: 02)

lspcidrake shows the hardware devices, including their PCI product and vendor IDs to identify which chipset and variant and what driver is currently loaded. And with the grep I try to filter for only network and wireless devices.
lspcidrake is a Mageia-specific wrapper around lspci, so if you want a more generic command working on all distros, lspci -nnk should provide the same information.

Although in your case it only shows the wired network interface, not the wireless. So please add the complete output of lspcidrake -v so we can see what the wireless adapter shows up as.
Code: Select all
[root@localhost colin]# ifconfig -a
enp2s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.141  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::219:66ff:fe79:dda8  prefixlen 64  scopeid 0x20<link>
        ether 00:19:66:79:dd:a8  txqueuelen 1000  (Ethernet)
        RX packets 5239  bytes 3188660 (3.0 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 2498  bytes 271051 (264.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

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 211  bytes 30794 (30.0 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 211  bytes 30794 (30.0 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

ifconfig -a shows all currently active network interfaces, and if there are IP adresses assigned to them. In your case there's only enp2s0 which looks like a wired interface, which has IP adress 192.168.1.141 assigned to it. No wireless interface in sight here.

Code: Select all
[root@localhost colin]# rfkill list all

rfkill should show the rfkill state of all wireless and bluetooth interfaces known to the system, usually there's a softblock and a hardblock. softblock is usually a software switch which disables wireless, often a key combo like Fn+F7 or something like that, and hardblock is usually some hardware switch that disables wireless/bluetooth. As no device is known to the system, rfkill will not output anything.

Code: Select all
[root@localhost colin]# systemctl status network.service -a
● network.service - LSB: Bring up/down networking
   Loaded: loaded (/etc/rc.d/init.d/network)
   Active: active (running) since Fri 2016-12-16 10:48:12 GMT; 24min ago
  Process: 2358 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/network.service
           ├─2533 /sbin/ifplugd -I -b -i enp2s0
           └─3031 dhclient -1 -q -lf /var/lib/dhclient/dhclient--enp2s0.lease -pf /var/run/dhclient-enp2s0.pid enp2s0

Dec 16 10:48:12 localhost.localdomain network[2358]: Bringing up interface enp2s0:  [  OK  ]
Dec 16 10:48:12 localhost.localdomain systemd-sysctl[2554]: Overwriting earlier assignment of kernel/sysrq in file '/etc/sysctl.d/51-alt-sysrq.conf'.
Dec 16 10:48:12 localhost.localdomain systemd-sysctl[2554]: Overwriting earlier assignment of net/ipv4/icmp_ignore_bogus_error_responses in file '/etc/sysctl.d/99-sysctl.conf'.
Dec 16 10:48:12 localhost.localdomain systemd-sysctl[2554]: Overwriting earlier assignment of net/ipv4/conf/all/log_martians in file '/etc/sysctl.d/99-sysctl.conf'.
Dec 16 10:48:14 localhost.localdomain ifplugd(enp2s0)[2533]: Link beat detected.
Dec 16 10:48:15 localhost.localdomain ifplugd(enp2s0)[2533]: Executing '/etc/ifplugd/ifplugd.action enp2s0 up'.
Dec 16 10:48:16 localhost.localdomain dhclient[2859]: DHCPREQUEST on enp2s0 to 255.255.255.255 port 67
Dec 16 10:48:16 localhost.localdomain dhclient[2859]: DHCPACK from 192.168.1.1                                                                                                                                     
Dec 16 10:48:16 localhost.localdomain ifplugd(enp2s0)[2533]: client: Determining IP information for enp2s0... done.                                                                                               
Dec 16 10:48:16 localhost.localdomain ifplugd(enp2s0)[2533]: Program executed successfully.                                                                                                                       
[root@localhost colin]#


This shows the status of the network service, and the last 10 lines of the log from it. We can see that the wired network interface properly received an IP adress from your router, but no wireless interface in sight here.

I've omitted the output from journalctl -ab | grep -iE "fw|firmware|iwl|wifi|wire|80211" as that only shows firewall messages, although nothing about firmware or anything related to wireless, which seems strange to me. FWIW, journalctl -ab queries the log for the current boot.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 17th, '16, 17:35

Yes sorry - missed the 2nd line. Both outputs as requested attached. Following your excellent explanations, I looked for the features you mentioned. net_applet appears in the first query response but nothing looking at all like a wireless entry appears in the second query. But would you expect to see the external router in the list of internal (i.e. PC) subsystems. I thought the Realtek subsystem referred to the internal motherboard ethernet system? But hey - what do I know! Thanks again for helping.
Attachments
Mageia_Wireless_Router_Problem-2.txt
(23.15 KiB) Downloaded 155 times
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 17th, '16, 21:06

Please do not attach outputs in text files, only use that if the amount of output exceeds the character limitation of a single post.
And please use code tags as explained in ftp://ftp5.gwdg.de/pub/linux/mandriva/m ... e_tags.ogv

Micromet wrote:But would you expect to see the external router in the list of internal (i.e. PC) subsystems. I thought the Realtek subsystem referred to the internal motherboard ethernet system?

No, not expecting to see the external router, but your actual wireless chipset in or attached to your computer.

And I don't see any wireless hardware here, apart from the wired ethernet. And without a wireless adapter you cannot establish a wireless connection.
What wireless adapter did you intend to use? And is it directly attached e.g. on the mainboard, or maybe attached via USB?
Code: Select all
[root@localhost colin]# lspcidrake -v
Card:NVIDIA GeForce 8100 to GeForce 415: NVIDIA Corporation|G94 [GeForce 9600 GT] [DISPLAY_VGA] (vendor:10de device:0622) (rev: a1)
pata_jmicron    : JMicron Technology Corp.|JMB368 IDE controller [STORAGE_IDE] (vendor:197b device:2368 subv:1849 subd:2368)
r8169           : Realtek Semiconductor Co., Ltd.|RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [NETWORK_ETHERNET] (vendor:10ec device:8168 subv:1849 subd:8168) (rev: 02)
snd_bt87x       : Brooktree Corporation|Bt878 Audio Capture [MULTIMEDIA_OTHER] (vendor:109e device:0878 subv:bd11 subd:1200) (rev: 11)
bttv            : Brooktree Corporation|Bt878 Video Capture [MULTIMEDIA_VIDEO] (vendor:109e device:036e subv:bd11 subd:1200) (rev: 11)
i2c_i801        : Intel Corporation|82801JI (ICH10 Family) SMBus Controller [SERIAL_SMBUS] (vendor:8086 device:3a30 subv:1849 subd:3a30)
unknown         : Intel Corporation|82801JI (ICH10 Family) SATA AHCI Controller [STORAGE_SATA] (vendor:8086 device:3a22 subv:1849 subd:3a22)
lpc_ich         : Intel Corporation|82801JIB (ICH10) LPC Interface Controller [BRIDGE_ISA] (vendor:8086 device:3a18 subv:1849 subd:3a18)
unknown         : Intel Corporation|82801 PCI Bridge [BRIDGE_PCI] (vendor:8086 device:244e) (rev: 90)
ehci_pci        : Intel Corporation|82801JI (ICH10 Family) USB2 EHCI Controller #1 [SERIAL_USB] (vendor:8086 device:3a3a subv:1849 subd:3a3a)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #3 [SERIAL_USB] (vendor:8086 device:3a36 subv:1849 subd:3a36)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #2 [SERIAL_USB] (vendor:8086 device:3a35 subv:1849 subd:3a35)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #1 [SERIAL_USB] (vendor:8086 device:3a34 subv:1849 subd:3a34)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 6 [BRIDGE_PCI] (vendor:8086 device:3a4a)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 4 [BRIDGE_PCI] (vendor:8086 device:3a46)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 3 [BRIDGE_PCI] (vendor:8086 device:3a44)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Port 2 [BRIDGE_PCI] (vendor:8086 device:3a42)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 1 [BRIDGE_PCI] (vendor:8086 device:3a40)
snd_hda_intel   : Intel Corporation|82801JI (ICH10 Family) HD Audio Controller [MULTIMEDIA_AUDIO_DEV] (vendor:8086 device:3a3e subv:1849 subd:0888)
ehci_pci        : Intel Corporation|82801JI (ICH10 Family) USB2 EHCI Controller #2 [SERIAL_USB] (vendor:8086 device:3a3c subv:1849 subd:3a3c)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #6 [SERIAL_USB] (vendor:8086 device:3a39 subv:1849 subd:3a39)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #5 [SERIAL_USB] (vendor:8086 device:3a38 subv:1849 subd:3a38)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #4 [SERIAL_USB] (vendor:8086 device:3a37 subv:1849 subd:3a37)
shpchp          : Intel Corporation|4 Series Chipset PCI Express Root Port [BRIDGE_PCI] (vendor:8086 device:2e21) (rev: 02)
unknown         : Intel Corporation|4 Series Chipset DRAM Controller [BRIDGE_HOST] (vendor:8086 device:2e20 subv:1849 subd:2e20) (rev: 02)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
usbhid          : Logitech|USB Optical Mouse [Human Interface Device|Boot Interface Subclass|Mouse] (vendor:046d device:c077)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 ehci_hcd|EHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0002)
hub             : Linux 4.4.36-desktop-2.mga5 ehci_hcd|EHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0002)
hub             : Genesys Logic, Inc.|USB2.0 Hub [Hub|Unused|Full speed (or root) hub] (vendor:05e3 device:0608)
hid_generic     : Logitech USB Optical Mouse
[root@localhost colin]#
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 18th, '16, 14:37

Hi - and thanks again for reply. Sorry about the attached txt file. Thought it was the easiest method - and have never used code tags before. Will do this in future. Yes - I do have an Edimax USB wireless dongle somewhere - but I thought I had managed to get the wireless bit going without it attached. Probably my age. At this point in time I don't know where the Edimax unit is. Once I can find it, I will try again. I'm sorry to have apparently wasted your time - but you did educate me with regard to identifying possible problems - and for that I thank you. We might as well leave this thread as solved and closed.
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 18th, '16, 18:48

Micromet wrote:I'm sorry to have apparently wasted your time - but you did educate me with regard to identifying possible problems - and for that I thank you.

Nahh, no worries here :) And if you would be wasting my time, I wouldn't put time and efforts into answering. If you have learned a few bits, all good.

As soon as you find some wireless device, just reply again in this thread for a followup.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 23rd, '16, 18:04

Latest update. Having failed to find the Edimax wireless USB adapter, I bought, after checking that it was Linux compatible, a TP-LINK TL-WN823N Wireless N USB adapter. MCC detects it in hardware as an Unknown/Others module labelled Realtek 802.11n NIC; USB connection with Misc module usblp. Seems to be recognised as a wireless adapter - but I expected to see it somewhere else - e.g. under Ethernetcard. iwconfig shows no Wlan0 connections. The Adapter is installed in a powered USB hub. If I install it in one of the direct PC USB ports, MCC then detects it as a Realtek 802.11 NIC but as a Scanner and with an unknown Misc module.

What's going on?
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 23rd, '16, 18:25

Doktor5000 - here are the outputs from the console commands
Code: Select all
bash-4.3$ su
Password:
[root@localhost colin]# iwconfig
enp2s0    no wireless extensions.

lo        no wireless extensions.

[root@localhost colin]# ifconfig -a
enp2s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.141  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::219:66ff:fe79:dda8  prefixlen 64  scopeid 0x20<link>
        ether 00:19:66:79:dd:a8  txqueuelen 1000  (Ethernet)
        RX packets 6491  bytes 5182407 (4.9 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 6488  bytes 1583310 (1.5 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

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 214  bytes 33435 (32.6 KiB)                                                                                                                                           
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 214  bytes 33435 (32.6 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

[root@localhost colin]# rfkill list all
[root@localhost colin]# systemctl status network.service -a
● network.service - LSB: Bring up/down networking
   Loaded: loaded (/etc/rc.d/init.d/network)
   Active: active (running) since Fri 2016-12-23 15:02:03 GMT; 1h 4min ago
  Process: 2530 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=0/SUCCESS)
   CGroup: /system.slice/network.service
           ├─2728 /sbin/ifplugd -I -b -i enp2s0
           └─3223 dhclient -1 -q -lf /var/lib/dhclient/dhclient--enp2s0.lease -pf /var/run/dhclient-enp2s0.pid enp2s0

Dec 23 15:02:03 localhost.localdomain systemd-sysctl[2749]: Overwriting earlier assignment of fs/inotify/max_user_watches in file '/etc/sysctl.d/97-kde-baloo-filewatch-inotify.conf'.
Dec 23 15:02:03 localhost.localdomain systemd-sysctl[2749]: Overwriting earlier assignment of net/ipv4/icmp_ignore_bogus_error_responses in file '/etc/sysctl.d/99-sysctl.conf'.
Dec 23 15:02:03 localhost.localdomain systemd-sysctl[2749]: Overwriting earlier assignment of net/ipv4/conf/all/log_martians in file '/etc/sysctl.d/99-sysctl.conf'.
Dec 23 15:02:05 localhost.localdomain ifplugd(enp2s0)[2728]: Link beat detected.
Dec 23 15:02:06 localhost.localdomain ifplugd(enp2s0)[2728]: Executing '/etc/ifplugd/ifplugd.action enp2s0 up'.
Dec 23 15:02:07 localhost.localdomain dhclient[3049]: DHCPREQUEST on enp2s0 to 255.255.255.255 port 67
Dec 23 15:02:07 localhost.localdomain dhclient[3049]: DHCPACK from 192.168.1.1
Dec 23 15:02:07 localhost.localdomain dhclient[3049]: bound to 192.168.1.141 -- renewal in 32695 seconds.
Dec 23 15:02:07 localhost.localdomain ifplugd(enp2s0)[2728]: client: Determining IP information for enp2s0... done.
Dec 23 15:02:07 localhost.localdomain ifplugd(enp2s0)[2728]: Program executed successfully.
[root@localhost colin]# journalctl -ab | grep -iE "fw|firmware|iwl|wifi|wire|80211"
Dec 23 15:02:10 localhost.localdomain kernel: IFWLOG: register target
                                                          wireless-tools
Dec 23 15:42:56 localhost.localdomain drakrpm[6664]: running: rpm -ql rtlwifi-firmware-20160914-1.mga5.nonfree.noarch
Dec 23 15:42:56 localhost.localdomain drakrpm[6664]: running: rpm -q --qf '%{description}' rtlwifi-firmware-20160914-1.mga5.nonfree.noarch
Dec 23 15:42:56 localhost.localdomain drakrpm[6664]: running: rpm -q --changelog rtlwifi-firmware-20160914-1.mga5.nonfree.noarch
Dec 23 15:44:05 localhost.localdomain drakhardware[6787]: id2edd: 0x000b88ca=>/sys/firmware/edd/int13_dev81 0xa4bb0993=>/sys/firmware/edd/int13_dev83
Dec 23 15:45:05 localhost.localdomain drakhardware[7021]: id2edd: 0xa4bb0993=>/sys/firmware/edd/int13_dev83 0x000b88ca=>/sys/firmware/edd/int13_dev81
Dec 23 15:50:21 localhost.localdomain drakhardware[7478]: id2edd: 0x000b88ca=>/sys/firmware/edd/int13_dev81 0xa4bb0993=>/sys/firmware/edd/int13_dev83
Dec 23 16:01:45 localhost.localdomain drakhardware[8324]: id2edd: 0xa4bb0993=>/sys/firmware/edd/int13_dev83 0x000b88ca=>/sys/firmware/edd/int13_dev81
[root@localhost colin]# lspcidrake -v | grep -iE "wlan|wifi|wireless|net"
r8169           : Realtek Semiconductor Co., Ltd.|RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [NETWORK_ETHERNET] (vendor:10ec device:8168 subv:1849 subd:8168) (rev: 02)
[root@localhost colin]# ps -ef | grep -v grep | grep -iE "net|wpa"
root        15     2  0 15:01 ?        00:00:00 [netns]
systemd+  2485     1  0 15:02 ?        00:00:00 /usr/lib/systemd/systemd-networkd
colin     3943  3139  0 15:02 ?        00:00:08 /usr/bin/perl /usr/bin/net_applet
colin     4246  4189  1 15:04 ?        00:00:56 /usr/lib64/chromium-browser/chrome --type=gpu-process --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/DataReductionProxyUseQuic/Enabled/DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/NetworkTimeQueries/NetworkTimeQueriesEnabled/NewAudioRenderingMixingStrategy/Enabled/NonValidatingReloadOnNormalReload/Enabled/OfferUploadCreditCards/Enabled/OutOfProcessPac/Enabled/PageRevisitInstrumentation/Enabled/ParseHTMLOnMainThread/Enabled/PassiveDo Enabled/PassiveEventListenersDueToFling/Enabled/PasswordBranding/SmartLockBrandingSavePromptOnly/PasswordManagerSettingsMigration/Enable/PasswordSeparatedSigninFlow/Enabled/PasswordSmartBubble/3-Times/*PersistentHistograms/EnabledInMemory/PluginPowerSaverTiny/Enabled/PointerEvent/Enabled/PreconnectMore/Enabled/PreferHtmlOverPlugins/Enabled/*QUIC/Enabled/RafAlignedInput/Enabled/RefreshTokenDeviceId/Enabled/ReportCertificateErrors/ShowAndPossiblySend/SSLCommonNameMismatchHandling/Enabled/*SafeBrowsingIncidentReportingService/Enabled/SafeBrowsingIncidentReportingServiceFeatures/WithSuspiciousModuleReporting/SafeBrowsingReportPhishingErrorLink/Enabled/SafeBrowsingUpdateFrequency/UpdateTime15m/SafeBrowsingV4LocalDatabaseManagerEnabled/Enabled/SchedulerExpensiveTaskBlocking/Enabled/SdchPersistence/Enabled/SecurityChip/Enabled/SecurityWarningIconUpdate/Enabled/SignInPasswordPromo/Enable2/SimpleCacheTrial/ExperimentYes/SiteEngagement/AggressiveAccumulation/SpeculativeLaunchServiceWorker/Enabled/StrictSecureCookies/Enabled/SyncHttpContentCompression/Enabled/TabSyncByRecency/Enabled/*TokenBinding/TokenBinding/TranslateRanker/EnforcementEnabled/V8CacheStrategiesForCacheStorage/default/WebBluetoothBlacklist/TestGroup/WebFontsInterventionV2/Enabled-slow2g/WebRTC-EnableWebRtcEcdsa/Enabled/WebRTC-H264WithOpenH264FFmpeg/Enabled/WebRTC-LocalIPPermissionCheck/Enabled/use-new-media-cache/Enabled/ --disable-breakpad --supports-dual-gpus=false --gpu-driver-bug-workarounds=6,17,21,38,45,47,56,65,76,77,82 --disable-gl-extensions=GL_NV_path_rendering --gpu-vendor-id=0x10de --gpu-device-id=0x0622 --gpu-driver-vendor=NVIDIA --gpu-driver-version=340.96 --gpu-driver-date --service-request-channel-token=7BA55D89059603FE160F7A16DB0EDDCD --v8-natives-passed-by-fd --v8-snapshot-passed-by-fd
colin     4271  4198  0 15:04 ?        00:00:01 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/DataReductionProxyUseQuic/Enabled/DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabled/New
colin     4273  4198  0 15:04 ?        00:00:07 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabled/N
colin     4274  4198  0 15:04 ?        00:00:05 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabled/N
colin     4276  4198  0 15:04 ?        00:00:00 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabled/N
colin     4304  4198  1 15:04 ?        00:00:57 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WithOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/AutofillCreditCardSigninPromo/EnabledFive/AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/ChromeDashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperiment/Button/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enabled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabled/N
colin     7237  4198  1 15:46 ?        00:00:16 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillProfileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReporting,IncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReporting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAudioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEventListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlOverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeLaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WitOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/*AutofilCreditCardSigninPromo/EnabledFive/*AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/Chromeashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperimentButton/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enaled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabed
colin     8830  4198  1 16:10 ?        00:00:00 /usr/lib64/chromium-browser/chrome --type=renderer --enable-features=AutofillCreditCardSigninPromo<AutofillCreditCardSigninPromo,AutofillrofileCleanup<AutofillProfileCleanup,BlockSmallPluginContent<PluginPowerSaverTiny,DocumentWriteEvaluator<DisallowFetchForDocWrittenScriptsInMainFrame,ExpectCTReporting<ExpectCTReportingIncidentReportingDisableUpload<SafeBrowsingIncidentReportingService,IncidentReportingModuleLoadAnalysis<SafeBrowsingIncidentReportingServiceFeatures,IncidentReportingSuspiciousModuleReprting<SafeBrowsingIncidentReportingServiceFeatures,MaterialDesignUserManager<MaterialDesignUserManager,NetworkTimeServiceQuerying<NetworkTimeQueries,NewAudioRenderingMixingStrategy<NewAdioRenderingMixingStrategy,NonValidatingReloadOnNormalReload<NonValidatingReloadOnNormalReload,ParseHTMLOnMainThread<ParseHTMLOnMainThread,PassiveDocumentEventListeners<PassiveDocumentEentListeners,PassiveEventListenersDueToFling<PassiveEventListenersDueToFling,PersistentHistograms<PersistentHistograms,PointerEvent<PointerEvent,PreconnectMore<PreconnectMore,PreferHtmlverPlugins<PreferHtmlOverPlugins,RafAlignedInput<RafAlignedInput,SecurityChip<SecurityChip,SecurityWarningIconUpdate<SecurityWarningIconUpdate,SpeculativeLaunchServiceWorker<SpeculativeaunchServiceWorker,TranslateRankerEnforcement<TranslateRanker,UsePasswordSeparatedSigninFlow<PasswordSeparatedSigninFlow,WebRTC-EnableWebRtcEcdsa<WebRTC-EnableWebRtcEcdsa,WebRTC-H264WitOpenH264FFmpeg<WebRTC-H264WithOpenH264FFmpeg,token-binding<TokenBinding,use-new-media-cache<use-new-media-cache --force-fieldtrials=AsyncDNS/AsyncDNSA/AutofillClassifier/Enabled/*AutofilCreditCardSigninPromo/EnabledFive/*AutofillFieldMetadata/Enabled/*AutofillProfileCleanup/Enabled/AutofillProfileOrderByFrecency/EnabledLimitTo3/CaptivePortalInterstitial/Enabled/Chromeashboard/Enabled/ChromotingQUIC/Enabled/*DataReductionProxyUseQuic/Enabled/*DisallowFetchForDocWrittenScriptsInMainFrame/DocumentWriteEvaluatorGroup/EnableGoogleCachedCopyTextExperimentButton/*EnableMediaRouter/Enabled/EnableMediaRouterWithCastExtension/Enabled/EnableSessionCrashedBubbleUI/Enabled/ExpectCTReporting/ExpectCTReportingEnabled/*ExtensionActionRedesign/Enaled/GoogleBrandedContextMenu/branded/*InstanceID/Enabled/MaterialDesignDownloads/Enabled/MaterialDesignUserManager/Enabled/MojoChannel/Enabled/*NetworkTimeQueries/NetworkTimeQueriesEnabed
[root@localhost colin]#
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Lebarhon » Dec 24th, '16, 00:39

Lebarhon
 
Posts: 408
Joined: Mar 22nd, '11, 22:24
Location: France

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 24th, '16, 15:36

Hi Lebarhon,

Tried the solution in the thread you posted me. The solution code and operations all completed without a problem - but on rebooting - the TL-WN823N still appears in MCC hardware as a scanner labelled 802.11n NIC with Vendor: Realtek, Description: 802.11n NIC, Connection: Bus USB, Bus PCI # 2, PCI device # 3, Vendor ID: 0x2357, Device ID: 0x0109, Misc Module: unknown.
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Lebarhon » Dec 24th, '16, 15:36

I can see also
Code: Select all
# rfkill list all

didn't answer anything, may be you should install the package rfkill
Lebarhon
 
Posts: 408
Joined: Mar 22nd, '11, 22:24
Location: France

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 24th, '16, 16:19

Hi Lebarhon,

Prepared to install rfkill - but version 0.5 Release 5.mga5 with arch x86_64 was already installed. Ran "su rfkill list all" again - and as you say nothing appears - just a return to the command prompt. What should appear in this list?
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 24th, '16, 16:44

Micromet wrote:What should appear in this list?

Hi, answer is already above, please read again.

And you still didn't add the complete output for lspcidrake -v, please provide that for the new wireless adapter...
doktor5000 wrote:Although in your case it only shows the wired network interface, not the wireless. So please add the complete output of lspcidrake -v so we can see what the wireless adapter shows up as.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby Micromet » Dec 24th, '16, 17:11

Hi Doktor5000 - yes after my last post I went back up through the thread because I thought I'd been told what rfkill should show me - need to count to 10 before posting. Here is the output requested. The TL-WN823N is there but apparently un-recognised as such.
Code: Select all
bash-4.3$ su
Password:
[root@localhost colin]# lspcidrake -v
Card:NVIDIA GeForce 8100 to GeForce 415: NVIDIA Corporation|G94 [GeForce 9600 GT] [DISPLAY_VGA] (vendor:10de device:0622) (rev: a1)
pata_jmicron    : JMicron Technology Corp.|JMB368 IDE controller [STORAGE_IDE] (vendor:197b device:2368 subv:1849 subd:2368)
r8169           : Realtek Semiconductor Co., Ltd.|RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [NETWORK_ETHERNET] (vendor:10ec device:8168 subv:1849 subd:8168) (rev: 02)
i2c_i801        : Intel Corporation|82801JI (ICH10 Family) SMBus Controller [SERIAL_SMBUS] (vendor:8086 device:3a30 subv:1849 subd:3a30)
unknown         : Intel Corporation|82801JI (ICH10 Family) SATA AHCI Controller [STORAGE_SATA] (vendor:8086 device:3a22 subv:1849 subd:3a22)
lpc_ich         : Intel Corporation|82801JIB (ICH10) LPC Interface Controller [BRIDGE_ISA] (vendor:8086 device:3a18 subv:1849 subd:3a18)
unknown         : Intel Corporation|82801 PCI Bridge [BRIDGE_PCI] (vendor:8086 device:244e) (rev: 90)
ehci_pci        : Intel Corporation|82801JI (ICH10 Family) USB2 EHCI Controller #1 [SERIAL_USB] (vendor:8086 device:3a3a subv:1849 subd:3a3a)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #3 [SERIAL_USB] (vendor:8086 device:3a36 subv:1849 subd:3a36)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #2 [SERIAL_USB] (vendor:8086 device:3a35 subv:1849 subd:3a35)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #1 [SERIAL_USB] (vendor:8086 device:3a34 subv:1849 subd:3a34)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 6 [BRIDGE_PCI] (vendor:8086 device:3a4a)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 4 [BRIDGE_PCI] (vendor:8086 device:3a46)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 3 [BRIDGE_PCI] (vendor:8086 device:3a44)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Port 2 [BRIDGE_PCI] (vendor:8086 device:3a42)
shpchp          : Intel Corporation|82801JI (ICH10 Family) PCI Express Root Port 1 [BRIDGE_PCI] (vendor:8086 device:3a40)
snd_hda_intel   : Intel Corporation|82801JI (ICH10 Family) HD Audio Controller [MULTIMEDIA_AUDIO_DEV] (vendor:8086 device:3a3e subv:1849 subd:0888)
ehci_pci        : Intel Corporation|82801JI (ICH10 Family) USB2 EHCI Controller #2 [SERIAL_USB] (vendor:8086 device:3a3c subv:1849 subd:3a3c)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #6 [SERIAL_USB] (vendor:8086 device:3a39 subv:1849 subd:3a39)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #5 [SERIAL_USB] (vendor:8086 device:3a38 subv:1849 subd:3a38)
uhci_hcd        : Intel Corporation|82801JI (ICH10 Family) USB UHCI Controller #4 [SERIAL_USB] (vendor:8086 device:3a37 subv:1849 subd:3a37)
shpchp          : Intel Corporation|4 Series Chipset PCI Express Root Port [BRIDGE_PCI] (vendor:8086 device:2e21) (rev: 02)
unknown         : Intel Corporation|4 Series Chipset DRAM Controller [BRIDGE_HOST] (vendor:8086 device:2e20 subv:1849 subd:2e20) (rev: 02)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
usbhid          : Logitech|USB Optical Mouse [Human Interface Device|Boot Interface Subclass|Mouse] (vendor:046d device:c077)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 uhci_hcd|UHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0001)
hub             : Linux 4.4.36-desktop-2.mga5 ehci_hcd|EHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0002)
unknown         : Realtek |802.11n NIC  (vendor:2357 device:0109)
hub             : Linux 4.4.36-desktop-2.mga5 ehci_hcd|EHCI Host Controller [Hub|Unused|Full speed (or root) hub] (vendor:1d6b device:0002)
hub             : Genesys Logic, Inc.|USB2.0 Hub [Hub|Unused|Full speed (or root) hub] (vendor:05e3 device:0608)
hid_generic     : Logitech USB Optical Mouse
[root@localhost colin]#
Micromet
 
Posts: 50
Joined: Dec 6th, '14, 19:00

Re: Router Wireless fails after upgrade from Mageia 4 to 5

Postby doktor5000 » Dec 25th, '16, 04:22

Seems like you might need the same driver for 4.x kernels as mentioned here: viewtopic.php?f=8&t=9956 or maybe this one: https://github.com/Mange/rtl8192eu-linux-driver
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17630
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany


Return to Networking

Who is online

Users browsing this forum: No registered users and 1 guest