The story continued with me being disappointed of not being able to set up my wireless settings.
# wifi-menu
"No such interface found: wlan0"
Oh noooo, c'mon!
Ok, so I went to that page ArchLinux told me about, when it finished loading. The system said something like the driver could not be loaded or so...
http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware
Fedora, Ubuntu, ... Bla bla bla...a little bit further, hmm, oh no, ArchLinux is not listed. No good news!
So the last chance -> "Other distributions not mentioned above"
And right below that the warning: "Note: You need to have a compiler and headers for libc installed, since you will have to build fwcutter from source".
Well, I don't have internet access, I don't have a OS installed! No, of course I can't compile stuff! Holy ....arghhhh!
How to solve that problem:
1. Download b43-fwcutter binary packages:
Go: https://www.archlinux.org/packages/core/i686/b43-fwcutter/
and click on Download from other mirror
2. Download broadcom driver
Put both packages on a flash drive and insert it in the computer running archlinux from the boot cd.
Mount the flash drive by entering
# fdisk -l # find out which device is the flash drive
# mount /dev/sdb1 /media # if /dev/sdb1 is the flash drive
The script:
mkdir /b43
cd /b43
cp /media/b43* .
cp /media/broad* .
pacman -U b43-fwcutter-*
export FIRMWARE_INSTALL_DIR="/lib/firmware"
tar xjf broadcom-wl-5.100.138.tar.bz2
b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" broadcom-wl-5.100.138/linux/wl_apsta.o
modprobe -r b43 bcma
modprobe -r brcmsmac bcma
modprobe -r wl
modprobe b43
This should do it, let me know if you have problems with that.# wifi-menu
--> The menu starts, yippeh!
Hope that helped somebody else!