Intel Corporation PRO/Wireless 2200BG Network Connection install on Linux Debian Etch

In order to install Intel Corporation PRO/Wireless 2200BG Network Connection network interface on debian 4.0 etch do following steps:
1)
apt-get install module-assistant
2) run module-assistant, compile and install ipw2200 module
At this point you are half way there, because you will see following error message:
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.1.2kmq
ipw2200: Copyright(c) 2003-2006 Intel Corporation
ipw2200: Detected Intel PRO/Wireless [...]

Connvert audio ogg files to mp3

The simplest way how to convert a ogg to mp3 files is to us oggdec command:
for file in *.ogg;do oggdec -o – “$file”|lame -h -V 4 –vbr-new – “$(basename “$file” .ogg).mp3″;done