AR9462 Atheros wireless driver

10 respostas [Última entrada]
JaqLondres
Desconectado
Joined: 01/10/2013

I'm new to Linux. It seems that Trisquel5.5(64bit) has no wireless driver for Samsung laptop with AR9462 wireless card. 'lshw' command recognizes the hardware, but marks it as unclaimed. It seems that new ath9k driver may work, but I have trouble installing it. Could someone walk me through the process in detail, please

GustavoCM

I am a member!

Desconectado
Joined: 11/20/2012

Welcome to GNU/Linux.

You could try using a newer Linux-libre version. You could try this: http://jxself.org/linux-libre/

JaqLondres
Desconectado
Joined: 01/10/2013

Thanks, there is a free world out there :)

mYself
Desconectado
Joined: 01/18/2012

Hi JaqLondres!

The reason why your wireless card does not want to work is that it requires Linux 3.2 or later. You can either install the latest Linux-libre kernel from PPA or upgrade to Trisquel 6.0 "Toutatis" when it is ready.

JaqLondres
Desconectado
Joined: 01/10/2013

Thanks, I'm exploring other releases of Linux-libre. BTW, in Trisquel Bash there is no 'make' command?

jxself
Desconectado
Joined: 09/13/2010

Make isn't part of BASH. Install the package called build-essential.

lammi87

I am a member!

Desconectado
Joined: 07/27/2012

Hi JaqLondres!

Make is a separate program. If you don't have it, you can install the package suggested by jxself.

Also, please note that we don't call Trisquel "Linux" because linux is just a kernel not an OS. We call "Linux" GNU/Linux. Trisquel is just one of GNU/Linux distributions (which uses a 100% free as in freedom version of linux called linux-libre, by the way).

Have you checked if your laptop is already in h-node (www.h-node.org)? It's a free software compatible hardware database. It would help a lot if you could report all of your devices like laptops, printers and internal components of your desktop computer to h-node and check that they are up to date if they are already reported.

Welcome aboard!

GustavoCM

I am a member!

Desconectado
Joined: 11/20/2012
JaqLondres
Desconectado
Joined: 01/10/2013

I've installed build-essential, build-essential linux-headers-generic, and build-dep linux packages.After this, I got to this point (part of the response to sudo make install):
"...Disabling iwl4965 ... [OK] Module disabled:
kernel/drivers/net/wireless/iwlegacy/iwl4965.ko
depmod will prefer updates/ over kernel/ -- OK!
make: execvp: ./compat/scripts/compat_firmware_install: Permission denied
make: *** [install-scripts] Error 127 ...."
What else am I missing ?

andrew
Desconectado
Joined: 04/19/2012

> make: execvp: ./compat/scripts/compat_firmware_install: Permission denied

Maybe try executing the command chmod +x ./compat/scripts/compat_firmware_install

JaqLondres
Desconectado
Joined: 01/10/2013

Right, thanks;)