PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : W lan: led an wie weiter



quaeler
26.01.05, 18:47
Hallo hab debian (2.6.8) auf meinem MD42200 und centrino wlan ! hab folgende anleitung befolgt:

*seufz*

Zum ersten: der Kernel muss richtig konfiguriert sein. Wie, steht in einem früheren Eintrag meinerseits in diesem Thread.

1. http://mesh.dl.sourceforge.net/sour...pw2200-0.12.tgz laden
2. entpacken (Konsole -> "tar xzf /<PFAD>/ipw2200-0.12.tgz")
3. "cd /<PFAD>/ipw2200-0.12"

1. http://ipw2200.sourceforge.net/firm...2200-fw-2.0.tgz laden
2. entpacken
3. Dateien in "/usr/lib/hotplug/firmware/" kopieren

1. "modprobe ipw2200"

1. http://www.informatik.hu-berlin.de/...-0.5.15.tar.bz2 laden
2. entpacken
3. "cd /<PFAD>/acerhk-1.5.15"
4. "make"
5. "cp acerhk.ko /lib/modules/<KERNELVERSION>/kernel/drivers/char/"
6. "depmod -a"
7. "modprobe acerhk"
8. "echo on > /proc/driver/acerhk/wirelessled"

--> Karte sollte aktiviert und verfügbar sein. Für Fehler kein Gewähr, hab es grad ausm Kopf zusammengetextet.



so jetzt is die wireless status led an ! aber wie weiter ? wo stelle ich ip etc ein?? ach und noch was: irgendwie kann ich das ganze nid per button ausschalten... wie gehts weiter ?? bitte detailierte anleitung

mfg
Florian!

cane
27.01.05, 09:15
Also auf der Projektseite selber finde ich schon Schritte die von dir nicht durchgeführt wedren...

Was ist unter anderem hiermit:
http://ipw2200.sourceforge.net/INSTALL

mfg
cane

quaeler
27.01.05, 17:24
obige anleitung hab ich aus diesem forum ( von ms verweigerer geschrieben)... die besagt anleitung versteh ich nid...

quaeler
27.01.05, 17:59
naja modprobe funzt doch nid so ganz:



flos-nb:/usr/lib/hotplug/firmware# ls
ipw2200_boot.fw ipw2200_bss.fw ipw2200_ibss.fw ipw2200_ucode.fw LICENSE
flos-nb:/usr/lib/hotplug/firmware# modprobe ipw2200
FATAL: Module ipw2200 not found.
flos-nb:/usr/lib/hotplug/firmware#


komme mit den anleitung einfach nid klar... sorry bitte helfen....

cane
27.01.05, 18:06
Womit genau kommst Du nicht klar?

Halte Dich einfach genau an die Anweisungen und poste im Falle eines Fehlers als welcher Benutzer du welche Kommandos ausgeführt hast und zusätzlich den Fehler selbst...

mfg
cane

quaeler
27.01.05, 18:27
Also will folgendes machen:
INSTALLING THE BITS
------------ ----- ----- ---- --- -- -

Before installing ipw2200.ko, both firmware_class and ieee80211 need to
be installed first. For now the ieee80211 module code is included with
the ipw2200 code, so building and installing the ipw2200 should enable
you to:

$ modprobe ipw2200

Or... you can modprobe ieee80211 and firmware_class first, and then manually
insmod your build of ipw2200.ko



aber wie installiere ich firmware_class und ieee80211 ??

da könnte mal ne detailiertere anleitung stehen......

Maximili86
29.01.05, 11:26
also so hab ichs gemacht: etwas anders als in der ersten anleitung....

1. ipw2200-0.21.tgz laden
2. entpacken (Konsole -> "tar xzf /<PFAD>/ipw2200-0.21.tgz")
3. "cd /<PFAD>/ipw2200-0.21"

im ipw2200-0.21 ordner:
make
make install

