<?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>Rambles of Ev</title>
	<atom:link href="http://evsworld.selfip.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://evsworld.selfip.info</link>
	<description>Just some tid bits, other thoughts and random technical finds from me.</description>
	<lastBuildDate>Mon, 15 Mar 2010 05:54:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Kernel Packet Traveling Diagram</title>
		<link>http://evsworld.selfip.info/2010/03/kernel-packet-traveling-diagram/</link>
		<comments>http://evsworld.selfip.info/2010/03/kernel-packet-traveling-diagram/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 05:48:46 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[packet]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=407</guid>
		<description><![CDATA[    Network
                    -----------+-----------
                               [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/03/kernel-packet-traveling-diagram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kernel Upgrade For Debian &gt;= Etch</title>
		<link>http://evsworld.selfip.info/2010/03/kernel-upgrade-for-debian-etch/</link>
		<comments>http://evsworld.selfip.info/2010/03/kernel-upgrade-for-debian-etch/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:54:32 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=394</guid>
		<description><![CDATA[Upgrading the kernel to 2.6.31(couldn get 2.6.33 to work at all)  on Etch, I stumbled over this:
cc -m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -I../../include -I../../arch/x86/include -U_FORTIFY_SOURCE lguest.c -o lguest
lguest.c:21:25: error: sys/eventfd.h: No such file or directory
lguest.c: In function ‘create_thread’:
lguest.c:1021: warning: implicit declaration of function ‘eventfd’
make: *** [lguest] Error 1
This is apparenty due to the old libc-dev [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/03/kernel-upgrade-for-debian-etch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connlimit Patch + Smoothwall</title>
		<link>http://evsworld.selfip.info/2010/03/connlimit-patch-smoothwall/</link>
		<comments>http://evsworld.selfip.info/2010/03/connlimit-patch-smoothwall/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:46:02 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[patching]]></category>
		<category><![CDATA[smoothwall]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=389</guid>
		<description><![CDATA[community.smoothwall.org • View topic &#8211; How do i patch the kernel in smoothwall express Degu III?.
First, i svn&#8217;d the tree for expresscore (i had to find/install an SVN client first)

cd /usr/src
svn co https://smoothwall.svn.sourceforge.net/svnroot/smoothwall/trunk expresscore

Next i &#8220;predownloaded&#8221; all of the sources.

cd /usr/src/expresscore/distrib/build
make predownload


This gets the download&#8217;s out of the way, and should make the build a [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/03/connlimit-patch-smoothwall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blocking Torrents and Connection Limiting</title>
		<link>http://evsworld.selfip.info/2010/03/blocking-torrents-and-conenction-limiting/</link>
		<comments>http://evsworld.selfip.info/2010/03/blocking-torrents-and-conenction-limiting/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:33:16 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[connection limiting]]></category>
		<category><![CDATA[iptables]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=383</guid>
		<description><![CDATA[Here&#8217;s the sample lines for connection limiting, where br0 is the internal LAN:
# only allow 25 connections per host total, only 5
# of which can be above port 1024
/usr/sbin/iptables -I FORWARD -i br0 -p tcp &#8211;syn &#8211;dport 1: -m connlimit &#8211;connlimit-above 25 -j REJECT
/usr/sbin/iptables -I FORWARD -i br0 -p tcp &#8211;syn &#8211;dport 1024: -m connlimit [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/03/blocking-torrents-and-conenction-limiting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPTV &#8211; Tuning and Recording</title>
		<link>http://evsworld.selfip.info/2010/02/iptv-tuning-and-recording/</link>
		<comments>http://evsworld.selfip.info/2010/02/iptv-tuning-and-recording/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 03:06:58 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[IPTV]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[dvb-t]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=368</guid>
		<description><![CDATA[Listing of Digital Channels in Australia can be found here.
bash-3.1$ tzap -c /etc/channels.conf -r &#8220;ABC2&#8243;
using &#8216;/dev/dvb/adapter0/frontend0&#8242; and &#8216;/dev/dvb/adapter0/demux0&#8242;
reading channels from file &#8216;/etc/channels.conf&#8217;
tuning to 226500000 Hz
video pid 0&#215;0905, audio pid 0&#215;0906
status 00 &#124; signal 00ff &#124; snr 8000 &#124; ber 00003fff &#124; unc 00000000 &#124;
status 1f &#124; signal 002c &#124; snr ffff &#124; ber 00000000 &#124; [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/02/iptv-tuning-and-recording/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TV Tuning on Linux</title>
		<link>http://evsworld.selfip.info/2010/02/tv-tuner/</link>
		<comments>http://evsworld.selfip.info/2010/02/tv-tuner/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:14:58 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[IPTV]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=363</guid>
		<description><![CDATA[ Introduction 
Installing a TV tuner in Linux is quite simple. All you really need to do is activate the correct kernel parameters and emerge some software and it should &#8220;just work&#8221;.
Configuring the kernel 
Get into the kernel configuration as normal (i.e. cd /usr/src/linux &#38;&#38; make menuconfig).



Linux Kernel Configuration: Kernel 2.6




 Device Drivers ---&#62;
  [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/02/tv-tuner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install vmware server 2.0.x on 2.6.30 Kernels</title>
		<link>http://evsworld.selfip.info/2010/02/how-to-install-vmware-server-2-0-x-on-2-6-30-kernels/</link>
		<comments>http://evsworld.selfip.info/2010/02/how-to-install-vmware-server-2-0-x-on-2-6-30-kernels/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 05:05:15 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[patches]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=353</guid>
		<description><![CDATA[VMware Server is a free virtualization product for Windows and Linux servers with enterprise-class support and VirtualCenter management. VMware Server is a robust yet easy to use server virtualization product and is based on proven virtualization technology, which has been used by thousands of customers for many years.
First you need to download vmware server 2.0.x [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/02/how-to-install-vmware-server-2-0-x-on-2-6-30-kernels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Iptables to 1.4 on Debian Etch</title>
		<link>http://evsworld.selfip.info/2010/02/upgrading-iptables-to-1-4-on-debian-etch/</link>
		<comments>http://evsworld.selfip.info/2010/02/upgrading-iptables-to-1-4-on-debian-etch/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:56:20 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[iptables]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=348</guid>
		<description><![CDATA[I required the module connlimit to limit the number of connections on one of our Debian firewall boxes. First download the iptables-1.4.2.tar.bz2version from Netfilter.
Unpack the tarball
tar -xjvf iptables-1.4.2.tar.bz2
Change directory
cd iptables-1.4.2
configure iptables
./configure &#8211;prefix=/
if you just use ./configure then everything will be installed to /usr/local
make and install iptables
make install
After that you can check your new iptables version
iptables [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/02/upgrading-iptables-to-1-4-on-debian-etch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Compile A Kernel &#8211; Debian Etch &#124; HowtoForge &#8211; Linux Howtos and Tutorials</title>
		<link>http://evsworld.selfip.info/2010/02/how-to-compile-a-kernel-debian-etch-howtoforge-linux-howtos-and-tutorials/</link>
		<comments>http://evsworld.selfip.info/2010/02/how-to-compile-a-kernel-debian-etch-howtoforge-linux-howtos-and-tutorials/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 09:55:13 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[kernel]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=346</guid>
		<description><![CDATA[How To Compile A Kernel &#8211; Debian Etch &#124; HowtoForge &#8211; Linux Howtos and Tutorials.
cd /usr/src
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.21.3.tar.bz2
tar xjf linux-2.6.21.3.tar.bz2
ln -s linux-2.6.21.3 linux
cd /usr/src/linux
make clean &#38;&#38; make mrproper
cp /boot/config-`uname -r` ./.config
make menuconfig.

Go to Load an Alternate Configuration File and choose .config
make-kpkg clean
fakeroot make-kpkg &#8211;initrd &#8211;append-to-version=-custom kernel_image kernel_headers
dpkg -i linux-image-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb
dpkg -i linux-headers-2.6.21.3-custom_2.6.21.3-custom-10.00.Custom_i386.deb
shutdown -r now
uname -r
]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/02/how-to-compile-a-kernel-debian-etch-howtoforge-linux-howtos-and-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watching Freeview (DVB-T) TV with VLC Player on Ubuntu &#8211; david winter</title>
		<link>http://evsworld.selfip.info/2010/01/watching-freeview-dvb-t-tv-with-vlc-player-on-ubuntu-david-winter/</link>
		<comments>http://evsworld.selfip.info/2010/01/watching-freeview-dvb-t-tv-with-vlc-player-on-ubuntu-david-winter/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:59:16 +0000</pubDate>
		<dc:creator>Evan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dvb-t]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://evsworld.selfip.info/?p=344</guid>
		<description><![CDATA[Setting it all up
Assuming that you have your TV card drivers installed, you can start off with:
sudo apt-get install dvb-utils vlc
That installs VLC and the DVB programs needed to scan for your channels.
Now, find the digital transmitter nearest to you by visiting DigitalUK. Enter in your postcode, and the result you get back will tell [...]]]></description>
		<wfw:commentRss>http://evsworld.selfip.info/2010/01/watching-freeview-dvb-t-tv-with-vlc-player-on-ubuntu-david-winter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
