<?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/"
	>

<channel>
	<title>MRDBS</title>
	<atom:link href="http://www.mrdbs.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mrdbs.com</link>
	<description>Dummy Information Store</description>
	<pubDate>Mon, 24 Aug 2009 21:36:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting Up a 6to4 Tunnel In Debian</title>
		<link>http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html</link>
		<comments>http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html#comments</comments>
		<pubDate>Mon, 24 Aug 2009 21:34:01 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[6to4]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[ipv4]]></category>

		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/?p=60</guid>
		<description><![CDATA[As I was wondering about IPv6 and because my current host (www.slicehost.com) doesn&#8217;t have native support, I decided to try out a 6to4 on my box.
Basically, a 6to4 is a system that allows IPv6 packets transmitted over IPv4 network (IPv4 Internet). (see: http://en.wikipedia.org/wiki/6to4)

First, we need to create a tunnel device. You need to install iproute [...]]]></description>
			<content:encoded><![CDATA[<p>As I was wondering about IPv6 and because my current host (www.slicehost.com) doesn&#8217;t have native support, I decided to try out a <a href="http://www.mrdbs.com/tag/6to4" class="st_tag internal_tag" rel="tag" title="Posts tagged with 6to4">6to4</a> on my box.</p>
<p>Basically, a <a href="http://www.mrdbs.com/tag/6to4" class="st_tag internal_tag" rel="tag" title="Posts tagged with 6to4">6to4</a> is a system that allows IPv6 packets transmitted over <a href="http://www.mrdbs.com/tag/ipv4" class="st_tag internal_tag" rel="tag" title="Posts tagged with ipv4">IPv4</a> <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> (<a href="http://www.mrdbs.com/tag/ipv4" class="st_tag internal_tag" rel="tag" title="Posts tagged with ipv4">IPv4</a> Internet). (see: <a href="http://en.wikipedia.org/wiki/6to4">http://en.wikipedia.org/wiki/6to4</a>)</p>
<p><span id="more-60"></span></p>
<p>First, we need to create a tunnel device. You need to install <strong>iproute</strong> package if you haven&#8217;t already</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> iproute</pre></div></div>

<p>Create a tunnel device</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> ip tunnel add tun6to4 mode sit remote any</pre></div></div>

<p>Calculate your IPv6 address reserved to your <a href="http://www.mrdbs.com/tag/ipv4" class="st_tag internal_tag" rel="tag" title="Posts tagged with ipv4">IPv4</a> address. <strong>Yes, if you have a public <a href="http://www.mrdbs.com/tag/ipv4" class="st_tag internal_tag" rel="tag" title="Posts tagged with ipv4">IPv4</a> address you already have a IPv6 address reserved for you</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">MYIP</span>=173.45.232.146
$ <span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;2002:%02x%02x:%02x%02x::1<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$MYIP</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;s%\.% %g&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #000000;">2002</span>:ad2d:e892::<span style="color: #000000;">1</span></pre></div></div>

<p>Edit your /etc/<a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a>/interfaces file and add your <a href="http://www.mrdbs.com/tag/6to4" class="st_tag internal_tag" rel="tag" title="Posts tagged with 6to4">6to4</a> device</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">auto tun6to4
iface tun6to4 inet6 v4tunnel
        address <span style="color: #000000;">2002</span>:ad2d:e892::<span style="color: #000000;">1</span>
        netmask <span style="color: #000000;">16</span>
        gateway ::192.88.99.1
        endpoint any
        <span style="color: #7a0874; font-weight: bold;">local</span> 173.45.232.146 <span style="color: #666666; font-style: italic;">#fits address</span></pre></div></div>

<p>::192.88.99.1  is a special anycast address that points to the nearest <a href="http://www.mrdbs.com/tag/6to4" class="st_tag internal_tag" rel="tag" title="Posts tagged with 6to4">6to4</a> router. And assuming that router is working, get your new device up</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">ifconfig</span> tun6to4 up</pre></div></div>

<p>You may now enjoy your IPv6 connectivity. For example:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ ping6 <span style="color: #660033;">-c</span> <span style="color: #000000;">4</span> www6.ulak.net.tr
PING www6.ulak.net.tr<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2001</span>:a98:<span style="color: #000000;">10</span>::<span style="color: #000000;">36</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">56</span> data bytes
<span style="color: #000000;">64</span> bytes from <span style="color: #000000;">2001</span>:a98:<span style="color: #000000;">10</span>::<span style="color: #000000;">36</span>: <span style="color: #007800;">icmp_seq</span>=<span style="color: #000000;">1</span> <span style="color: #007800;">ttl</span>=<span style="color: #000000;">51</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=<span style="color: #000000;">228</span> ms
<span style="color: #000000;">64</span> bytes from <span style="color: #000000;">2001</span>:a98:<span style="color: #000000;">10</span>::<span style="color: #000000;">36</span>: <span style="color: #007800;">icmp_seq</span>=<span style="color: #000000;">2</span> <span style="color: #007800;">ttl</span>=<span style="color: #000000;">51</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=<span style="color: #000000;">224</span> ms
<span style="color: #000000;">64</span> bytes from <span style="color: #000000;">2001</span>:a98:<span style="color: #000000;">10</span>::<span style="color: #000000;">36</span>: <span style="color: #007800;">icmp_seq</span>=<span style="color: #000000;">3</span> <span style="color: #007800;">ttl</span>=<span style="color: #000000;">51</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=<span style="color: #000000;">224</span> ms
<span style="color: #000000;">64</span> bytes from <span style="color: #000000;">2001</span>:a98:<span style="color: #000000;">10</span>::<span style="color: #000000;">36</span>: <span style="color: #007800;">icmp_seq</span>=<span style="color: #000000;">4</span> <span style="color: #007800;">ttl</span>=<span style="color: #000000;">51</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">time</span></span>=<span style="color: #000000;">224</span> ms
&nbsp;
<span style="color: #660033;">---</span> www6.ulak.net.tr <span style="color: #c20cb9; font-weight: bold;">ping</span> statistics <span style="color: #660033;">---</span>
<span style="color: #000000;">4</span> packets transmitted, <span style="color: #000000;">4</span> received, <span style="color: #000000;">0</span><span style="color: #000000; font-weight: bold;">%</span> packet loss, <span style="color: #000000; font-weight: bold;">time</span> 3000ms
rtt min<span style="color: #000000; font-weight: bold;">/</span>avg<span style="color: #000000; font-weight: bold;">/</span>max<span style="color: #000000; font-weight: bold;">/</span>mdev = <span style="color: #000000;">224.013</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">225.013</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">228.013</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1.732</span> ms</pre></div></div>

<p>References:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/6to4">http://en.wikipedia.org/wiki/6to4</a></li>
<li><a href="http://tldp.org/HOWTO/Linux+IPv6-HOWTO/configuring-ipv6to4-tunnels.html">http://tldp.org/HOWTO/Linux+IPv6-HOWTO/configuring-ipv6to4-tunnels.html</a></li>
<li><a href="http://wiki.debian.org/DebianIPv6">http://wiki.debian.org/DebianIPv6</a></li>
</ul>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/search-your-man-pages-apropos.html">Search Your Man Pages: apropos</a> <span class="related-post-date timestamp">2009-05-15</span></li><li class="related-post"><a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a> <span class="related-post-date timestamp">2009-03-29</span></li><li class="related-post"><a href="http://www.mrdbs.com/rhce-oldum.html">RHCE oldum</a> <span class="related-post-date timestamp">2007-12-01</span></li><li class="related-post"><a href="http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html">Where Is My Ctrl+Alt+Backspace?</a> <span class="related-post-date timestamp">2009-05-08</span></li><li class="related-post"><a href="http://www.mrdbs.com/virtualbox-22-is-announced.html">VirtualBox 2.2 is Announced</a> <span class="related-post-date timestamp">2009-05-04</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Search Your Man Pages: apropos</title>
		<link>http://www.mrdbs.com/search-your-man-pages-apropos.html</link>
		<comments>http://www.mrdbs.com/search-your-man-pages-apropos.html#comments</comments>
		<pubDate>Fri, 15 May 2009 13:41:31 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/?p=53</guid>
		<description><![CDATA[You may or may not know this before, there is a utility named apropos, which enables you to search within you man pages installed on your system. Which is infact very usefull when you know what you are about to do, but no clue about with, and where.
For example:

$ apropos ethernet
ethers &#40;5&#41;           - Ethernet address [...]]]></description>
			<content:encoded><![CDATA[<p>You may or may not know this before, there is a utility named apropos, which enables you to search within you man pages installed on your system. Which is infact very usefull when you know what you are about to do, but no clue about with, and where.</p>
<p>For example:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">apropos</span> ethernet
ethers <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">5</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>           - Ethernet address to IP number database
ethtool <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">8</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>          - Display or change ethernet card settings
sk98lin <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">4</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>          - Marvell<span style="color: #000000; font-weight: bold;">/</span>SysKonnect Gigabit Ethernet driver v6.21</pre></div></div>

<p>or;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">man</span> <span style="color: #660033;">-k</span> ethernet
ethers <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">5</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>           - Ethernet address to IP number database
ethtool <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">8</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>          - Display or change ethernet card settings
sk98lin <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">4</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>          - Marvell<span style="color: #000000; font-weight: bold;">/</span>SysKonnect Gigabit Ethernet driver v6.21</pre></div></div>

<p>The real problem here is (for me at least), &#8220;<strong>apropos</strong>&#8221; is real hard word to remember itself and it&#8217;s a bit ironic when you think of its purpose. So I think, may be writing a post about it helps me to remember it better.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a> <span class="related-post-date timestamp">2009-03-29</span></li><li class="related-post"><a href="http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html">Setting Up a 6to4 Tunnel In Debian</a> <span class="related-post-date timestamp">2009-08-24</span></li><li class="related-post"><a href="http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html">Where Is My Ctrl+Alt+Backspace?</a> <span class="related-post-date timestamp">2009-05-08</span></li><li class="related-post"><a href="http://www.mrdbs.com/rhce-oldum.html">RHCE oldum</a> <span class="related-post-date timestamp">2007-12-01</span></li><li class="related-post"><a href="http://www.mrdbs.com/virtualbox-22-is-announced.html">VirtualBox 2.2 is Announced</a> <span class="related-post-date timestamp">2009-05-04</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/search-your-man-pages-apropos.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Where Is My Ctrl+Alt+Backspace?</title>
		<link>http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html</link>
		<comments>http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html#comments</comments>
		<pubDate>Fri, 08 May 2009 18:14:08 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[jaunty]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[xorg.conf]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/?p=45</guid>
		<description><![CDATA[I&#8217;ve recently installed Ubuntu 9.04 (Jaunty Jackalope) on my Thinkpad, and guess what, according to the article at https://wiki.ubuntu.com/X/Config/DontZap Ubuntu people decided to disable the Ctrl + Alt + Backspace combination, which kills the X instantly.
Ok, there is a logic behind the idea, but what about giving user the freedom of choice?
Long story short, you [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently installed <a href="http://www.mrdbs.com/tag/ubuntu" class="st_tag internal_tag" rel="tag" title="Posts tagged with ubuntu">Ubuntu</a> 9.04 (<a href="http://www.mrdbs.com/tag/jaunty" class="st_tag internal_tag" rel="tag" title="Posts tagged with jaunty">Jaunty</a> Jackalope) on my Thinkpad, and guess what, according to the article at <a href="https://wiki.ubuntu.com/X/Config/DontZap">https://wiki.ubuntu.com/X/Config/DontZap</a> <a href="http://www.mrdbs.com/tag/ubuntu" class="st_tag internal_tag" rel="tag" title="Posts tagged with ubuntu">Ubuntu</a> people decided to disable the Ctrl + Alt + Backspace combination, which kills the X instantly.</p>
<p>Ok, there is a logic behind the idea, but what about giving user the freedom of choice?</p>
<p>Long story short, you can re-enable the beloved key combination, just edit your <a href="file:///etc/X11/xorg.conf">/etc/X11/xorg.conf</a> and add the following lines:</p>

<div class="wp_syntax"><div class="code"><pre class="xorg_conf" style="font-family:monospace;"><span style="color: #b1b100;">Section</span> <span style="color: #0000ff;">&quot;ServerFlags&quot;</span>
	<span style="color: #990000;">Option</span> <span style="color: #0000ff;">&quot;DontZap&quot;</span> <span style="color: #0000ff;">&quot;False&quot;</span>
<span style="color: #b1b100;">EndSection</span></pre></div></div>

<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/search-your-man-pages-apropos.html">Search Your Man Pages: apropos</a> <span class="related-post-date timestamp">2009-05-15</span></li><li class="related-post"><a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a> <span class="related-post-date timestamp">2009-03-29</span></li><li class="related-post"><a href="http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html">Setting Up a 6to4 Tunnel In Debian</a> <span class="related-post-date timestamp">2009-08-24</span></li><li class="related-post"><a href="http://www.mrdbs.com/virtualbox-22-is-announced.html">VirtualBox 2.2 is Announced</a> <span class="related-post-date timestamp">2009-05-04</span></li><li class="related-post"><a href="http://www.mrdbs.com/rhce-oldum.html">RHCE oldum</a> <span class="related-post-date timestamp">2007-12-01</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>VirtualBox 2.2 is Announced</title>
		<link>http://www.mrdbs.com/virtualbox-22-is-announced.html</link>
		<comments>http://www.mrdbs.com/virtualbox-22-is-announced.html#comments</comments>
		<pubDate>Mon, 04 May 2009 12:38:53 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[interface]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[virtualbox]]></category>

		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/?p=40</guid>
		<description><![CDATA[Ok, it is announced for a while ago, early last month to be specific. So sorry for the late info.
But, the point is, with 2.2, a new interface type comes: Host-Only Interface (with many other bugfixes and new features, offcourse). And so my post about &#8220;&#8221; is obsoleted. Just select the Host-Only Interface option on [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, it is announced for a while ago, early last month to be specific. So sorry for the late info.</p>
<p>But, the point is, with 2.2, a new <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">interface</a> type comes: <strong>Host-Only <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a></strong> (with many other bugfixes and new features, offcourse). And so my post about &#8220;<a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a>&#8221; is obsoleted. Just select the Host-Only <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a> option on your virtual machine settings.</p>
<p>PS. By default, virtual box runs a dhcp server serving <em>192.168.56.0/24</em> <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> to host-only interfaces. You can alter the default from <a href="http://www.mrdbs.com/tag/virtualbox" class="st_tag internal_tag" rel="tag" title="Posts tagged with virtualbox">VirtualBox</a> Preferences.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a> <span class="related-post-date timestamp">2009-03-29</span></li><li class="related-post"><a href="http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html">Setting Up a 6to4 Tunnel In Debian</a> <span class="related-post-date timestamp">2009-08-24</span></li><li class="related-post"><a href="http://www.mrdbs.com/search-your-man-pages-apropos.html">Search Your Man Pages: apropos</a> <span class="related-post-date timestamp">2009-05-15</span></li><li class="related-post"><a href="http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html">Where Is My Ctrl+Alt+Backspace?</a> <span class="related-post-date timestamp">2009-05-08</span></li><li class="related-post"><a href="http://www.mrdbs.com/rhce-oldum.html">RHCE oldum</a> <span class="related-post-date timestamp">2007-12-01</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/virtualbox-22-is-announced.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Simple Network Setup On VirtualBox 2.1</title>
		<link>http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html</link>
		<comments>http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html#comments</comments>
		<pubDate>Sat, 28 Mar 2009 23:56:27 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[bridge]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[virtualbox]]></category>

		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/?p=31</guid>
		<description><![CDATA[I&#8217;ve been using linux-vserver for the past few years, but as there is no linux-vserver kernel for ubuntu and I don&#8217;t want to give my time re-compiling kernel, I&#8217;ve decided to try alternative virtualization solutions. I&#8217;ve already tried qemu, vmware but i really don&#8217;t like them. So I gave a shot to VirtualBox.
After trying and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://www.linux-vserver.org">linux-vserver</a> for the past few years, but as there is no <a href="http://www.mrdbs.com/tag/linux" class="st_tag internal_tag" rel="tag" title="Posts tagged with linux">linux</a>-vserver kernel for <a href="http://www.mrdbs.com/tag/ubuntu" class="st_tag internal_tag" rel="tag" title="Posts tagged with ubuntu">ubuntu</a> and I don&#8217;t want to give my time re-compiling kernel, I&#8217;ve decided to try alternative <a href="http://www.mrdbs.com/tag/virtualization" class="st_tag internal_tag" rel="tag" title="Posts tagged with virtualization">virtualization</a> solutions. I&#8217;ve already tried <a href="http://www.qemu.org">qemu</a>, <a href="http://www.vmware.com">vmware</a> but i really don&#8217;t like them. So I gave a shot to <a href="http://www.virtualbox.org">VirtualBox</a>.</p>
<p>After trying and seeing the mess on setting up <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> properly on <a href="http://www.mrdbs.com/tag/virtualbox" class="st_tag internal_tag" rel="tag" title="Posts tagged with virtualbox">virtualbox</a>-ose, i was a little bit disappointed. But as <a href="http://www.mrdbs.com/tag/virtualbox" class="st_tag internal_tag" rel="tag" title="Posts tagged with virtualbox">VirtualBox</a> 2.1, they seem to fix lots of problems with <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> utilization.<span id="more-31"></span></p>
<p>Here is my status;</p>
<ul>
<li>I&#8217;ve using <a href="http://www.thinkwiki.org/wiki/Install_Ubuntu_Intrepid_Ibex_on_a_T61p">64bit Ubuntu Intrepid Ibex on my Thinkpad T61P</a> with 4GB memory</li>
<li>I&#8217;m using my notebook both at work and home, and some other places off course</li>
<li>At work, I use wired and wireless connection (eth0) but at home I&#8217;m using wireless (ath0)</li>
<li>So there is always different <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> setups at home, office, etc.</li>
<li>All my running guests and the host should be able to communicate each other.</li>
</ul>
<p>So I need static IP utilization on all guests and the host, and all of my guests should access to internet, and all my guests should isolated from lan. So I tried host <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">interface</a> and</p>
<ul>
<li>When I use eth0 to bridge, my guests was not reachable at home because eth0 link is not used.</li>
<li>When I use ath0, there was another problem which I don&#8217;t remember now :)</li>
<li>On both interfaces, my guests were not isolated, and could be reached from lan.</li>
</ul>
<p>And here is my solution:</p>
<h2>On host machine</h2>
<p>First I&#8217;ve installed bridge-utils</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> bridge-utils</pre></div></div>

<p>I add bridge <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">interface</a> br0</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> brctl addbr br0</pre></div></div>

<p>Then I&#8217;ve configured my <em>/etc/<a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a>/interfaces</em> (at host machine)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">auto br0
iface br0 inet static
	address 192.168.5.1
	netmask 255.255.255.0
	bridge_maxwait <span style="color: #000000;">0</span>
	bridge_ports lo</pre></div></div>

<p>Please pay attention to bridge_ports line, I&#8217;ve used loop back device so the bridge will be isolated from my lan, and using eth0 or ath0 or anything else will not make any difference as loop back interfaces is will always stay there.</p>
<p>Finally I&#8217;ve restart my <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> and bring br0 up</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>network restart</pre></div></div>

<h2>On Guest Machine</h2>
<p>Before booting one of my <a href="http://www.mrdbs.com/tag/debian" class="st_tag internal_tag" rel="tag" title="Posts tagged with debian">debian</a> guest, I&#8217;ve added two interfaces.</p>
<ul>
<li>First <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a>, which the guest uses to reach to lan:
<ul>
<li><strong>Adapter Type</strong>: PCNet-Fast III</li>
<li><strong>Attached to</strong>: NAT</li>
</ul>
</li>
<li>Second <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a>, which the guests communicate each other and the host
<ul>
<li><strong>Adapter Type</strong>: PCNet-Fast III</li>
<li><strong>Attached To</strong>: Host <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a></li>
<li><strong>Host <a href="http://www.mrdbs.com/tag/interface" class="st_tag internal_tag" rel="tag" title="Posts tagged with interface">Interface</a></strong>: br0</li>
</ul>
</li>
</ul>
<p>Then I&#8217;ve booted my guest, enter the GUI and edit <em>/etc/<a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a>/interfaces</em> file</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">auto eth0 <span style="color: #666666; font-style: italic;">#This is the NAT'ed interface</span>
iface eth0 inet dhcp
&nbsp;
auto eth1 <span style="color: #666666; font-style: italic;">#This is the bridged interface</span>
iface eth1 inet static
	address 192.168.5.2
	netmask 255.255.255.0</pre></div></div>

<p>Restart the <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>network restart</pre></div></div>

<p>On my other guest, I make the same and gave <em>192.168.5.3</em> as IP address.</p>
<p>At the end:</p>
<ul>
<li> All my guests can reach each other and the host in 192.168.5.0/24 <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a></li>
<li>I do not need any special configuration on host boot.</li>
<li>I have also a Windows XP guest which I configured the <a href="http://www.mrdbs.com/tag/network" class="st_tag internal_tag" rel="tag" title="Posts tagged with network">network</a> on same basis and work flawlesly.</li>
</ul>
<p>Good luck.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/virtualbox-22-is-announced.html">VirtualBox 2.2 is Announced</a> <span class="related-post-date timestamp">2009-05-04</span></li><li class="related-post"><a href="http://www.mrdbs.com/search-your-man-pages-apropos.html">Search Your Man Pages: apropos</a> <span class="related-post-date timestamp">2009-05-15</span></li><li class="related-post"><a href="http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html">Setting Up a 6to4 Tunnel In Debian</a> <span class="related-post-date timestamp">2009-08-24</span></li><li class="related-post"><a href="http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html">Where Is My Ctrl+Alt+Backspace?</a> <span class="related-post-date timestamp">2009-05-08</span></li><li class="related-post"><a href="http://www.mrdbs.com/rhce-oldum.html">RHCE oldum</a> <span class="related-post-date timestamp">2007-12-01</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>mrdbs.com Tekrar yayında</title>
		<link>http://www.mrdbs.com/mrdbs-com-tekrar-yayinda.html</link>
		<comments>http://www.mrdbs.com/mrdbs-com-tekrar-yayinda.html#comments</comments>
		<pubDate>Sun, 22 Feb 2009 22:39:13 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[random stuff]]></category>

		<category><![CDATA[about me]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/tekrar-yayinda.html</guid>
		<description><![CDATA[Aylar sonra sonunda kendi tembelliğimi yenip mrdbs.com&#8217;u yeniden yayına sokabildim. Son blogumu 1 Aralık 2007&#8242;de girdiğimi görüyorum. Gönül isterdi ki son blogun 1. yıldönümünde bir blog daha girip kutlayayım ama kısmet değilmiş.
Umarım yazacak o kadar şey varken ben yazmamaya devam etmem.
Not: İstatistiklere göre yıl aşırı yazıyorum. E bu yıl benim yılım o zaman.
Related Posts]]></description>
			<content:encoded><![CDATA[<p>Aylar sonra sonunda kendi tembelliğimi yenip mrdbs.com&#8217;u yeniden yayına sokabildim. Son blogumu 1 Aralık 2007&#8242;de girdiğimi görüyorum. Gönül isterdi ki son blogun 1. yıldönümünde bir blog daha girip kutlayayım ama kısmet değilmiş.</p>
<p>Umarım yazacak o kadar şey varken ben yazmamaya devam etmem.</p>
<p>Not: İstatistiklere göre yıl aşırı yazıyorum. E bu yıl benim yılım o zaman.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/mrdbs-com-tekrar-yayinda.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>RHCE oldum</title>
		<link>http://www.mrdbs.com/rhce-oldum.html</link>
		<comments>http://www.mrdbs.com/rhce-oldum.html#comments</comments>
		<pubDate>Sat, 01 Dec 2007 14:52:58 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[parkyeri]]></category>

		<category><![CDATA[debian]]></category>

		<category><![CDATA[redhat]]></category>

		<category><![CDATA[rhce]]></category>

		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/rhce-oldum.html</guid>
		<description><![CDATA[4 gün süren sınav odaklı eğitimin sonunda sertifikamı aldım. Bu 4 günlük redhat aşinalığı kazanma süresi boyunca anladım ki;
debian sen bizim herşeyimizsin.
Elbette benim için ileride fayda sağlayabilecek bir şey bu ne olursa olsun. Bu nedenle eğitim isteğimi sorgusuz sualsiz kabul eden ve karşılayan Parkyeri&#8216;ne de tekrar teşekkürler.
Related PostsSetting Up a 6to4 Tunnel In Debian 2009-08-24Search [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-left: 10px; float: right" title="RHCE" src="http://www.mrdbs.com/images/rhce.thumbnail.jpg" alt="RHCE" />4 gün süren sınav odaklı eğitimin sonunda <a href="https://www.redhat.com/training/certification/verify/?rhce_cert_display:certno=805007971029302&amp;rhce_cert_display:verify_cb=Verify" target="_blank">sertifikam</a>ı aldım. Bu 4 günlük <a href="http://www.redhat.com">redhat</a> aşinalığı kazanma süresi boyunca anladım ki;</p>
<blockquote style="padding-top: 3px"><p><a href="http://www.mrdbs.com/tag/debian" class="st_tag internal_tag" rel="tag" title="Posts tagged with debian">debian</a> sen bizim herşeyimizsin.</p></blockquote>
<p>Elbette benim için ileride fayda sağlayabilecek bir şey bu ne olursa olsun. Bu nedenle eğitim isteğimi sorgusuz sualsiz kabul eden ve karşılayan <a href="http://www.parkyeri.com">Parkyeri</a>&#8216;ne de tekrar teşekkürler.</p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"><li class="related-post"><a href="http://www.mrdbs.com/setting-up-a-6to4-tunnel-in-debian.html">Setting Up a 6to4 Tunnel In Debian</a> <span class="related-post-date timestamp">2009-08-24</span></li><li class="related-post"><a href="http://www.mrdbs.com/search-your-man-pages-apropos.html">Search Your Man Pages: apropos</a> <span class="related-post-date timestamp">2009-05-15</span></li><li class="related-post"><a href="http://www.mrdbs.com/simple-network-setup-on-virtualbox-21.html">Simple Network Setup On VirtualBox 2.1</a> <span class="related-post-date timestamp">2009-03-29</span></li><li class="related-post"><a href="http://www.mrdbs.com/where-is-my-ctrlaltbackspace.html">Where Is My Ctrl+Alt+Backspace?</a> <span class="related-post-date timestamp">2009-05-08</span></li><li class="related-post"><a href="http://www.mrdbs.com/virtualbox-22-is-announced.html">VirtualBox 2.2 is Announced</a> <span class="related-post-date timestamp">2009-05-04</span></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/rhce-oldum.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>OZ Variety (s05e06)</title>
		<link>http://www.mrdbs.com/oz-variety-s05e06.html</link>
		<comments>http://www.mrdbs.com/oz-variety-s05e06.html#comments</comments>
		<pubDate>Tue, 11 Sep 2007 23:09:43 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[fun stuff]]></category>

		<category><![CDATA[tv & movies]]></category>

		<category><![CDATA[dizi]]></category>

		<category><![CDATA[oz]]></category>

		<category><![CDATA[tv show]]></category>

		<category><![CDATA[variety]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/oz-variety-s05e06.html</guid>
		<description><![CDATA[OZ (Oswald Correcting Fasility)&#8217;nin, bana göre dizinin tüm sezonlarının en iyi bölümü olan 5. sezon 6. bölümünü (Variety) az önce tekrar izledim. Sonra da merak ettim araştırdım. Gerçekten de bu bölüm, tüm OZ bölümleri içerisinde IMDb&#8216;de en yüksek rating&#8217;i almış, forumlarda en çok konuşulmuş bölümlerden biri olmuş. İşte beni beni benden alıp götüren, satamadan getiren [...]]]></description>
			<content:encoded><![CDATA[<p><a title="OZ" href="http://imdb.com/title/tt0118421">OZ</a> (Oswald Correcting Fasility)&#8217;nin, bana göre dizinin tüm sezonlarının en iyi bölümü olan 5. sezon 6. bölümünü (<a title="Oz - Variety" href="http://imdb.com/title/tt0668328">Variety</a>) az önce tekrar izledim. Sonra da merak ettim araştırdım. Gerçekten de bu bölüm, tüm <a href="http://www.mrdbs.com/tag/oz" class="st_tag internal_tag" rel="tag" title="Posts tagged with oz">OZ</a> bölümleri içerisinde <a title="The Internet Movie Database" href="http://www.imdb.com">IMDb</a>&#8216;de en yüksek rating&#8217;i almış, forumlarda en çok konuşulmuş bölümlerden biri olmuş. İşte beni beni benden alıp götüren, satamadan getiren bölümden küçük bir klip:</p>
<p><span id="more-13"></span><br />
<!--youtube width="425" height="335"]http://youtube.com/watch?v=AJrESpq4uLo[/youtube--><br />
<a href="http://www.mrdbs.com/oz-variety-s05e06.html"><p><em>Click here to view the embedded video.</em></p></a></p>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/oz-variety-s05e06.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Google It You Moron&#8221; öldü mü?</title>
		<link>http://www.mrdbs.com/google-it-you-moron.html</link>
		<comments>http://www.mrdbs.com/google-it-you-moron.html#comments</comments>
		<pubDate>Sun, 09 Sep 2007 16:35:20 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[fun stuff]]></category>

		<category><![CDATA[random stuff]]></category>

		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/googleityoumoron-oldu-mu.html</guid>
		<description><![CDATA[Son bir kaç yıldır yayında olan favori sitelerimden GoogleItYouMoron&#8216;un bir süredir açılmadığının bilenler farkındadır. Halbuki ne zaman ki biri gelip &#8220;abi postfix bir nedir, nasıl kurulur?&#8221; gibi abuk bir soru sorduğunda ne güzel yönlendiriyordum Google&#8216;a GoogleItYouMoron aracılığıyla yüzümde hain bir sırıtmayla.

Şimdi ise sadece arşivlerde görebiliyoruz bu güzide siteyi. Ne diyelim, umarım bir an önce online [...]]]></description>
			<content:encoded><![CDATA[<p>Son bir kaç yıldır yayında olan favori sitelerimden <a href="http://www.googleityoumoron.com">GoogleItYouMoron</a>&#8216;un bir süredir açılmadığının bilenler farkındadır. Halbuki ne zaman ki biri gelip &#8220;abi postfix bir nedir, nasıl kurulur?&#8221; gibi abuk bir soru sorduğunda ne güzel yönlendiriyordum <strong><a href="http://www.mrdbs.com/tag/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with google">Google</a></strong>&#8216;a <strong>GoogleItYouMoron</strong> aracılığıyla yüzümde hain bir sırıtmayla.</p>
<p><span id="more-10"></span></p>
<p>Şimdi ise sadece arşivlerde görebiliyoruz bu güzide siteyi. Ne diyelim, umarım bir an önce online olur da  nimetlerinden faydalanmaya devam edebiliriz.</p>
<p>Eskiyi yad etmek isteyenler; buyurun buradan yakın:</p>
<p style="text-align: center;"><img style="border: 0px none  ! important" title="Google It You Moron" src="http://www.mrdbs.com/images/googleit.jpg" alt="Google It You Moron" /></p>
<ul>
<li><a href="http://web.archive.org/web/20050305055112/http://www.googleityoumoron.com/">http://web.archive.org/w&#8230;.112/http://www.googleityoumoron.com/</a></li>
</ul>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/google-it-you-moron.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Google Syntax Highlighter</title>
		<link>http://www.mrdbs.com/google-syntax-highlighter.html</link>
		<comments>http://www.mrdbs.com/google-syntax-highlighter.html#comments</comments>
		<pubDate>Thu, 06 Sep 2007 13:22:14 +0000</pubDate>
		<dc:creator>Emre Odabas</dc:creator>
		
		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[coding]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.mrdbs.com/google-syntax-highlighter-3.html</guid>
		<description><![CDATA[Bazen herşey durup dururken yerli yerine oturabiliyor süreç içerisinde. Çalışma hayatımın 8. yılını devirdiğim 2007 yılında &#8220;e artık benim de bir blog&#8217;um olsun aklıma estikçe yazarım&#8221; kararını verdim. Sağa sola eşe dosta defalarca kurduğum wordpress&#8217;i seçip kurcalarken bir de ne göreyim. &#8220;Google Syntax Highligter&#8221; diye bir WordPress Plugin&#8217;i varmış.
Ne ola ki acep diye biraz kurcalayınca [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: left; margin: 5px" title="Syntax Highlighter" src="http://www.mrdbs.com/images/syntax-highlighter-thumb.thumbnail.png" alt="Syntax Highlighter" />Bazen herşey durup dururken yerli yerine oturabiliyor süreç içerisinde. Çalışma hayatımın 8. yılını devirdiğim 2007 yılında &#8220;<strong>e artık benim de bir blog&#8217;um olsun aklıma estikçe yazarım</strong>&#8221; kararını verdim. Sağa sola eşe dosta defalarca kurduğum <a href="http://www.mrdbs.com/tag/wordpress" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a>&#8217;i seçip kurcalarken bir de ne göreyim. &#8220;<a title="Google Syntax Highlighter" href="http://wordpress.org/extend/plugins/google-syntax-highlighter/">Google Syntax Highligter</a>&#8221; diye bir <a href="http://www.mrdbs.com/tag/wordpress" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> Plugin&#8217;i varmış.</p>
<p>Ne ola ki acep diye biraz kurcalayınca <a href="http://www.peterryan.net/">Peter Ryan</a>, <a href="http://code.google.com/u/alex.gorbatchev">Alex Gorbatchev</a>&#8216;in %100 javascript tabanlı syntax highlighter&#8217;ını almış, <a href="http://www.mrdbs.com/tag/wordpress" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">wordpress</a> plugin&#8217;i yapmış ve ben henüz aradığımın bile farkında değilken karşıma çıkarmış.</p>
<p><span id="more-3"></span></p>
<p><strong>Özellikleri</strong></p>
<ul>
<li>100% istemci tabanlı, sunucu gereksinimi yok</li>
<li>Çoklu dil destekleyebiliyor</li>
<li>Geniş bir tarayıcı desteğine sahip</li>
<li>Oldukça küçük</li>
</ul>
<p><strong>Desktelenen Diller</strong></p>
<ul>
<li>C++  (cpp, c, c++)</li>
<li>C#  (c#, c-sharp, csharp)</li>
<li>CSS (css)</li>
<li>Delphi (delphi, pascal)</li>
<li>Java (java)</li>
<li>Java Script (js, jscript, javascript)</li>
<li>PHP (php)</li>
<li>Python (py, python)</li>
<li>Ruby (rb, ruby, rails, ror)</li>
<li>Sql (sql)</li>
<li>VB (vb, vb.net)</li>
<li>XML/HTML (xml, html, xhtml, xslt)</li>
</ul>
<p><strong>Linkler</strong></p>
<ul>
<li><a href="http://wordpress.org/extend/plugins/google-syntax-highlighter/">http://wordpress.org/extend/plugins/google-syntax-highlighter/</a></li>
<li><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></li>
<li><a href="http://www.dreamprojections.com/">http://www.dreamprojections.com/</a></li>
<li><a href="http://www.peterryan.net/">http://www.peterryan.net/</a></li>
</ul>
<h4 class='related-posts-header'>Related Posts</h4><ul class="related-posts-list"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mrdbs.com/google-syntax-highlighter.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

