cd /root wget http://www.apache.org/dist/httpd/apache_1.3.23.tar.gz wget http://www.modpython.org/dist/mod_python-2.7.6.tgz wget http://www.python.org/ftp/python/2.2/Python-2.2.tgz cd /usr/src gunzip -c /root/apache_1.3.23.tar.gz | tar xv cd apache_1.3.23 pico -w src/Configuration.tmpl ./configure --prefix=/www --htdocsdir=/www/html make make install cd /usr/src gunzip -c /root/Python-2.2.tgz | tar xv cd Python-2.2 ./configure --prefix=/usr --without-threads make make install cd /usr/src gunzip -c /root/mod_python-2.7.6.tgz | tar xv cd mod_python-2.7.6 ./configure --with-apache=../apache_1.3.23 --with-apxs=/www/bin/apxs make static make install_py_lib make install_static cd /usr/src/apache_1.3.23 ./configure --with-apache=../apache_1.3.23 --with-apxs=/www/bin/apxs --activate-module=src/modules/python/libpython.a make make install