You are not logged in.

#1 2010-09-28 16:40:54

natostanco
Member
Registered: 2008-01-07
Posts: 126

Intel wifi link 1000 series, how to get it working?

Hi, I have installed arch linux on my netbook acer 1825PTZ, its wireless card is Intel wifi link 1000series, I have tried to follow the wireless setup guide on archwiki but I have not come to a conclusion...I've searched among the list of supported drivers but I am not sure if it is supported or not. So can you plz make a more accurate research? i would like to keep ndiswrapper as ultimate choice...

Offline

#2 2010-09-28 17:31:30

codycarey
Member
Registered: 2009-08-21
Posts: 154

Re: Intel wifi link 1000 series, how to get it working?

You need to post relevant output that will assist in determining your problem, simply telling people to elaborate on the wiki isn't going to get you any help or win you any favor.

Offline

#3 2010-09-28 17:44:41

shemz
Member
Registered: 2010-04-23
Posts: 135

Re: Intel wifi link 1000 series, how to get it working?

Your wireless card is officially supported by the stock kernel (more). Install linux-firmware package. If that doesn't solve, post output of dmesg | grep iwlagn.

Offline

#4 2010-09-28 20:20:15

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

how to install it?
pacman -S linux-firmware doesn't find it
should i use pacman -U ? where is the path?

Offline

#5 2010-09-28 20:24:07

RaisedFist
Member
From: Romania
Registered: 2007-01-30
Posts: 556
Website

Re: Intel wifi link 1000 series, how to get it working?

Ha! Are you sure pacman doesn't find the package? It's in the core repo... Just try pacman -Ss linux-firmware and see if it's found.

Offline

#6 2010-09-28 21:40:24

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

doing pacman -Ss firmaware have found the iwl-1000-udev firmware
so i try to install it and it says cannot download the package? i do pacman -S iwl-1000-udev
should i do pacman -U path? what is the path?

Offline

#7 2010-09-29 03:22:10

moose jaw
Member
From: Milwaukee
Registered: 2007-08-20
Posts: 104

Re: Intel wifi link 1000 series, how to get it working?

natostanco wrote:

doing pacman -Ss firmaware have found the iwl-1000-udev firmware
so i try to install it and it says cannot download the package? i do pacman -S iwl-1000-udev
should i do pacman -U path? what is the path?

There is no package by that name in the official Arch repos.  What you are looking for is the "linux-firmware" package. You need to run pacman -S linux-firmware.  The iwlwifi-1000-3.ucode file is contained in that package and will be installed in the right place and shouldn't require any further setup or configuration. This will allow your kernel to initialize the wifi card and get it going. Actually connecting to a network will require some software steps, as described in the wiki and elsewhere (ifconfig/iwconfig/wpa_supplicant on the command line, or a simpler all-in-one program like wicd or network-manager).

Offline

#8 2010-09-29 06:21:00

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

as i said pacman doesn't find linux-firmware...

Offline

#9 2010-09-29 06:26:23

Buffalo Soldier
Member
Registered: 2008-07-27
Posts: 7

Re: Intel wifi link 1000 series, how to get it working?

Have you update your package list?

pacman -Syu

or

sudo pacman -Syu

Offline

#10 2010-09-29 06:34:03

Nichollan
Member
From: Stavanger, Norway
Registered: 2010-05-18
Posts: 110

Re: Intel wifi link 1000 series, how to get it working?

According to the lspci command I am using "Intel Corporation WiFi Link 1000 Series," and my wireless connection generally works. I also have linux-firmware installed. If pacman can't find the package, perhaps there's a problem with your mirror.

Offline

#11 2010-09-29 07:04:18

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

ehm, how I am supposed to download a package if i am installing the device for internet connection? tongue I thought that the package was already between installation files...

Offline

#12 2010-09-29 07:15:54

Buffalo Soldier
Member
Registered: 2008-07-27
Posts: 7

Re: Intel wifi link 1000 series, how to get it working?

during installation you need to do this -> http://wiki.archlinux.org/index.php/Beg … nvironment

Offline

#13 2010-09-29 08:27:53

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

the package linux-firmware is not between primary files...so I use the command

dmesg | grep firmware

to enable the firmware...then used netcfg with a simple wpa-wireless profile to start the connection^^

Offline

#14 2010-09-29 08:41:39

Nichollan
Member
From: Stavanger, Norway
Registered: 2010-05-18
Posts: 110

Re: Intel wifi link 1000 series, how to get it working?

Ehh... can dmesg without any options actually enable anything? Anyway, I post this in case you still get some issues.

natostanco wrote:

ehm, how I am supposed to download a package if i am installing the device for internet connection? tongue I thought that the package was already between installation files...

Hopefully you will be able to use ethernet, or you could download the linux-firmware package from a mirror on a different system.

To download the package from a mirror without pacman, go to one of the HTTP addresses in /etc/pacman.d/mirrorlist with "$repo" swapped with "core" and $arch swapped with either i686 or x86_64. You should be able to see a link to a linux-firmware file. When you've transferred this file over to your Arch system, you install it by

# pacman -U /path/to/package

I avoided the Netinstall image as I suspected that I would have some major issues getting Internet connectivity. If you chose the core image, you should have the package already installed.

Last edited by Nichollan (2010-09-29 09:03:07)

Offline

#15 2010-09-29 08:55:49

Nichollan
Member
From: Stavanger, Norway
Registered: 2010-05-18
Posts: 110

Re: Intel wifi link 1000 series, how to get it working?

I just ran the Netinstall image in a virtual machine, and the linux-firmware package seems to be missing (according to pacman -Q linux-firmware). I think it ought to be included, but I am not sure who I should ask.

Offline

#16 2010-09-29 09:08:04

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

My wifi works fine now, but i can't find what should I do to enable "ifconfig wlan0 up" at boot...

Offline

#17 2010-09-29 09:30:37

Nichollan
Member
From: Stavanger, Norway
Registered: 2010-05-18
Posts: 110

Re: Intel wifi link 1000 series, how to get it working?

You could use netcfg. Note the section in the article called "Connecting automatically."

Offline

#18 2010-09-29 09:35:53

natostanco
Member
Registered: 2008-01-07
Posts: 126

Re: Intel wifi link 1000 series, how to get it working?

yes I have put net-profiles between daemons and wrote my network profile in NETWORKS=(wireless-wpa), but I need to know how to enable wireless card at boot :s
writing under interfaces wlan0="dhcp" actually enables it but doesn't connect to the network profile, so i think it goes in conflict with netcfg? O.o

Offline

#19 2010-10-01 06:45:50

RaisedFist
Member
From: Romania
Registered: 2007-01-30
Posts: 556
Website

Re: Intel wifi link 1000 series, how to get it working?

it should start by default if you put it that way, you don't need the wlan0=dhcp part

Offline

Board footer

Powered by FluxBB