intermittent connection, mint 17 /Dell 4050 [SOLVED]

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
Oratoide

intermittent connection, mint 17 /Dell 4050 [SOLVED]

Post by Oratoide »

Good evening, first of all sorry my English, I'm using google translator.
For a month now I have problems with the wifi connection, my laptop is a Dell N4050, use cinnamon mint 17, reading other threads, it happens something like it --> http://forum.linuxmint.com/viewtopic.php?f=53&t=181088 ,restart, press fn + f2, the wireless network disappears, etc. :evil:
Already tired of the problem, update the Kernel 3.16.1, was solved a few days and returned to the same. :(

Maybe this helps
sebastian@Sebastian-N4050:~$ lspci -nnk | grep -iA2 net
05:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 05)
Subsystem: Dell Device [1028:0502]
Kernel driver in use: r8169
09:00.0 Network controller [0280]: Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01)
Subsystem: Dell Wireless 1702 802.11bgn Half-size Mini PCIe Card [AR9002WB-1NGCD] [1028:0205]
Kernel driver in use: ath9k
sebastian@Sebastian-N4050:~$
And pastebin. :D
http://pastebin.com/TfVA6ZMn

If I can help, I would appreciate it very much. I will be attentive to your answers. :D
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: intermittent connection, signal disappears mint17 /Dell

Post by JeremyB »

Oratoide wrote:Good evening, first of all sorry my English, I'm using google translator.
For a month now I have problems with the wifi connection, my laptop is a Dell N4050, use cinnamon mint 17, reading other threads, it happens something like it --> http://forum.linuxmint.com/viewtopic.php?f=53&t=181088 ,restart, press fn + f2, the wireless network disappears, etc. :evil:
Already tired of the problem, update the Kernel 3.16.1, was solved a few days and returned to the same. :(

Maybe this helps
sebastian@Sebastian-N4050:~$ lspci -nnk | grep -iA2 net
05:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 05)
Subsystem: Dell Device [1028:0502]
Kernel driver in use: r8169
09:00.0 Network controller [0280]: Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01)
Subsystem: Dell Wireless 1702 802.11bgn Half-size Mini PCIe Card [AR9002WB-1NGCD] [1028:0205]
Kernel driver in use: ath9k
sebastian@Sebastian-N4050:~$
The errors at the end of the info are troubling but a bug report I found may indicate it is an issue with bluetooth. So we will blacklist bluetooth modules and restart to see if it works better

Code: Select all

echo "blacklist btusb" | sudo tee /etc/modprobe.d/blacklist-blue.conf

Code: Select all

echo "blacklist ath3k" | sudo tee /etc/modprobe.d/blacklist-blue.conf
You will want to enter the code into terminal from a non-translated version of this post as the code may change in translation

Restart computer and see if it is better

And pastebin. :D
http://pastebin.com/TfVA6ZMn

If I can help, I would appreciate it very much. I will be attentive to your answers. :D
Oratoide

Re: intermittent connection, signal disappears mint17 /Dell

Post by Oratoide »

JeremyB wrote:
Oratoide wrote:Good evening, first of all sorry my English, I'm using google translator.
For a month now I have problems with the wifi connection, my laptop is a Dell N4050, use cinnamon mint 17, reading other threads, it happens something like it --> http://forum.linuxmint.com/viewtopic.php?f=53&t=181088 ,restart, press fn + f2, the wireless network disappears, etc. :evil:
Already tired of the problem, update the Kernel 3.16.1, was solved a few days and returned to the same. :(

Maybe this helps
sebastian@Sebastian-N4050:~$ lspci -nnk | grep -iA2 net
05:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 05)
Subsystem: Dell Device [1028:0502]
Kernel driver in use: r8169
09:00.0 Network controller [0280]: Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) [168c:002b] (rev 01)
Subsystem: Dell Wireless 1702 802.11bgn Half-size Mini PCIe Card [AR9002WB-1NGCD] [1028:0205]
Kernel driver in use: ath9k
sebastian@Sebastian-N4050:~$
The errors at the end of the info are troubling but a bug report I found may indicate it is an issue with bluetooth. So we will blacklist bluetooth modules and restart to see if it works better

Code: Select all

echo "blacklist btusb" | sudo tee /etc/modprobe.d/blacklist-blue.conf

Code: Select all

echo "blacklist ath3k" | sudo tee /etc/modprobe.d/blacklist-blue.conf
You will want to enter the code into terminal from a non-translated version of this post as the code may change in translation

Restart computer and see if it is better

And pastebin. :D
http://pastebin.com/TfVA6ZMn

If I can help, I would appreciate it very much. I will be attentive to your answers. :D
Thanks JeremyB. : D
Truth does not understand much, but since I accepted my post, I have received several updates for bluetooth.
[IMG] http://i.imgur.com/Hr9se5r.png [/ IMG]

I did what you asked:
@ sebastian Sebastian-N4050: ~ $ echo "blacklist btusb" | sudo tee /etc/modprobe.d/blacklist-blue.conf
[sudo] password for sebastian:
btusb blacklist
@ sebastian Sebastian-N4050: ~ $ echo "blacklist ath3k" | sudo tee /etc/modprobe.d/blacklist-blue.conf
ath3k blacklist
@ sebastian Sebastian-N4050: ~ $
[/ quote]

I rebooted my laptop and this is my pastebin:

http://pastebin.com/ddmnA0ud


last night I was connected via LAN, wireless did not recognize my wifi signal in my house.
now the wifi works well, I have 5 hours without problems :mrgreen:

I appreciate your time
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: intermittent connection, signal disappears mint17 /Dell

Post by JeremyB »

Good, can you edit your first post to add [SOLVED] to the subject so it may help others
Locked

Return to “Networking”