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 [...]

Ubuntu-gutsy/hardy-Ethernet (nVidia MCP55 forcedeth) not working

This is a know issue in Ubuntu Linux ( gutsy , hardy ) with nVidia MCP55 Ethernet card.  This  card uses forecedeth module. forecedeth module  is loaded, network card seem to be up and running however it can not ping outside the box. Here is a quick fix for this problem, as a root [...]

Bash Script to create automatic FTP session and download file

This script automatically opens a FTP session and downloads file to local disk. Here is the scenario:
ftp: myftp.ext
username: myusername
password: mypassword
file to download: myfile.txt
1) Create bash script automatic_ftp_download.sh:
#!/bin/bash
# Script to create automatic FTP session and download file
ftp -n myftp.ext << end
us myusername mypassword
get myfile.txt
bye
end
2) make automatic_ftp_download.sh script executable:
chmod +x automatic_ftp_download.sh
3) run automatic_ftp_download.sh scrip:
./automatic_ftp_download.sh
4) find myfile.txt [...]