wifi not work [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.
ale8193

wifi not work [SOLVED]

Post by ale8193 »

Hi, i'm new with linux mint, I just installed, but i can't connect with my wifi connection (there aren't any options to connect), if i use cable ethernet internet works successfully.

I'm using a Asus X552C and i try the comand: sudo /usr/lib/linuxmint/mintWifi/mintWifi.py

Code: Select all

-------------------------
* I. scanning WIFI PCI devices...
  -- Qualcomm Atheros AR9485 Wireless Network Adapter (rev 01)
      ==> PCI ID = 168c:0032 (rev 01)
-------------------------
* II. querying ndiswrapper...
-------------------------
* III. querying iwconfig...
eth0      no wireless extensions.

lo        no wireless extensions.

wlan0     IEEE 802.11bgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=off   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          
-------------------------
* IV. querying ifconfig...
eth0      Link encap:Ethernet  IndirizzoHW d8:50:e6:1d:b0:b7  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:61470 errors:0 dropped:0 overruns:0 frame:0
          TX packets:45308 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:1000 
          Byte RX:65518528 (65.5 MB)  Byte TX:7245468 (7.2 MB)

lo        Link encap:Loopback locale  
          indirizzo inet:127.0.0.1  Maschera:255.0.0.0
          indirizzo inet6: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1565 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1565 errors:0 dropped:0 overruns:0 carrier:0
          collisioni:0 txqueuelen:0 
          Byte RX:213831 (213.8 KB)  Byte TX:213831 (213.8 KB)

-------------------------
* V. querying DHCP...
-------------------------
* VI. querying nslookup google.com...

thanks for the help :D
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 3 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
ClutchDisc

Re: wifi not work

Post by ClutchDisc »

Did you try looking in the driver manager for any wireless drivers yet? Menu > Control Center > Driver manager. If there are, connect via Ethernet and enable it.
ale8193

Re: wifi not work

Post by ale8193 »

ClutchDisc wrote:Did you try looking in the driver manager for any wireless drivers yet? Menu > Control Center > Driver manager. If there are, connect via Ethernet and enable it.
Yes i did, but nothing, the aren't
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

Since this is an Asus post results from

Code: Select all

rfkill list
ale8193

Re: wifi not work

Post by ale8193 »

JeremyB wrote:Since this is an Asus post results from

Code: Select all

rfkill list
with "rfkill list" i have:

Code: Select all

0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
1: asus-wlan: Wireless LAN
	Soft blocked: no
	Hard blocked: no
2: asus-bluetooth: Bluetooth
	Soft blocked: yes
	Hard blocked: no
I tryed to block all (rfkill block all) then unblock option 0 (rfkill unblock 0) and the wifi worked properly for some second, then turn off again :evil:
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

Code: Select all

sudo modprobe -rv asus_nb_wmi

Code: Select all

sudo modprobe asus_nb_wmi wapf=0
Wait for 10 seconds then

Code: Select all

rfkill list
if it still is hard blocked try your keyboard hotkey toggle and try the rfkill list again

If the parameter works, I will post command to make it persistant
ale8193

Re: wifi not work

Post by ale8193 »

JeremyB wrote:

Code: Select all

sudo modprobe -rv asus_nb_wmi

Code: Select all

sudo modprobe asus_nb_wmi wapf=0
Wait for 10 seconds then

Code: Select all

rfkill list
if it still is hard blocked try your keyboard hotkey toggle and try the rfkill list again

If the parameter works, I will post command to make it persistant
At the end of the process with rfkill list i have:

Code: Select all

0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
4: asus-wlan: Wireless LAN
	Soft blocked: no
	Hard blocked: no
5: asus-bluetooth: Bluetooth
	Soft blocked: yes
	Hard blocked: no
ale8193

Re: wifi not work

Post by ale8193 »

now i have a different result

Code: Select all

0: phy0: Wireless LAN
	Soft blocked: no
	Hard blocked: yes
4: asus-wlan: Wireless LAN
	Soft blocked: no
	Hard blocked: no
5: asus-bluetooth: Bluetooth
	Soft blocked: no
	Hard blocked: no
6: hci0: Bluetooth
	Soft blocked: no
	Hard blocked: no
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

Please check your BIOS version as it looks like BIOS 206 is the latest and only out for 3 weeks

http://www.asus.com/Notebooks_Ultrabook ... _Download/

If you have issues after installing the BIOS update, run this in terminal

Code: Select all

wget -N -t 5 -T 10 http://dl.dropbox.com/u/57264241/wireless_script && chmod +x wireless_script && ./wireless_script
and post the resulting wireless-info file
ale8193

Re: wifi not work

Post by ale8193 »

JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

ale8193 wrote:Here the result
http://pastebin.com/DBkaHFnJ
It looks like you are connected over wifi now. Is there another problem?

A kernel dev on another forum has asked for users to try this to see if it fixes this bug

Code: Select all

sudo modprobe -rv asus_nb_wmi

Code: Select all

sudo modprobe asus_nb_wmi wapf=4
If it works on your asus

Code: Select all

 cat /sys/class/dmi/id/product_name
ale8193

Re: wifi not work

Post by ale8193 »

sorry i don't understand what i have to do :) i have to try only the last instruction?
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Re: wifi not work

Post by JeremyB »

ale8193 wrote:sorry i don't understand what i have to do :) i have to try only the last instruction?
Try the first 2 codes and if your wifi toggle button still works run the last one.

If it doesn't work and my original one did, let me know because the problem is likely to return if you reboot
ale8193

Re: wifi not work

Post by ale8193 »

well i tryed the 2 first, and wifi still work, but with the last istruction i have only the name of pc
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: Re: wifi not work

Post by JeremyB »

ale8193 wrote:well i tryed the 2 first, and wifi still work, but with the last istruction i have only the name of pc
Have you rebooted yet to see if wifi works after?

The developer actually wants the pc name so they can make the asus_nb_wmi use the correct setting automatically in a upcoming kernel
ale8193

Re: wifi not work

Post by ale8193 »

no, after reboot it doesn't work.

the correct name is: X550CL
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

Ok so try this to make it work

Code: Select all

sudo modprobe -rv asus_nb_wmi

Code: Select all

sudo modprobe asus_nb_wmi wapf=4
And try hotkeys to enable wifi
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

If the wapf=4 worked you can make it persistant with

Code: Select all

sudo -i

Code: Select all

echo "options asus_nb_wmi wapf=4" > /etc/modprobe.d/asus.conf

Code: Select all

exit
But if only wapf=1 worked use this

Code: Select all

sudo -i

Code: Select all

echo "options asus_nb_wmi wapf=1" > /etc/modprobe.d/asus.conf

Code: Select all

exit
ale8193

Re: wifi not work

Post by ale8193 »

JeremyB wrote:If the wapf=4 worked you can make it persistant with

Code: Select all

sudo -i

Code: Select all

echo "options asus_nb_wmi wapf=4" > /etc/modprobe.d/asus.conf

Code: Select all

exit
But if only wapf=1 worked use this

Code: Select all

sudo -i

Code: Select all

echo "options asus_nb_wmi wapf=1" > /etc/modprobe.d/asus.conf

Code: Select all

exit
Perfect! It works! thanks :D :D :D :D
JeremyB
Level 21
Level 21
Posts: 13880
Joined: Fri Feb 21, 2014 8:17 am

Re: wifi not work

Post by JeremyB »

Please tell me which one of the wapf options worked and I will report it to the kernel developer so this problem can be avoided in future releases
Locked

Return to “Networking”