<?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>skyrider.biz &#187; Linux Software</title>
	<atom:link href="http://www.skyrider.biz/category/software-for-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.skyrider.biz</link>
	<description>Fun, Entertainment, Blog, IT, Open Source, Linux, Windows, Antivirus, Malware, Webhosting, Webdesign</description>
	<lastBuildDate>Thu, 19 Jan 2012 16:52:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Using nginx to accelerate Apache on Cpanel server</title>
		<link>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/</link>
		<comments>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 23:27:15 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=14523</guid>
		<description><![CDATA[Nginx - the small, lightning fast and very efficient web server is usually used to serve static content or as a reverse proxy/load balancer for the Apache or other relatively slow backends. So it would be natural to use nginx as a frontend for Cpanel&#8217;s Apache. It would save a substantial amount of memory and CPU<a class="rmore" href="http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nginx.net/" target="_blank">Nginx</a> - the small, lightning fast and very efficient web server is usually used to serve static content or as a reverse proxy/load balancer for the Apache or other relatively slow backends. So it would be natural to use nginx as a frontend for Cpanel&#8217;s Apache. It would save a substantial amount of memory and CPU time usually sucked by the numerous Apache children spoonfeeding content to the clients.</p>
<p>I always had this in mind, but until recently had no time to look closely at implementing it. Then I saw a forum post with a sample script for generating the nginx configuration file based on Cpanel account info, and then an onslaught of visitors on a shared Cpanel server I admin slowed it to a crawl, and I was forced to delve into the innards of Cpanel. As a result of this investigation I wrote the &#8220;nginx on Cpanel&#8221; HOWTO presented below.</p>
<hr />
<p>&nbsp;</p>
<h3>Installing Apache module</h3>
<p>First of all, when nginx is used as a reverse proxy to Apache, the visitors&#8217; IPs received by Apache are wrong &#8211; all requests to Apache come from nginx, so the main server IP will be logged.<br />
To make Apache log the real IPs of the visitors instead of the main server IP, a special Apache module (<a href="http://stderr.net/apache/rpaf/" target="_blank">mod_rpaf</a>) is needed.<br />
Download, untar, cd to the newly created directory and run this command as root:<br />
<strong>/usr/local/apache/bin/apxs -i -c -n mod_rpaf-2.0.so mod_rpaf-2.0.c</strong><br />
That will install the module into the Apache module directory.</p>
<p>Then go to WHM, <strong>Main &gt;&gt; Service Configuration &gt;&gt; Apache Configuration &gt; Include Editor &gt; Pre Main Include</strong> and add this section there, replacing <strong>LIST_OF_YOUR_IPS</strong> with the list of IP addresses managed by Cpanel:</p>
<fieldset>
<pre>LoadModule rpaf_module modules/mod_rpaf-2.0.so 

RPAFenable On
# Enable reverse proxy add forward
RPAFproxy_ips 127.0.0.1 <strong>LIST_OF_YOUR_IPS</strong>
# which ips are forwarding requests to us
RPAFsethostname On
# let rpaf update vhost settings
# allows to have the same hostnames as in the "real"
# configuration for the forwarding Apache
RPAFheader X-Real-IP
# Allows you to change which header mod_rpaf looks
# for when trying to find the ip the that is forwarding
# our requests</pre>
</fieldset>
<h3>Apache configuration changes</h3>
<p>Then we need to move Apache to another port, let&#8217;s take 81 for example. You can simply edit it in the &#8220;Tweak Settings&#8221; page in WHM, replacing <em>0.0.0.0:80</em> with <em>0.0.0.0:81</em> or, doing it command line way, edit <strong>/var/cpanel/cpanel.config</strong> and change port 80 in <em>apache_port</em> assignment to 81:</p>
<pre>apache_port=0.0.0.0:81</pre>
<p>Run <strong>/usr/local/cpanel/whostmgr/bin/whostmgr2 &#8211;updatetweaksettings</strong> as advised at the top of that file.<br />
Check <strong>/usr/local/apache/conf/httpd.conf</strong> for any occurences of port 80, and run <strong>/scripts/rebuildhttpdconf</strong> to make sure httpd.conf is up to date.</p>
<p>It also makes sense to reduce the number of Apache children, as nginx will take care of spoonfeeding the data to the clients connecting via the slow network links, freeing Apache children to do their backend work. Edit<strong>/usr/local/apache/conf/httpd.conf</strong> and replace <em>prefork.c</em> section with this (note that I used very modest values here, and your mileage may vary):</p>
<fieldset>
<pre>&lt;IfModule prefork.c&gt;
    StartServers 5
    MinSpareServers 2
    MaxSpareServers 5
    MaxClients 50
    MaxRequestsPerChild 0
&lt;/IfModule&gt;</pre>
</fieldset>
<p>Run <strong>/usr/local/cpanel/bin/apache_conf_distiller &#8211;update &#8211;main</strong> to pick up the changes, and then<strong>/scripts/rebuildhttpdconf</strong> to make sure your changes are in.<br />
Note that you will need to watch Apache extended server status at the peak load times to have an idea how many Apache children your server needs by default.</p>
<p>You&#8217;ll also need to update the Apache port in <strong>/etc/chkserv.d/httpd</strong> and restart chksrvd with <strong>/etc/init.d/chksrvd restart</strong></p>
<h3>Generating nginx config files</h3>
<p>The final step &#8211; we have to build the nginx config file based on the domains hosted on your server.<br />
It is done by the simple script which will generate two configuration files for nginx &#8211; main one here:<strong>/usr/local/nginx/conf/nginx.conf</strong> and the include file with all virtual hosts: <strong>/usr/local/nginx/conf/vhost.conf</strong></p>
<fieldset>
<pre>#!/bin/sh

cat &gt; "/usr/local/nginx/conf/nginx.conf" &lt;&lt;EOF
user  nobody;
# no need for more workers in the proxy mode
worker_processes  1;

error_log  logs/error.log info;

worker_rlimit_nofile  8192;

events {
 worker_connections  512; # increase for more busy servers
 use rtsig; # you should use epoll here for Linux kernels 2.6.x
}

http {
 server_names_hash_max_size 2048;

 include    mime.types;
 default_type  application/octet-stream;

 sendfile on;
 tcp_nopush on;
 tcp_nodelay on;

 keepalive_timeout  10;

 gzip on;
 gzip_min_length  1100;
 gzip_buffers  4 32k;
 gzip_types    text/plain text/html application/x-javascript text/xml text/css;
 ignore_invalid_headers on;

 client_header_timeout  3m;
 client_body_timeout 3m;
 send_timeout     3m;
 connection_pool_size  256;
 client_header_buffer_size 4k;
 large_client_header_buffers 4 32k;
 request_pool_size  4k;
 output_buffers   4 32k;
 postpone_output  1460;

 include "/usr/local/nginx/conf/vhost.conf";
}

EOF

/bin/cp /dev/null /usr/local/nginx/conf/vhost.conf

cd /var/cpanel/users
for USER in *; do
 for DOMAIN in `cat $USER | grep ^DNS | cut -d= -f2`; do
  IP=`cat $USER|grep ^IP|cut -d= -f2`;
  ROOT=`grep ^$USER: /etc/passwd|cut -d: -f6`;
  echo "Converting $DOMAIN for $USER";

  cat &gt;&gt; "/usr/local/nginx/conf/vhost.conf" &lt;&lt;EOF
   server {
  access_log off;

  error_log  logs/vhost-error_log warn;
  listen    80;
  server_name  $DOMAIN www.$DOMAIN;

  # uncomment location below to make nginx serve static files instead of Apache
  # !WARNING!
  # it will make the bandwidth accounting incorrect as these files won't be logged!
  #location ~* \.(gif|jpg|jpeg|png|wmv|avi|mpg|mpeg|mp4|htm|html|js|css)$ {
  # root   $ROOT/public_html;
  #}

  location / {
   client_max_body_size    10m;
   client_body_buffer_size 128k;

   proxy_send_timeout   90;
   proxy_read_timeout   90;

   proxy_buffer_size    4k;
   # you can increase proxy_buffers here to suppress "an upstream response
   #  is buffered to a temporary file" warning
   proxy_buffers     16 32k;
   proxy_busy_buffers_size 64k;
   proxy_temp_file_write_size 64k;

   proxy_connect_timeout 30s;

   proxy_redirect  http://www.$DOMAIN:81   http://www.$DOMAIN;
   proxy_redirect  http://$DOMAIN:81   http://$DOMAIN;

   proxy_pass   http://$IP:81/;

   proxy_set_header   Host   \$host;
   proxy_set_header   X-Real-IP  \$remote_addr;
   proxy_set_header   X-Forwarded-For \$proxy_add_x_forwarded_for;
  }
 }
EOF
 done
done</pre>
</fieldset>
<p>Run <strong>/usr/local/nginx/sbin/nginx -t</strong> to check the configuration, and then <strong>/usr/local/nginx/sbin/nginx</strong> to start nginx. You are set!</p>
<p>If you don&#8217;t care about the bandwidth consumed by the virtual hosts and are willing to lose the correct bandwidth calculation over the increased server performance, you can uncomment the &lt;location&gt; lines below the WARNING comment and watch the server picking up the speed. Beware of the two gotchas here: the sub domains most likely will not work as they have document root pointed to a different place, and as nginx doesn&#8217;t support .htaccess files for the performance reasons, they won&#8217;t be obeyed for the file types listed.</p>
<p>Obviously, the config file must be regenerated every time a new domain is added. The deleted and suspended domains should work just fine though.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/using-nginx-to-accelerate-apache-on-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install mod_pagespeed in Apache for Cpanel</title>
		<link>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/</link>
		<comments>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 22:00:50 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>
		<category><![CDATA[Server Administration]]></category>

		<guid isPermaLink="false">http://www.skyrider.biz/?p=12057</guid>
		<description><![CDATA[From mod_pagespeed’s docs, I quote: mod_pagespeed is an open-source Apache module that automatically optimizes web pages and resources on them. It does this by rewriting the resources using filters that implement web performance best practices. Webmasters and web developers can use mod_pagespeed to improve the performance of their web pages when serving content with the Apache<a class="rmore" href="http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>From mod_pagespeed’s <a href="http://code.google.com/speed/page-speed/docs/module.html" target="_blank">docs</a>, I quote:</p>
<blockquote><p><strong>mod_pagespeed</strong> is an open-source Apache module that automatically optimizes web pages and resources on them. It does this by rewriting the resources using filters that implement web performance best practices. Webmasters and web developers can use mod_pagespeed to improve the performance of their web pages when serving content with the Apache HTTP Server.</p>
<p>mod_pagespeed includes several filter that optimize JavaScript, HTML and CSS stylesheets. It also includes filters for optimizing JPEG and PNG images. The filters are based on a set of best practices known to enhance web page performance. Webmasters who set up mod_pagespeed in addition to configuring proper caching and compression on their Apache distribution should expect to see an improvement in the loading time of the pages on their websites.</p></blockquote>
<p>Sounds interesting. Mod_pagespeed is brand new, and running it with Apache on a Cpanel server is a very easy task. While you can follow the instructions mentioned <a href="http://code.google.com/p/modpagespeed/wiki/HowToBuild" target="_blank">here</a> to build from source, you can also use the binary.</p>
<p>But then, it fails to install correctly on a Cpanel server as it requires httpd package. Still, we can extract the files from the binary and copy it over to the necessary paths to get it up and running in a few minutes time <img src="http://www.technomenace.com/wp-includes/images/smilies/icon_smile.gif" alt="icon smile Install mod pagespeed in Apache for Cpanel"  title="Install mod pagespeed in Apache for Cpanel" /> This is how I did it on a Apache v2.2 + CPanel server running on CentOS 5.5 (32-bit):</p>
<blockquote>
<pre> <strong>cd /usr/src</strong>
 <strong>wget https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_i386.rpm</strong></pre>
<pre>For 64 bit use this link ! 
<a rel="nofollow" href="https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_x86_64.rpm">https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-beta_current_x86_64.rpm</a></pre>
<pre> <strong>mkdir mod-pagespeed</strong>
 <strong>cd mod-pagespeed</strong>
<strong>rpm2cpio ../mod-pagespeed-beta_current_i386.rpm | cpio -idmv</strong>
./etc/cron.daily/mod-pagespeed
./etc/httpd/conf.d/pagespeed.conf
./usr/lib/httpd/modules/mod_pagespeed.so
./var/mod_pagespeed/cache
./var/mod_pagespeed/files
3135 blocks
 <strong>cp ./etc/httpd/conf.d/pagespeed.conf /usr/local/apache/conf/</strong>
 <strong>cp ./usr/lib/httpd/modules/mod_pagespeed.so /usr/local/apache/modules/</strong>
 <strong>chmod 755 /usr/local/apache/modules/mod_pagespeed.so</strong>
 <strong>mkdir /var/mod_pagespeed/{cache,files} -p</strong>
 <strong>chown nobody:nobody /var/mod_pagespeed/*</strong></pre>
</blockquote>
<p><strong>Mod_pagespeed</strong> needs <strong>mod_deflate</strong> to be loaded in Apache. If it is not yet installed, you can just include the same from apache source, like:<span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> <strong>/usr/local/apache/bin/apxs -c -i /home/cpeasyapache/src/httpd-2.2.14/modules/filters/mod_deflate.c</strong></span></p>
<p>Now, edit <strong>/usr/local/apache/conf/pagespeed.conf</strong> and change the LoadModule lines to point to these paths:</p>
<blockquote><p>LoadModule pagespeed_module modules/mod_pagespeed.so</p>
<p># Only attempt to load mod_deflate if it hasn’t been loaded already.</p>
<p>&lt;IfModule !mod_deflate.c&gt;</p>
<p>LoadModule deflate_module modules/mod_deflate.so</p></blockquote>
<p>And finally, include pagespeed.conf in /usr/local/apache/conf/httpd.conf:</p>
<blockquote><p>Include “conf/pagespeed.conf”</p></blockquote>
<p>and then restart apache:</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; font-size: 12px; line-height: 18px; white-space: pre;"><strong>service httpd restart</strong></span></p>
<p>If everything is fine, apache will start normally and as your domains begin to get hits, you will see data being written in to /var/mod_pagespeed/*. Just a reminder that this module seems to write a lot of data in apache error log. You might need to monitor the server load and i/o stats for some time to ensure that everything is stable.</p>
<p><strong>NOTE: </strong>The above guide is strictly for 32-bit servers. If you are running on 64-bit, then you need the 64-bit package (.rpm).</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/install-mod_pagespeed-in-apache-for-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install ffmpeg with all support needed</title>
		<link>http://www.skyrider.biz/how-to-install-ffmpeg-with-all-support-needed/</link>
		<comments>http://www.skyrider.biz/how-to-install-ffmpeg-with-all-support-needed/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:08:24 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=680</guid>
		<description><![CDATA[Ok .. I&#8217;l show you how ti install FFmpeg, Mplayer, mencoder and other support for a tube server.. First of all, i made folder named convert # mkdir convert Then go to that folder # cd convert Now we have to get all stuff needed&#8230; wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2 wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg svn checkout<a class="rmore" href="http://www.skyrider.biz/how-to-install-ffmpeg-with-all-support-needed/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>Ok .. I&#8217;l show you how ti install FFmpeg, Mplayer, mencoder and other support for a tube server..</p>
<p>First of all, i made folder named convert<br />
# mkdir convert</p>
<p>Then go to that folder<br />
# cd convert</p>
<p>Now we have to get all stuff needed&#8230;</p>
<p>wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20071007.tar.bz2<br />
wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk mplayer<br />
wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz<br />
wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz<br />
ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20091011-2245.tar.bz2</p>
<p>http://www.tortall.net/projects/yasm/releases/yasm-0.8.0.tar.gz</p>
<p>wget http://superb-west.dl.sourceforge.net/sourceforge/ffmpeg-php/ffmpeg-php-0.5.0.tbz2<br />
OK when you got the latest stuff.. we can go now&#8230;</p>
<p>First make codecs folder</p>
<p>mkdir /usr/local/lib/codecs/</p>
<p>and than unpack and move codecs&#8230;</p>
<p>tar jxvf essential-20071007.tar.bz2</p>
<p>mv /path_to/convert/essential-20071007/* /usr/local/lib/codecs/</p>
<p>Ok mplayer codecs are done.. lets make some support..</p>
<p>Lame-<br />
tar zxvf lame-3.97.tar.gz<br />
cd  lame-3.97<br />
./configure<br />
make<br />
make install</p>
<p>Libogg-</p>
<p> tar zxvf libogg-1.1.3.tar.gz<br />
cd libogg-1.1.3<br />
./configure<br />
make<br />
make install</p>
<p>yasm- (needed for x264 support )</p>
<p>tar zxvf yasm-0.8.0.tar.gz<br />
cd yasm-0.8.0<br />
./configure<br />
make<br />
make isntall</p>
<p>x264-</p>
<p>tar jxvf x264-snapshot-20091011-2245.tar.bz2<br />
cd x264-snapshot-20091011-2245<br />
./configure &#8211;enable-shared<br />
make<br />
make install</p>
<p>Libvorbis-</p>
<p> tar zxvf libvorbis-1.2.0.tar.gz<br />
 cd libvorbis-1.2.0<br />
./configure<br />
make<br />
make install</p>
<p>flvtool2  (must have ruby)</p>
<p> tar zxvf flvtool2-1.0.6.tgz<br />
ruby setup.rb config<br />
ruby setup.rb setup<br />
ruby setup.rb install</p>
<p>Install mplayer &#038; mencoder</p>
<p>cd mplayer<br />
./configure<br />
make<br />
make install</p>
<p>Install libtheora (for ogg video encoding)</p>
<p>cd libtheora-1.0beta3<br />
./configure<br />
make<br />
make install</p>
<p>Install AMR (for 3gp conversion)</p>
<p>ffmpeg</p>
<p>cd ffmpeg<br />
./configure &#8211;enable-libx264 &#8211;enable-gpl &#8211;enable-shared &#8211;enable-libfaad &#8211;enable-libxvid &#8211;enable-libopencore-amrnb &#8211;enable-libopencore-amrwb &#8211;enable-version3<br />
make<br />
make install</p>
<p>Finalize the codec setups<br />
ln -s /usr/local/lib/libavformat.so.50 /usr/lib/libavformat.so.50<br />
ln -s /usr/local/lib/libavcodec.so.51 /usr/lib/libavcodec.so.51<br />
ln -s /usr/local/lib/libavutil.so.49 /usr/lib/libavutil.so.49<br />
ln -s /usr/local/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so.0<br />
ln -s /usr/local/lib/libavformat.so.51 /usr/lib/libavformat.so.51</p>
<p>Compile FFMPEG-PHP<br />
cd ~/ffmpeg/ ffmpeg-php-0.5.0<br />
phpize<br />
./configure<br />
make<br />
make install</p>
<p> Install FFMPEG-PHP (make sure the php.ini path is correct.)<br />
echo &#8216;extension=/usr/local/lib/php/extensions/ no-debug-non-zts-20020429/ffmpeg.so&#8217; >> /usr/local/Zend/etc/php.ini</p>
<p>Restart Apache to load FFMPEG-PHP (Depends on OS, this is for RHEL/CentOS)<br />
service httpd restart</p>
<p>Verify if it works<br />
php -r &#8216;phpinfo();&#8217; | grep ffmpeg<br />
If you get a few lines such as<br />
ffmpeg<br />
ffmpeg support (ffmpeg-php) => enabled<br />
ffmpeg-php version => 0.5.0<br />
ffmpeg.allow_persistent => 0 => 0</p>
<p>Then everything is installed and working. FFMPEG, FFMPEG-PHP, MPlayer, MEncoder, flv2tool, LAME MP3 encoder &#038; libOGG.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/how-to-install-ffmpeg-with-all-support-needed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cisco Wireless Control System &#8211; Windows / Linux &#8211; ISO</title>
		<link>http://www.skyrider.biz/cisco-wireless-control-system-windows-linux-iso/</link>
		<comments>http://www.skyrider.biz/cisco-wireless-control-system-windows-linux-iso/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 08:46:12 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>
		<category><![CDATA[Windows Software]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=661</guid>
		<description><![CDATA[Cisco Wireless Control System (WCS) is the industry&#8217;s most comprehensive management platform for lifecycle management of 802.11n and 802.11a/b/g, enterprise-class wireless networks. This robust management platform delivers a cost-effective management solution that enables IT administrators to successfully plan, deploy, monitor, troubleshoot, and report on indoor and outdoor wireless networks. Cisco Wireless Control System (WCS) is<a class="rmore" href="http://www.skyrider.biz/cisco-wireless-control-system-windows-linux-iso/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://skyrider.biz/wp-content/uploads/2009/09/ce5b0df84139068e71e4daa800da72d355b3c413.jpg"><img class="aligncenter size-medium wp-image-662" title="ce5b0df84139068e71e4daa800da72d355b3c413" src="http://skyrider.biz/wp-content/uploads/2009/09/ce5b0df84139068e71e4daa800da72d355b3c413-300x243.jpg" alt="ce5b0df84139068e71e4daa800da72d355b3c413 300x243 Cisco Wireless Control System   Windows / Linux   ISO" width="300" height="243" /></a></p>
<p>Cisco Wireless Control System (WCS) is the industry&#8217;s most comprehensive management platform for lifecycle management of 802.11n and 802.11a/b/g, enterprise-class wireless networks. This robust management platform delivers a cost-effective management solution that enables IT administrators to successfully plan, deploy, monitor, troubleshoot, and report on indoor and outdoor wireless networks.</p>
<p>Cisco Wireless Control System (WCS) is the industry&#8217;s most comprehensive management platform for lifecycle management of 802.11n and 802.11a/b/g, enterprise-class wireless networks. This robust management platform delivers a cost-effective management solution that enables IT administrators to successfully plan, deploy, monitor, troubleshoot, and report on indoor and outdoor wireless networks.</p>
<p>Links<a href="http://www.2baksa.net/news/40756/"> Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/cisco-wireless-control-system-windows-linux-iso/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Python recrusion limit</title>
		<link>http://www.skyrider.biz/python-recrusion-limit/</link>
		<comments>http://www.skyrider.biz/python-recrusion-limit/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 22:19:49 +0000</pubDate>
		<dc:creator>SkyRider</dc:creator>
				<category><![CDATA[Linux Software]]></category>

		<guid isPermaLink="false">http://skyrider.biz/?p=635</guid>
		<description><![CDATA[When visiting reddit.com liked the idea and I tried to install the same application code itself to the server. The raising of this application I ran into a few problems. One problem was the RuntimeError: maximum recursion depth exceeded in cmp. To&#8217;d increased this limit I tried the following: root@test [/home/reddit/www/reddit/r2]# python &#62;&#62;&#62; import sys<a class="rmore" href="http://www.skyrider.biz/python-recrusion-limit/">&#160;&#160; Read More ...</a>]]></description>
			<content:encoded><![CDATA[<p>When visiting reddit.com liked the idea and I tried to install the same application code itself to the server. The raising of this application I ran into a few problems. One problem was the RuntimeError: maximum recursion depth exceeded in cmp.</p>
<p>To&#8217;d increased this limit I tried the following:</p>
<p>root@test [/home/reddit/www/reddit/r2]# python</p>
<p>&gt;&gt;&gt; import sys</p>
<p>&gt;&gt;&gt; sys.setrecursionlimit(1500)</p>
<p>and that is what solved my problem&#8230; interesting&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.skyrider.biz/python-recrusion-limit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

