Bueno he averiguado algo sobre el porque de mi problema, pero sigo estancado... :'( Cuando hacemos un iwconfig y nos muetra el parametro
radio off, como ya se intuia esto es debido a que el wireless del portatil esta desactivado. Solucion : Darle al botoncito del teclado el cual sirve para activar el wireless. Esto no es siempre una solucion, ya que en mi caso, en el boot de AUDITOR ocurre el siguiente error:
ipw2200: Radio Frequency Kill Switch is On:
Kill switch must be turned off for wireless networking to work.Esto significa que linux no reconoce el boton wireless y nos lo desactiva el wireless.
Exite un projecto para solucinar este problema en
http://rfswitch.sourceforge.net/ el cual permita a los usuarios poder activar su tarjeta wireless en portatiles que su hardware no soporte la activacion de wireless (wireless radio) switch.
En mi caso por suerte existe un projecto para Fujitsu-Siemens Amilo 7400 . En este caso me descargo el archivo
fsam7400-0.4.0.tgz en temporal . Y hago lo siguiente,
root@vic:~/tmp# tar zxvf fsam7400-0.4.0.tar
fsam7400-0.4.0/
fsam7400-0.4.0/fsam7400.c
fsam7400-0.4.0/Makefile
fsam7400-0.4.0/FILES
fsam7400-0.4.0/LICENSE
fsam7400-0.4.0/README
fsam7400-0.4.0/INSTALL
fsam7400-0.4.0/CHANGELOG
root@vic:~/tmp# cd fsam7400-0.4.0/
root@vic:~/tmp/fsam7400-0.4.0# make
make -C /lib/modules/2.6.11-auditor-10/build SUBDIRS=/home/victor/tmp/fsam7400-0.4.0 MODVERDIR=/home/victor/tmp/fsam7400-0.4.0 modules
make: *** /lib/modules/2.6.11-auditor-10/build: No such file or directory. Stop.
make: *** [modules] Error 2
root@vic:~/tmp/fsam7400-0.4.0#
Y aqui me quedo. Me dice que no encuentra un fichero en
/lib/modules/2.6.11-auditor-10/ pero no se exactamente cual.
Estoy empezando en linux y mi conocimiento sobre Makefiles es limitado os adjunto el codigo :
#
# Makefile for the Linux Wireless network device drivers.
#
# Original makefile by Peter Johanson
#
# NOTE: This make file can serve as both an external Makefile (launched
# directly by the user), or as the sub-dir Makefile used by the kernel
# build system.
CONFIG_IPW2100_FS_AMILO_M7400=m
# NOTE: If you don't need debug output from the fsam7400 module comment out
# the following line
CONFIG_IPW2100_DEBUG=y
list-m :=
list-$(CONFIG_IPW2100_FS_AMILO_M7400) += fsam7400
obj-$(CONFIG_IPW2100_FS_AMILO_M7400) += fsam7400.o
ifdef CONFIG_IPW2100_DEBUG
EXTRA_CFLAGS += -DCONFIG_IPW2100_DEBUG=$(CONFIG_IPW2100_DEBUG)
endif
#
# Begin dual Makefile mode here. First we provide support for when we
# are being invoked by the kernel build system
#
ifneq ($(KERNELRELEASE),)
ifneq ($(PATCHLEVEL),6) # If we are not on a 2.6, then do 2.4 specific things
include $(TOPDIR)/Rules.make
endif # End if 2.4 specific settings
else
# Here we begin the portion that is executed if the user invoked this Makefile
# directly.
# KSRC should be set to the path to your sources
# modules are installed into KMISC
KVER := $(shell uname -r)
KSRC := /lib/modules/$(KVER)/build
KMISC := /lib/modules/$(KVER)/kernel/drivers/net/wireless/ipw2100/
# KSRC_OUTPUT should be overridden if you are using a 2.6 kernel that
# has it's output sent elsewhere via KBUILD_OUTPUT= or O=
KSRC_OUTPUT := $(KSRC)
# If we find Rules.make, we can assume we're using the old 2.4 style building
OLDMAKE=$(wildcard $(KSRC)/Rules.make)
PWD=$(shell pwd)
VERFILE := $(KSRC_OUTPUT)/include/linux/version.h
KERNELRELEASE := $(shell \
if [ -r $(VERFILE) ]; then \
(cat $(VERFILE); echo UTS_RELEASE) | \
$(CC) -I$(KSRC_OUTPUT) $(CFLAGS) -E - | \
tail -n 1 | \
xargs echo; \
else \
uname -r; \
fi)
MODPATH := $(DESTDIR)/lib/modules/$(KERNELRELEASE)
all: modules
clean:
rm -f *.mod.c *.mod *.o *.ko .*.cmd .*.flags *~
rm -rf $(PWD)/tmp
ifeq ($(OLDMAKE),)
TMP=$(PWD)/tmp
MODVERDIR=$(TMP)/.tmp_versions
modules:
ifdef ($(KSRC_OUTPUT)/.tmp_versions)
mkdir -p $(MODVERDIR)
-cp $(KSRC_OUTPUT)/.tmp_versions/*.mod $(MODVERDIR)
endif
ifeq ($(KSRC),$(KSRC_OUTPUT)) # We're not outputting elsewhere
ifdef ($(KSRC)/.tmp_versions)
-cp $(KSRC)/.tmp_versions/*.mod $(MODVERDIR)
endif
make -C $(KSRC) SUBDIRS=$(PWD) MODVERDIR=$(PWD) modules
else # We've got a kernel with seperate output, copy the config, and use O=
mkdir -p $(TMP)
cp $(KSRC_OUTPUT)/.config $(TMP)
make -C $(KSRC) SUBDIRS=$(PWD) MODVERDIR=$(PWD) O=$(PWD)/tmp modules
endif
install: modules
install -d $(KMISC)
install -m 644 -c $(addsuffix .ko,$(list-m)) $(KMISC)
/sbin/depmod -a
@echo "See INSTALL for more information."
uninstall:
rm -rf $(KMISC)$(addsuffix .ko,$(list-m))
/sbin/depmod -a
else # We're on 2.4, and things are slightly different
modules:
make -C $(KSRC) SUBDIRS=$(PWD) BUILD_DIR=$(PWD) modules
install: modules
install -d $(KMISC)
install -m 644 -c $(addsuffix .o,$(list-m)) $(KMISC)
/sbin/depmod -a
@echo "See INSTALL for more information."
uninstall:
rm -rf $(KMISC)$(addsuffix .o,$(list-m))
/sbin/depmod -a
endif
endif
Lo he repasado un poco , pero no se muy bien que he de hacer. Tengo que modificar el Make o me falta algun archivo ? Este es el camino que he de seguir ?
Bueno, esto es todo . A ver si me podeis echar una mano

Gracias!