Gå til hovedinnhold

Gentoo Linux Wireless Intel Centrino Advanced-N 6230

This is guide that works for a laptop Samsung 700Z and Gentoo 3.2.1-r2
The wireless router uses WPA-Personal protection and DHCP

1. Install Firmware: my source on the net
Gentoo miss a little piece to make wifi working : the firmware.
go to the linux intel wifi site : http://intellinuxwireless.org/ and get the firmware, at this time this is the following : http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-6000g2b-ucode-18.168.6.1.tgz
and put the file . ucode in /lib/firmware/, create the directory if it does not exist already.

wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-6000g2b-ucode-18.168.6.1.tgz
tar xzf iwlwifi-6000g2b-ucode-18.168.6.1.tgz
cp iwlwifi-6000g2b-5.ucode /lib/firmware/
2. Install wpa_supplicant: my source on the net
emerge net-wireless/wpa_supplicant
3. Check if drivers works
ifconfig -a
if wlan0 appears, it works

4. configure wpa_supplicant: my source on the net
edit /etc/conf.d/net:
modules="wpa_supplicant"
# To use dhcp
config_wlan0="dhcp"
# For centrino as of kernel 2.6.15 (and probably earlier)
wpa_supplicant_ath0="-Dwext"
wpa_timeout_ath0=60
edit /etc/wpa_supplicant/wpa_supplicant.conf:
# The below line not be changed otherwise we refuse to work
ctrl_interface=/var/run/wpa_supplicant
eapol_version=1
fast_reauth=1
country=NO
ctrl_interface_group=0
ap_scan=1
network={
  ssid="YourNetwork"
  proto=WPA
  key_mgmt=WPA-PSK
  pairwise=TKIP
  group=TKIP
  psk="YourPassPhrase"
  priority=1
}
See more examples on this page

5. Create symbolic link, start and make it autostart:
symbolic link:
cd /etc/init.d
ln -s net.lo net.wlan0

start manually:
/etc/init.d/net.wlan0 start

make it autostart:
rc-update add net.wlan0 default


Kommentarer

Populære innlegg fra denne bloggen

Galaxy Tab 7 GT-P1000 - install Gingerbread

1st here's a good full guide with descriptions that I've read through here . 2nd there another good guide here . Download Samsung Kies here . Download Odin 1.7 from XDA-developers  here . Download Firmware of chosen version here  (tsar3000) or here  (thegalaxytabforum). Now this is how you do it step by step: 1. Install Samsung Kies and connect your Tab If you haven't already installed Kies and tested that your tab can connect to your computer, you should do it now. This is mainly because Kies will take care of the needed drivers to connect to the computer. So go ahead and check if there's connection. 2. Put your tab into download mode Turn it off - then turn it on by holding power button and volume down button. You need this to work before you can go on. Should look like this: 3. Start Odin and connect the Galaxy Tab Just start Odin and connect the tab with USB. If it connects the ID:COM field will look something like this:  with the te...

XBMC library - sharing and securely saving library in a database / mysql

So first of all you should look at XBMC's official explanation as it's probably more presice than mine now: http://wiki.xbmc.org/index.php?title=HOW-TO:Sync_multiple_libraries I will short it down to the basics: When you add a source in XBMC the library automatically stores itself on a local database called Sqlite on your local filesystem somewhere. Most people don't know about this and it will easily be lost when reinstalling. To not lose your library information that has been recorded over a long time you really should use a database like MySQL to store it. More databases is probably supported and equally set up. Library information is stuff like which episodes and movies have you seen, have you seen only half the movie etc. It also contains filepaths for each and every file. So all you need to watch your videos and listen to your music is stored here. It will also suit for sharing the information if you have several xbmc installations (I will refer to them as cl...

ASRock ION 3D 152B/152D with Ubuntu Linux and XBMC. Remote control / HDMI audio

ASrock ION 3D 152B I landed on this little computer as my mediacenter for my living room. It's small, looks nice and has all the features you would like to run a mediacenter. I wanted to write about my experience with setting it up with Ubuntu Linux and XBMC. I don't want to describe every detail of it because most of it works quite nicely. So I will focus on the harder parts, which is basically making the remote control work with the XBMC interface and getting the audio through the HDMI cable. I also would like to add that I switched the default harddrive which is a normal HDD 5400 rpm and works quite slow. -I installed the latest version of Ubuntu Desktop and made sure that the audio and video drivers works as they should, which they do. I then removed software afterwards which I don't need. You can also do this the other way round by installing a minimal installation like LXDE. -I then installed XBMC by following these steps. Which is simply a...