You are not logged in.

#1 2010-08-08 21:52:19

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

Hello,

I am a recent Arch convert, and am enjoying the distro immensely. However, on one of my recent Arch installs I seem to be having a single (yet serious) issue: I can't make wireless work.

Everything else works fine, but this Acer has a technology called "SignalUp" (which is a button that maps to software to turn on and off the wireless device) that I can't seem to make work. The worst part is that this technology works out of the box in Ubuntu, which makes me even more frustrated.

My lspci | grep -i network:

04:00.0 Network controller: Atheros Communications Inc. AR928X Wireless Network Adapter (PCI-Express) (rev 01)


Madwifi has already loaded this driver, so I really don't know what to do about the SignalUp thing.

sudo iwconfig wlan0
wlan0     IEEE 802.11bgn  Mode:Managed  Access Point: Not-Associated   
          Tx-Power=0 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:on

$ sudo iwconfig wlan0 up
iwconfig: unknown command "up"


Please, I'm running out of options and I don't want to reinstall Ubuntu! Thanks in advance.

Last edited by dshaw (2010-08-15 07:44:14)


Information Security Professional

Offline

#2 2010-08-08 22:23:51

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

Try 'ifconfig wlan0 up'.

Offline

#3 2010-08-09 00:53:02

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

karol wrote:

Try 'ifconfig wlan0 up'.

When I do this, I get no error messages but the device still does not turn on. sudo iwconfig wlan0 txpower auto makes no difference either hmm


Information Security Professional

Offline

#4 2010-08-09 01:11:05

warenoso
Member
From: Brisbane
Registered: 2010-08-06
Posts: 76

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

may i ask why are you using madwifi instead of the ath9k part of the kernel?
maybe you should give it a try.

Offline

#5 2010-08-09 02:05:35

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

warenoso wrote:

may i ask why are you using madwifi instead of the ath9k part of the kernel?
maybe you should give it a try.

Madwifi was only done after I couldn't get wireless working with the built-in kernel module--I thought that they operated the same way, anyway though.

I think the real issue is my inability to "power on" the SignalUp device.


Information Security Professional

Offline

#6 2010-08-09 14:43:25

creatid
Member
From: Netherlands
Registered: 2009-12-19
Posts: 75
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

dshaw - I have the same Atheros card on an Acer 7535 and it works with the ath9k module.
As root do

  iwconfig wlan0 power off
  wpa_supplicant -B -Dwext -i wlan0 -c /etc/wpa_supplicant.conf

(You do need to create the /etc/wpa_supplicant.conf as per the wiki)

My wpa_supplicant.conf looks like this (without the sensitive bits):
  network={
          ssid="PUTYOURESSIDHERE"
          proto=RSN
  #       key_mgmt=WPA_PSK
          pairwise=CCMP TKIP
          group=CCMP TKIP
         #psk="PUTYOURPSKHERE"
         psk=PUTTHERESULTOFPSKHERE
  }

If this works you can automate it in rc.conf (haven't done that myself).

Hope this helps

Offline

#7 2010-08-11 02:43:50

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

Hi,

Thanks for the help! Although I am sure this will assist in actually connecting to the network, my current problem is even turning the "SignalUp" device on. I can't get that beautiful little orange light to go on, and even with wpa_gui I can't select a device!

I know there is a solution waiting for me somewhere, I just can't find it!


Information Security Professional

Offline

#8 2010-08-11 08:49:09

Varg
Member
From: Belgium
Registered: 2010-07-07
Posts: 272

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

I had some trouble on my laptop with a Atheros card to because I loaded the wrong driver. I couldn't get it to work after that because in some way it had corrupted my network card. I'd say uninstall madwifi, change your rc.conf to default values ( only the modules and daemons that have to do with your wifi ). Shut down your laptop, unplug the cable and take out the battery for let's say 15min. Boot it up again and try to get your wifi working with wpa according to the wiki and the posts above.

Last edited by Varg (2010-08-11 08:49:55)

Offline

#9 2010-08-12 17:31:17

creatid
Member
From: Netherlands
Registered: 2009-12-19
Posts: 75
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

Varg's advice seems to be the best way to go for now.
For the record, my device is also a "SignalUp" thingy and the indicator lights up after the iwconfig and wpa_supplicant commands I posted above. So I know from experience that it *should* work with default settings.

Offline

#10 2010-08-12 18:04:15

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

creatid wrote:

Varg's advice seems to be the best way to go for now.
For the record, my device is also a "SignalUp" thingy and the indicator lights up after the iwconfig and wpa_supplicant commands I posted above. So I know from experience that it *should* work with default settings.

Hmm interesting. I tried those and didn't get them to work, but maybe I'm doing it incorrectly. Will try tonight and edit this post with any additional information I may have.

ps:

rfkill list showed a soft block, but rfkill unblock 0 should have fixed that (rfkill list is clean now)


Information Security Professional

Offline

#11 2010-08-13 04:34:43

munkyeetr
Member
From: Merritt, BC
Registered: 2008-08-07
Posts: 83

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

I have the same wireless adapter in an Acer 5535 laptop...here's what I do:

First: if your laptop has a wireless button (the one that blinks when you do have a signal), make sure it is on. Toggle it if you have to. Not sure about your model, but also check for a hardware switch to toggle wireless on the front or sides of the laptop, and lastly check if there's a Fn button combination that toggles wireless.

All I've ever done to get wireless on Arch with this adapter:

1) # modprobe ath9k
2) # ifconfig wlan0 up
3) # iwlist wlan0 scan       :: to check for wireless networks
4) # iwconfig wlan0 essid <essid> key <key>
5) # dhcpcd wlan0

After doing that and updating and installing my system:

I install wicd package and add it to DAEMONS in rc.conf
Add wicd-client & to ~/.xinitrc file one line above where I start my window manager


If the advice you're given in this forum solves your issue, please mark the post as [SOLVED] in consideration to others.

"More than any time in history mankind faces a crossroads. One path leads to despair and utter hopelessness, the other to total extinction.
Let us pray that we have the wisdom to choose correctly." -- Woody Allen

Offline

#12 2010-08-15 07:43:52

dshaw
Member
From: California
Registered: 2010-08-02
Posts: 7
Website

Re: Acer Aspire 5732Z Wireless (SignalUp) Help! [SOLVED]

munkyeetr wrote:

I have the same wireless adapter in an Acer 5535 laptop...here's what I do:

First: if your laptop has a wireless button (the one that blinks when you do have a signal), make sure it is on. Toggle it if you have to. Not sure about your model, but also check for a hardware switch to toggle wireless on the front or sides of the laptop, and lastly check if there's a Fn button combination that toggles wireless.

All I've ever done to get wireless on Arch with this adapter:

1) # modprobe ath9k
2) # ifconfig wlan0 up
3) # iwlist wlan0 scan       :: to check for wireless networks
4) # iwconfig wlan0 essid <essid> key <key>
5) # dhcpcd wlan0

After doing that and updating and installing my system:

I install wicd package and add it to DAEMONS in rc.conf
Add wicd-client & to ~/.xinitrc file one line above where I start my window manager


Using this and wicd I managed to get wireless working, at long last. Thank you!


Information Security Professional

Offline

Board footer

Powered by FluxBB