1. http://ipw2200.sourceforge.net/firm...2200-fw-2.2.tgz laden
2. entpacken
3. Dateien in "/usr/lib/hotplug/firmware/" kopieren oder wo die auch immer bei debian liegen sollen
und guck mal ob du einen /etc/hotplug/firmware.agent hast! da steht auch der pfad für die firmwares drin

"modprobe ipw2200"

http://www.informatik.hu-berlin.de/...-0.5.15.tar.bz2 laden
entpacken
"cd /<PFAD>/acerhk-1.5.15"
"make"
make install
"depmod -a"
"modprobe acerhk"
"echo on > /proc/driver/acerhk/wirelessled"

quaeler
29.01.05, 15:56
Meine /etc/hotplug/firmware.agent sieht so aus :



#!/bin/sh
#
# Firmware-specific hotplug policy agent.
#
# Kernel firmware hotplug params include:
#
# ACTION=%s [add or remove]
# DEVPATH=%s [in 2.5 kernels, /sys/$DEVPATH]
# FIRMWARE=%s
#
# HISTORY:
#
# 24-Jul-2003 Initial version of "new" hotplug agent.
#
# $Id: firmware.agent,v 1.3 2004/03/14 15:52:56 ukai Exp $
#

cd /etc/hotplug
. ./hotplug.functions
# DEBUG=yes export DEBUG

# directories with the firmware files
FIRMWARE_DIRS="/lib/firmware /usr/local/lib/firmware /usr/lib/hotplug/firmware"

# mountpoint of sysfs
SYSFS=$(sed -n 's/^.* \([^ ]*\) sysfs .*$/\1/p' /proc/mounts)

# use /proc for 2.4 kernels
if [ "$SYSFS" = "" ]; then
SYSFS=/proc
fi

#
# What to do with this firmware hotplug event?
#
case "$ACTION" in

add)
if [ ! -e $SYSFS/$DEVPATH/loading ]; then
sleep 1
fi

for DIR in $FIRMWARE_DIRS; do
[ -e "$DIR/$FIRMWARE" ] || continue
echo 1 > $SYSFS/$DEVPATH/loading
cat "$DIR/$FIRMWARE" > $SYSFS/$DEVPATH/data
echo 0 > $SYSFS/$DEVPATH/loading
exit
done

# the firmware was not found
echo -1 > $SYSFS/$DEVPATH/loading

;;

remove)
;;

*)
mesg "Firmware '$ACTION' event not supported"
exit 1
;;

esac


Meine /usr/lib/hotplug/firmware/ Verzeichnis enthält folgene dateien: ipw2200_boot.fw ipw2200_bss.fw ipw2200_ibiss.fw ipw 2200_ucode.fw

stimmt doch oder ??? jedenfalls ergibt sich folgendes:

flos-nb:/home/florian# modprobe ipw2200
FATAL: Module ipw2200 not found.

Maximili86
29.01.05, 16:00
ja, mit der firmware stimmt.
ich vermute mal das du nach dem compilieren (make) des ipw2200 treibers nicht MAKE INSTALL gemacht hast!

quaeler
29.01.05, 16:24
hast recht habe nur make gemacht... jetzt geht modprobe ipw 2200
danke aber wie gehts jetzt weiter ? welche tools brauche ich um die wlan einstellungen zu machen ? wie stelle ich ip/dns usw ein und wie gebe ich das wpa pw ein ?????

quaeler
31.01.05, 15:46
mach ich zwar normal nid aber :
schiiiieeeb

sry

mfg
Forian

quaeler
03.02.05, 17:45
network admin liefert folgendes:



flos-nb:/home/florian# network-admin

(network-admin:4807): GnomeUI-WARNING **: While connecting to session manager:
Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed.
Entity: line 61: parser error : internal error
<dev></dev>
^
Entity: line 61: parser error : Extra content at the end of the document
<dev></dev>
^