<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PRESOON.COM &#187; Installation</title>
	<atom:link href="http://presoon.com/blog/category/installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://presoon.com/blog</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 03:59:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install CSF Firewall on virtuozzo &#8211; Cannot enter into server after CSF installation VPS</title>
		<link>http://presoon.com/blog/2010/03/14/how-to-install-csf-firewall-on-virtuozzo-cannot-enter-into-server-after-csf-installation-vps/</link>
		<comments>http://presoon.com/blog/2010/03/14/how-to-install-csf-firewall-on-virtuozzo-cannot-enter-into-server-after-csf-installation-vps/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 23:03:04 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cannot access vps after csf installation]]></category>
		<category><![CDATA[csf in vps]]></category>
		<category><![CDATA[iptables modules]]></category>
		<category><![CDATA[virtuzzo]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=186</guid>
		<description><![CDATA[CSF is a powerful Firewall for Linux and cPanel servers are here are the steps to get it working with Virtuozzo VPS
Installation
rm -fv csf.tgz
wget http://www.configserver.com/free/csf.tgz
tar -xzf csf.tgz
cd csf
sh install.sh
After the installation you will need to customize CSF to run on VPS:
edit /etc/sysconfig/iptables and add
-A FORWARD -j ACCEPT -p all -s 0/0 -i venet0
-A FORWARD -j [...]]]></description>
			<content:encoded><![CDATA[<p>CSF is a powerful Firewall for Linux and cPanel servers are here are the steps to get it working with Virtuozzo VPS</p>
<p><strong>Installation</strong></p>
<pre><code>rm -fv csf.tgz
wget http://www.configserver.com/free/csf.tgz
tar -xzf csf.tgz
cd csf
sh install.sh</code></pre>
<p><strong>After the installation you will need to customize CSF to run on VPS:</strong></p>
<p>edit /etc/sysconfig/iptables and add</p>
<pre><code>-A FORWARD -j ACCEPT -p all -s 0/0 -i venet0
-A FORWARD -j ACCEPT -p all -s 0/0 -o venet0
-A INPUT -i venet0 -j ACCEPT
-A OUTPUT -o venet0 -j ACCEPT</code></pre>
<p>create file /etc/csf/csfpre.sh and enter all the extra rules directly into it prefixed with &#8220;iptables&#8221; so the contents of that file should look something like:</p>
<pre><code>iptables -A INPUT -i venet0 -j ACCEPT
iptables -A OUTPUT -o venet0 -j ACCEPT
iptables -A FORWARD -j ACCEPT -p all -s 0/0 -i venet0
iptables -A FORWARD -j ACCEPT -p all -s 0/0 -o venet0</code></pre>
<p>edit /etc/csf/csf.conf file and add<br />
and search for</p>
<pre><code>ETH_DEVICE = ""

change to

ETH_DEVICE = "venet+"</code></pre>
<p>Restart</p>
<pre><code>/usr/sbin/csf -r</code></pre>
<p><strong>LOCKOUT ISSUES FOR CSF WHEN INSTALLED IN VPS. or  Cannot enter into server after CSF installation on VPS</strong></p>
<p>If the required IP table modules are not properly loaded to the container node, you may lockout yourself after the installation. If you have access to the main Hardware node, you can perform the following to get it up or ask your VPS provider to perform this on the Hardware (main) node.</p>
<p>Before enabling iptables on VPS, it needs to make sure that the iptables modules are enabled on the Hardware Node. In order to enable iptables modules on Hardware Node, edit /etc/sysconfig/iptables-config file on a Virtuozzo hardware node and look for the following parameter value: IPTABLES_MODULES=.  Edit it as the following.</p>
<pre><code>IPTABLES_MODULES=”ipt_REJECT ipt_tos ipt_TOS ipt_LOG ip_conntrack ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS ipt_tcpmss ipt_ttl ipt_length ipt_state iptable_nat ip_nat_ftp”</code></pre>
<p>Also edit /etc/sysconfig/vz file on a hardware node and look for the following parameter value: IPTABLES= , change it to the following.</p>
<pre><code>IPTABLES=”ipt_REJECT ipt_tos ipt_TOS ipt_LOG ip_conntrack ipt_limit ipt_multiport iptable_filter iptable_mangle ipt_TCPMSS ipt_tcpmss ipt_ttl ipt_length ipt_state iptable_nat ip_nat_ftp” </code></pre>
<p>Now your Hardware node is fine. You need to enable the iptable modules to the VPS nodes.<br />
(CID &#8212; container ID. You can find the value for each node by using the command vzlist -a)</p>
<pre><code>vzctl stop CID

vzctl set CID --iptables ipt_REJECT --iptables ipt_tos --iptables ipt_TOS --iptables ipt_LOG --iptables ip_conntrack --iptables ipt_limit --iptables ipt_multiport --iptables iptable_filter --iptables iptable_mangle --iptables ipt_TCPMSS --iptables ipt_tcpmss --iptables ipt_ttl --iptables ipt_length  --iptables ipt_state --iptables iptable_nat --iptables ip_nat_ftp --save

vzctl set CID --numiptent 2000 --save

vzctl start CID</code></pre>
<p>Now try entering into your node and restart CSF. It should start working fine.</p>
<p><strong>Descriptions and Functions</strong></p>
<p>======================</p>
<p><strong>csf+lfd  works on all Linux servers on the Operating Systems listed above, with or without cPanel</strong></p>
<p>This suite of scripts provides:</p>
<ul>
<li>Straight-forward SPI iptables firewall script</li>
<li>Daemon process that checks for login authentication failures for:
<ul>
<li>Courier imap, Dovecot, uw-imap, Kerio</li>
<li>openSSH</li>
<li>cPanel, WHM, Webmail (cPanel servers only)</li>
<li>Pure-pftd, vsftpd, Proftpd</li>
<li>Password protected web pages (htpasswd)</li>
<li>Mod_security failures (v1 and v2)</li>
<li>Suhosin failures</li>
<li>Exim SMTP AUTH</li>
<li>Custom login failures with separate log file and regular expression matching</li>
</ul>
</li>
<li>POP3/IMAP login tracking to enforce logins per hour</li>
<li>SSH login notification</li>
<li>SU login notification</li>
<li>Excessive connection blocking</li>
<li>WHM  configuration interface  (cPanel servers only) or through Webmin</li>
<li>WHM iptables report log  (cPanel servers only)</li>
<li>Easy upgrade between versions from within WHM  (cPanel servers only) or through Webmin</li>
<li>Easy upgrade between versions from shell</li>
<li>A  standard Webmin Module to configure csf is included in the distribution ready to install into Webmin &#8211; csfwebmin.tgz</li>
<li>Pre-configured to work on a cPanel server with all the standard cPanel ports open (cPanel servers only)</li>
<li>Auto-configures the SSH port if it&#8217;s non-standard on installation</li>
<li>Block traffic on unused server IP addresses &#8211; helps reduce the risk to your server</li>
<li>Alert when end-user scripts sending excessive emails per hour &#8211; for identifying spamming scripts</li>
<li>Suspicious process reporting &#8211; reports potential exploits running on the server</li>
<li>Excessive  user processes reporting</li>
<li>Excessive  user process usage reporting and optional termination</li>
<li>Suspicious file reporting &#8211; reports potential exploit files in /tmp and similar directories</li>
<li>Directory and file watching &#8211; reports if a watched directory or a file changes</li>
<li>Block traffic on the <a href="http://www.dshield.org/block_list_info.php" target="_blank">DShield Block List</a> and the <a href="http://www.spamhaus.org/drop/index.lasso" target="_blank">Spamhaus DROP List</a></li>
<li>BOGON packet protection</li>
<li>Pre-configured settings for Low, Medium or High firewall security (cPanel servers only)</li>
<li>Works with multiple ethernet devices</li>
<li>Server Security Check &#8211; Performs a basic security and settings check on the server (cPanel servers only)</li>
<li>Allow Dynamic	DNS IP addresses &#8211; always allow  your IP address even if it changes whenever you connect to the internet</li>
<li>Alert sent if server load average remains high for a specified length of time</li>
<li>mod_security log reporting (if installed)</li>
<li>Email relay tracking &#8211; tracks all email sent through the server  and issues alerts for excessive usage (cPanel servers only)</li>
<li>IDS (Intrusion Detection System) &#8211; the last line of detection alerts you to changes to system and application binaries</li>
<li>SYN Flood protection</li>
<li>Ping of death protection</li>
<li>Port Scan tracking and blocking</li>
<li>Permanent <em>and</em> Temporary (with TTL) IP blocking</li>
<li>Exploit checks</li>
<li>Account modification tracking &#8211; sends alerts if an account entry is modified, e.g. if the password is changed or the login shell</li>
<li>Shared syslog aware</li>
<li><span class="style1">New in v4: </span> Messenger Service &#8211; Allows you to redirect connection requests from blocked IP addresses to preconfigured text and html pages to inform the visitor that they have been blocked in the firewall. This can be particularly useful for those with a large user base and help process support requests more efficiently</li>
<li><span class="style1">New in v4: </span> Country Code blocking &#8211; Allows you to deny or allow access by country &#8211; <a href="http://www.ipdeny.com/" target="_blank">Powered by IPDENY.COM IP database</a></li>
<li><span class="style1">New in v4: </span> Port Flooding Detection &#8211; Per IP, per Port connection flooding detection and mitigation to help block DOS attacks</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2010/03/14/how-to-install-csf-firewall-on-virtuozzo-cannot-enter-into-server-after-csf-installation-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHP-MemCache Module On CentOS 5.0 + RHEL</title>
		<link>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/</link>
		<comments>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 09:57:48 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[pecl]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=74</guid>
		<description><![CDATA[Download
wget http://pecl.php.net/get/memcache-2.1.2.tgz
tar -zxf memcache-2.1.2.tgz
cd memcache-2.1.2
phpize &#038;&#038;
./configure &#8211;enable-memcache
make
make install 
This should create memcache.so in your extenstion directory (/usr/lib/php/modules)
If it is not done copy the file memcache.so to the default module directory.
locate your php.ini file
php -i&#124; grep php.ini
add the line
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
extension=memcache.so
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Restart Apache
/etc/rc.d/init.d/httpd restart
check the module is working
php -i&#124; grep memcache.
should show something like
=============
memcache
memcache support => enabled
memcache.allow_failover => 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Download</p>
<p>wget http://pecl.php.net/get/memcache-2.1.2.tgz<br />
tar -zxf memcache-2.1.2.tgz<br />
cd memcache-2.1.2</p>
<p>phpize &#038;&#038;<br />
./configure &#8211;enable-memcache<br />
make<br />
make install </p>
<p>This should create memcache.so in your extenstion directory (/usr/lib/php/modules)</p>
<p>If it is not done copy the file memcache.so to the default module directory.<br />
locate your php.ini file</p>
<p>php -i| grep php.ini</p>
<p>add the line</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
extension=memcache.so<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Restart Apache</p>
<p>/etc/rc.d/init.d/httpd restart</p>
<p>check the module is working<br />
php -i| grep memcache.</p>
<p>should show something like</p>
<p>=============<br />
memcache<br />
memcache support => enabled<br />
memcache.allow_failover => 1 => 1<br />
memcache.chunk_size => 8192 => 8192<br />
memcache.default_port => 11211 => 11211<br />
memcache.max_failover_attempts => 20 => 20<br />
Registered save handlers => files user memcache<br />
OLDPWD => /usr/local/src/ezsmsupport/memcache-2.1.2<br />
=============</p>
<p>Also, you can find it in your phpinfo page.<br />
Thats all.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2009/01/17/install-php-memcache-module-on-centos-50-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/usr/java/jdkX.X.X_Xbin/java: not found + Install Java on Linux servers</title>
		<link>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/</link>
		<comments>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 14:50:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Centos]]></category>
		<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java binary path]]></category>
		<category><![CDATA[JSDK]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=70</guid>
		<description><![CDATA[In some cases, the 3rd parts scripts in server requires java to be installed. It may not work properly if the binary of java installed in the server. You need to install JavaSDK
So we present here the installation of Java in Linux server.
Its as easy as you run upcp in a Cpanel server.
Download the installation [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases, the 3rd parts scripts in server requires java to be installed. It may not work properly if the binary of java installed in the server. You need to install JavaSDK</p>
<p>So we present here the installation of Java in Linux server.</p>
<p>Its as easy as you run upcp in a Cpanel server.</p>
<p>Download the installation binary from Sun&#8217;s Java site</p>
<p>J2SE for Linux <span class="external free">http://java.sun.com/j2se/1.4.2/download.html.( Download J2SE SDK)</span></p>
<p>You may need to register at the site and then they will send you the download link. Download the non-rpm binary</p>
<p><em>cd /usr/local/src/ </em></p>
<p><em>wget thebinary</em></p>
<p><em>mv j2sdk-1_4_2_18-linux-i586.bin /usr/local/</em></p>
<p><em>cd /usr/local/</em></p>
<p><em>chmod 755 j2sdk-1_4_2_18-linux-i586.bin</em></p>
<p><em>./j2sdk-1_4_2_18-linux-i586.bin</em></p>
<p>Now setup the environment variables.</p>
<p><em>JAVA_HOME=/usr/local/j2sdk1.4.2_18</em></p>
<p><em>export JAVA_HOME</em></p>
<p>Also, you need to add these in the file /etc/profile.</p>
<p><em>JAVA_HOME=/usr/local/j2sdk1.4.2_18</em></p>
<p><em>export JAVA_HOME</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/19/usrjavajdkxxx_xbinjava-not-found-install-java-on-linux-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ioncube Installation</title>
		<link>http://presoon.com/blog/2008/10/19/ioncube-installation/</link>
		<comments>http://presoon.com/blog/2008/10/19/ioncube-installation/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 14:29:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[cpanel ioncube]]></category>
		<category><![CDATA[ioncube]]></category>
		<category><![CDATA[php ioncube]]></category>
		<category><![CDATA[recompile php]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=69</guid>
		<description><![CDATA[Ioncube is easy to install without recompiling PHP. Specifically in cpanel servers you can install Ioncube without recompiling PHP.
These steps can be used to install in any Linux servers..
Check the architecture.
uname -i
cat /etc/redhat-release
Download the source from the link
http://downloads2.ioncube.com/loader_downloads/
For i316 architecture linux server select
ioncube_loaders_lin_x86.tar.gz

2. Installation
cd /usr/local/src/
wget http://downloads2.ioncube.com/loader_downloads/&#60;source&#62;.tar.gz
tar zxvff &#60;source&#62;.tar.gz 
mv ioncube /usr/local
Locate you php.ini file using [...]]]></description>
			<content:encoded><![CDATA[<p>Ioncube is easy to install without recompiling PHP. Specifically in cpanel servers you can install Ioncube without recompiling PHP.</p>
<p>These steps can be used to install in any Linux servers..</p>
<p>Check the architecture.</p>
<p><em>uname -i</em></p>
<p><em>cat /etc/redhat-release</em></p>
<p>Download the source from the link</p>
<pre>http://downloads2.ioncube.com/loader_downloads/</pre>
<p>For i316 architecture linux server select</p>
<pre>ioncube_loaders_lin_x86.tar.gz
</pre>
<p>2. Installation</p>
<p><em>cd /usr/local/src/</em></p>
<p><em>wget http://downloads2.ioncube.com/loader_downloads/&lt;source&gt;.tar.gz</em></p>
<p><em>tar zxvff &lt;source&gt;.tar.gz </em></p>
<p><em>mv ioncube /usr/local</em></p>
<p>Locate you php.ini file using the command</p>
<p><em>php -i | grep php.ini</em></p>
<p>open up the php.ini file using any editors, find the &#8220;zend_extension&#8221; and add the line</p>
<p><strong>zend_extension=/usr/local/ioncube/ioncube_loader_lin_x.x.so</strong></p>
<p>Don&#8217;t forget to replace x.x with the php verision. For example you have php version 5.2.6, replace the x.x with 5.2.</p>
<p>Restart Apache</p>
<p><em>/etc/rc.d/init.d/httpd restart</em></p>
<p>Test it</p>
<p><em>php -v</em></p>
<p>It should show Ioncube.</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/10/19/ioncube-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Python in linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 09:08:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=46</guid>
		<description><![CDATA[Easy&#8230;..
cd /usr/local/src
wget http://www.python.org/ftp/python/2.5/Python-2.5.tgz
tar -zxvf Python-2.5.tgz
make
make install
]]></description>
			<content:encoded><![CDATA[<p>Easy&#8230;..</p>
<p><em>cd /usr/local/src<br />
wget http://www.python.org/ftp/python/2.5/Python-2.5.tgz<br />
tar -zxvf Python-2.5.tgz<br />
make<br />
make install</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-python-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Mod_Python in Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 09:05:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[mod_Python]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=45</guid>
		<description><![CDATA[Both instruction for Apache 1.x and Apache 2.x are given below.
First, you need to check what version of Python you are running. 
python -V
If you are running Apache 1.3.x, you should use mod_python version 2.7.11 and for Apache 2.2.x, use 3.3.1.
Python with  version 2.1.x greater than are only supported
latest is to use Python2.5.5
The step [...]]]></description>
			<content:encoded><![CDATA[<p>Both instruction for Apache 1.x and Apache 2.x are given below.</p>
<p>First, you need to check what version of Python you are running. </p>
<p><em>python -V</em></p>
<p>If you are running Apache 1.3.x, you should use mod_python version 2.7.11 and for Apache 2.2.x, use 3.3.1.</p>
<p>Python with  version 2.1.x greater than are only supported<br />
latest is to use Python2.5.5</p>
<p>The step are for Apache 1.3.x. However, for Apache 2.1.x download mod_python 3.3.1 and follow the same steps</p>
<p>   <em> cd /usr/local/src<br />
    wget http://www.trieuvan.com/apache/httpd/modpython/mod_python-2.7.11.tgz<br />
    tar -xvzf mod_python-2.7.11.tgz<br />
    cd mod_python-2.7.11</p>
<p>    ./configure –with-apxs=/usr/local/apache/bin/apxs –with-python=/usr/local/bin/python</em></p>
<p>The –with-python path should reflect the location of the python binary</p>
<p> If you are on Apache 1.3, follow the steps below. If not, go for make and make install.</p>
<p>                    <em>vi src/Makefile</em><br />
                   Locate the ‘CFLAGS’ line, and add the -DEAPI switch so it looks like this:<br />
                  <em>CFLAGS=$(OPT) $(INCLUDES) -DEAPI</em></p>
<p>                  Then add -lutil to the LIBS line like so:<br />
         <em> LIBS=-lm /usr/local/src/Python-2.5.1/libpython2.5.a -lutil</em></p>
<p>Run the <em>make</em> and <em>make install.</em></p>
<p>This should be done. for both Apache versions.</p>
<p>Edit httpd.conf and create your handlers. </p>
<p>Apache 1.3.x<br />
   <em> LoadModule python_module libexec/mod_python.so<br />
    AddModule mod_python.c<br />
    AddHandler mod_python .psp .py</em></p>
<p>Apache 2.1.x<br />
<em>LoadModule python_module modules/mod_python.so<br />
AddHandler mod_python .psp .py</em></p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-mod_python-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install docutils in Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 08:20:31 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[docutils]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=44</guid>
		<description><![CDATA[Download manually the docutils tar gz from http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download
cd /usr/local/src/
wget http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download
sudo easy_install /pathto/docutils-0.4.tar.gz
  
]]></description>
			<content:encoded><![CDATA[<p>Download manually the docutils tar gz from http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download</p>
<p><em>cd /usr/local/src/<br />
wget http://prdownloads.sourceforge.net/docutils/docutils-0.4.tar.gz?download</p>
<p>sudo easy_install /pathto/docutils-0.4.tar.gz</em></p>
<p> <img src='http://presoon.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-docutils-in-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Python Imaging Library    PIL  on Linux server</title>
		<link>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/</link>
		<comments>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 08:17:40 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[PIL]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=43</guid>
		<description><![CDATA[Python Imaging Library (PIL)
Make sure Python is installed.
 Prerequisites.
   If you need any of the features described below, make sure you
   have the necessary libraries before building PIL.
   feature              library
   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
   JPEG [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Python Imaging Library (PIL)</strong></p>
<p>Make sure Python is installed.</p>
<p> Prerequisites.</p>
<p>   If you need any of the features described below, make sure you<br />
   have the necessary libraries before building PIL.</p>
<p>   feature              library<br />
   &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
   JPEG support         libjpeg (6a or 6b)</p>
<p>http://www.ijg.org</p>
<p>http://www.ijg.org/files/jpegsrc.v6b.tar.gz</p>
<p>                        ftp://ftp.uu.net/graphics/jpeg/</p>
<p>   PNG support          zlib (1.1.4 or later is recommended)</p>
<p>http://www.gzip.org/zlib/</p>
<p>   OpenType/TrueType    freetype2 (2.1.3 or later is recommended)<br />
   support</p>
<p>http://www.freetype.org</p>
<p>http://freetype.sourceforge.net</p>
<p><strong>Installation </strong></p>
<p>Make sure Python is installed.</p>
<p>Then go for</p>
<p><em>wget http://effbot.org/downloads/Imaging-1.1.6.tar.gz<br />
tar -zxf Imaging-1.1.6.tar.gz<br />
cd Imaging-1.1.6/</p>
<p>python setup.py install</em></p>
<p>Thant&#8217;s all</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/29/how-to-install-python-imaging-library-pil-on-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jmorecfg.h</title>
		<link>http://presoon.com/blog/2008/04/26/jmorecfgh/</link>
		<comments>http://presoon.com/blog/2008/04/26/jmorecfgh/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 09:36:12 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jmorecfg.h]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=40</guid>
		<description><![CDATA[If this header file is not found when you give make for  gd installation download it 
===================
wget http://www.ece.cmu.edu/~ece796/project99/7/final/code/jmorecfg.h
mv jmorecfg.h /usr/lib/
===================
===================
updatedb
===================
or
===================
ldconfig
===================
]]></description>
			<content:encoded><![CDATA[<p>If this header file is not found when you give make for  gd installation download it </p>
<p>===================<br />
wget http://www.ece.cmu.edu/~ece796/project99/7/final/code/jmorecfg.h</p>
<p>mv jmorecfg.h /usr/lib/<br />
===================</p>
<p>===================<br />
updatedb<br />
===================<br />
or<br />
===================<br />
ldconfig<br />
===================</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/26/jmorecfgh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jpeglib.h</title>
		<link>http://presoon.com/blog/2008/04/26/jpeglibh/</link>
		<comments>http://presoon.com/blog/2008/04/26/jpeglibh/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 09:34:22 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[jpeglib.h]]></category>

		<guid isPermaLink="false">http://presoon.com/blog/?p=38</guid>
		<description><![CDATA[If this header file is not found when you give make for  gd installation download it 
===================
wget http://dev.w3.org/cvsweb/Amaya/libjpeg/jpeglib.h?rev=1.2
mv jpeglib.h?rev=1.2 /usr/lib/
===================
===================
updatedb
===================
or
===================
ldconfig
===================
]]></description>
			<content:encoded><![CDATA[<p>If this header file is not found when you give make for  gd installation download it </p>
<p>===================<br />
wget http://dev.w3.org/cvsweb/Amaya/libjpeg/jpeglib.h?rev=1.2</p>
<p>mv jpeglib.h?rev=1.2 /usr/lib/<br />
===================</p>
<p>===================<br />
updatedb<br />
===================<br />
or<br />
===================<br />
ldconfig<br />
===================</p>
]]></content:encoded>
			<wfw:commentRss>http://presoon.com/blog/2008/04/26/jpeglibh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
