<?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>NotrevBlog &#187; Debian</title>
	<atom:link href="http://earruda.eti.br/blog/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://earruda.eti.br/blog</link>
	<description>Éverton Arruda's Blog</description>
	<lastBuildDate>Fri, 16 Jul 2010 20:07:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Getting Broadcom wireless to work on Debian</title>
		<link>http://earruda.eti.br/blog/2010/07/getting-broadcom-wireless-cards-to-work-on-debian/</link>
		<comments>http://earruda.eti.br/blog/2010/07/getting-broadcom-wireless-cards-to-work-on-debian/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 14:55:58 +0000</pubDate>
		<dc:creator>Éverton Arruda</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet PSL-AM]]></category>
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://earruda.eti.br/blog/?p=215</guid>
		<description><![CDATA[Debian-like distributions come with b43, or b43legacy, and ssb modules for broadcom wireless cards, but they never worked for me. Searching over the internet i found out that broadcom provides the driver for BCM4311-, BCM4312-, BCM4313-, BCM4321-, and BCM4322-based hardware, all we need to do is compile it and install the module. This is how [...]]]></description>
			<content:encoded><![CDATA[<p>Debian-like distributions come with <em>b43</em>, or <em>b43legacy</em>, and <em>ssb</em> modules for broadcom wireless cards, but they never worked for me. Searching over the internet i found out that broadcom provides the driver for BCM4311-, BCM4312-, BCM4313-, BCM4321-, and BCM4322-based hardware, all we need to do is compile it and install the module. This is how we do it:</p>
<p><strong>1 &#8211; Check your wireless card</strong>:<br />
First of all we need to be sure that your wireless card is one of the BCMXXXX-based hardware:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">lspci</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> Network</div></td></tr></tbody></table></div>
<p>The return should be something like this:<br />
<quote>08:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g (rev 01)</quote></p>
<p>In that line you can see that my wireless card hardware is BCM4312, so it is supported.</p>
<p><strong>2 &#8211; Download the Driver</strong>:<br />
You can access Broadcom&#8217;s website[0] and download it or use wget to download it through shell.<br />
For 32-bits CPUs:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-c</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.broadcom.com<span style="color: #000000; font-weight: bold;">/</span>docs<span style="color: #000000; font-weight: bold;">/</span>linux_sta<span style="color: #000000; font-weight: bold;">/</span>hybrid-portsrc-x86_32-v5.60.48.36.tar.gz</div></td></tr></tbody></table></div>
<p>For 64-bits CPUs:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-c</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.broadcom.com<span style="color: #000000; font-weight: bold;">/</span>docs<span style="color: #000000; font-weight: bold;">/</span>linux_sta<span style="color: #000000; font-weight: bold;">/</span>hybrid-portsrc-x86_64-v5.60.48.36.tar.gz</div></td></tr></tbody></table></div>
<p><strong>3 &#8211; Remove the other modules</strong>:<br />
Check if <em>b43</em>, <em>b43legacy</em>, <em>ssb</em> and/or an older version of <em>wl</em> modules exist:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">lsmod</span> &nbsp;<span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #ff0000;">&quot;b43\|ssb\|wl&quot;</span></div></td></tr></tbody></table></div>
<p>Remove them, if they exist:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># rmmod b43 ; rmmod b43legacy ; rmmod ssb ; rmmod wl</span></div></td></tr></tbody></table></div>
<p>Add <em>b43</em>, <em>b43legacy</em> and <em>ssb</em> to the blacklist, preventing them to be probed in initialization:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"># echo &quot;blacklist ssb&quot; &gt;&gt; /etc/modprobe.d/blacklist.conf<br />
# echo &quot;blacklist b43&quot; &gt;&gt; /etc/modprobe.d/blacklist.conf<br />
# echo &quot;blacklist b43legacy&quot; &gt;&gt; /etc/modprobe.d/blacklist.conf</div></td></tr></tbody></table></div>
<p><strong>4 &#8211; Install the wl module</strong>:<br />
Extract the tarball you downloaded and compile it, you&#8217;ll need to install the <em>build-essential</em> package to compile it:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># aptitude install build-essential -y</span><br />
$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> broadcom<br />
$ <span style="color: #7a0874; font-weight: bold;">cd</span> broadcom<br />
$ <span style="color: #c20cb9; font-weight: bold;">tar</span> xvzf ..<span style="color: #000000; font-weight: bold;">/</span>hybrid-portsrc-x86_<span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #000000;">32</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">64</span><span style="color: #000000; font-weight: bold;">&gt;</span>-<span style="color: #000000; font-weight: bold;">&lt;</span>version<span style="color: #000000; font-weight: bold;">&gt;</span><br />
$ <span style="color: #c20cb9; font-weight: bold;">make</span></div></td></tr></tbody></table></div>
<p>If you have an older version of <em>wl</em>, which is usually in <em>/lib/modules/<kernel-version>/kernel/net/wireless</em>, you should rename or remove it, to avoid conflicts:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># mv /lib/modules/`uname -r`/kernel/net/wireless/wl.ko /lib/modules/`uname -r`/kernel/net/wireless/wl.ko.old</span></div></td></tr></tbody></table></div>
<p>Copy the new wl.ko to <em>/lib/modules/<kernel-version>/kernel/net/wireless</em> and install it:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># cp wl.ko /lib/modules/`uname -r`/kernel/net/wireless/</span><br />
<span style="color: #666666; font-style: italic;"># insmod wl.ko</span></div></td></tr></tbody></table></div>
<p>Add it to <em>/etc/modules</em> to load it at boot time:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># echo &quot;lib80211&quot; /etc/modules</span><br />
<span style="color: #666666; font-style: italic;"># echo &quot;wl&quot; /etc/modules</span></div></td></tr></tbody></table></div>
<p>After these steps your wireless network should be working.</p>
<p><strong>Troubleshooting</strong><br />
I had another problem: after rebooting, <em>ssb</em> module was being loaded even after being blacklisted, and the recently added <em>wl</em> module wasn&#8217;t.</p>
<p>To check if this is happening to you run the command below:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">$ <span style="color: #c20cb9; font-weight: bold;">lsmod</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ssb</div></td></tr></tbody></table></div>
<p>If the command returns something, it means that the <em>ssb</em> module is being loaded, then you&#8217;ll have to:</p>
<p><strong>1 &#8211; Remove <em>ssb</em> and <em>wl</em> modules:</strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># rmmod ssb; rmmod wl</span></div></td></tr></tbody></table></div>
<p><strong>2 &#8211; Back up the current boot ramfs, generate a new one and reboot system:</strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># cp /boot/initrd.img-`uname -r` &nbsp;somewheresafe</span><br />
<span style="color: #666666; font-style: italic;"># update-initramfs -u</span><br />
<span style="color: #666666; font-style: italic;"># reboot</span></div></td></tr></tbody></table></div>
<p><strong>3 &#8211; Reinstall <em>wl</em> module:</strong></p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;"># cp wl.ko /lib/modules/`uname -r`/kernel/net/wireless/</span><br />
<span style="color: #666666; font-style: italic;"># insmod wl.ko</span><br />
<span style="color: #666666; font-style: italic;"># depmode -a</span></div></td></tr></tbody></table></div>
<p>And <em>wl</em> module will be loaded at boot time.</p>
<p>[0] <a href="http://www.broadcom.com/support/802.11/linux_sta.php" target="_blank">http://www.broadcom.com/support/802.11/linux_sta.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://earruda.eti.br/blog/2010/07/getting-broadcom-wireless-cards-to-work-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why aptitude?</title>
		<link>http://earruda.eti.br/blog/2010/03/why-aptitude/</link>
		<comments>http://earruda.eti.br/blog/2010/03/why-aptitude/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 20:15:18 +0000</pubDate>
		<dc:creator>Éverton Arruda</dc:creator>
				<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet PSL-AM]]></category>
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://earruda.eti.br/blog/?p=197</guid>
		<description><![CDATA[Are you one of those people who use aptitude instead of apt-get and don&#8217;t know why? Well, i have a confession to make: until today, i was one of those people&#8230; I knew that aptitude was an upgraded version of apt-get and i&#8217;m used to use it, but a i never knew what makes it [...]]]></description>
			<content:encoded><![CDATA[<p>Are you one of those people who use <em>aptitude</em> instead of <em>apt-get</em> and don&#8217;t know why? Well, i have a confession to make: until today, i was one of those people&#8230;</p>
<p>I knew that <em>aptitude</em> was an upgraded version of <em>apt-get</em> and i&#8217;m used to use it, but a i never knew what makes it better than <em>apt-get</em> and never needed to know why, but today, while reading Planet Debian (<a href="http://planet.debian.org" target="_blank">http://planet.debian.org</a>), i saw Jan Hauke Rahm chatting with dpkg bot (<a href="http://jhr-online.de/54" target="_blank">http://jhr-online.de/54</a>), in #debian on irc.debian.org, and at some point of the chat he asks to dpkg: &#8220;why aptitude?&#8221;,  and it answers:</p>
<blockquote><p>dpkg &gt; aptitude has more advanced conflict/dependency resolution and will often find a solution where apt-get gives up.  It can be used from the command line like apt-get plus an interactive resolver makes it much easier to recover from broken dependencies.  It has advanced search capabilities (see &lt;aptitude search&gt;.</p></blockquote>
<p>Thanks to that chat, and the consequent blog post, now i&#8217;m enlightened =D.</p>
<p>I chatted a little with dpkg, too, but he wasn&#8217;t such a nice bot to me, he asked if i was smoking crack =/.</p>
<p>:wq</p>
]]></content:encoded>
			<wfw:commentRss>http://earruda.eti.br/blog/2010/03/why-aptitude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IpForward from Computer with Linux to PS3</title>
		<link>http://earruda.eti.br/blog/2009/10/ipforward-from-computer-with-linux-to-ps3/</link>
		<comments>http://earruda.eti.br/blog/2009/10/ipforward-from-computer-with-linux-to-ps3/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 00:04:24 +0000</pubDate>
		<dc:creator>Éverton Arruda</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet INdT]]></category>
		<category><![CDATA[Planet PSL-AM]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[ipforward]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[PS3]]></category>

		<guid isPermaLink="false">http://earruda.eti.br/blog/?p=155</guid>
		<description><![CDATA[I&#8217;ve recently bought my PlayStation 3 (FInaly!!!!!) and was thinking of a way to connect my PS3 to the internet using my 3G BroadBand internet connection, which is provided by the brazilian Phone Company Claro. The only thing that came to me was: IpForward. So i did this: 1 &#8211; Connected my Notebook to the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently bought my PlayStation 3 (FInaly!!!!!) and was thinking of a way to connect my PS3 to the internet using my 3G BroadBand internet connection, which is provided by the brazilian Phone Company Claro. The only thing that came to me was: IpForward.</p>
<p>So i did this:<br />
<strong>1 &#8211; Connected my Notebook to the 3G Broadband:</strong><br />
Just connected as I normally do.</p>
<p><strong>2 &#8211; Connected my PS3 to my Notebook:</strong><br />
Created a LAN between them, through my notebook&#8217;s interface eth0.<br />
I configured my PS3&#8242;s network connection as follows:<br />
In the PS3&#8242;s main menu go to <strong>Settings</strong> > <strong>Network Settings</strong> > <strong>Internet Connection Settings</strong>, then, go through this sequence of choices: <strong>custom</strong>, <strong>wired connection</strong>, <strong>auto-detect</strong>, <strong>manual</strong> (the ip settings are shown bellow), <strong>automatic</strong>, <strong>do not use</strong> (in my case i don&#8217;t use any proxy), <strong>enable</strong>.</p>
<p>The Ip Settings are:<br />
<strong>Ip address:</strong> 192.168.0.2<br />
<strong>Subnet mask:</strong> 255.255.255.0<br />
<strong>Default Router:</strong> 192.168.0.1 (This is my Notebook&#8217;s Ip)<br />
<strong>Primary DNS:</strong> 208.67.222.222 (This is Claro&#8217;s primary DNS Server)<strong><br />
Secondary DNS:</strong> 208.67.220.220 (This is Claro&#8217;s secondary DNS Server)</p>
<p><strong>3 &#8211; Set Notebook to IpForward</strong><br />
I found a Script in the internet that does everything it needs to ipforward, all i did was add the final line, which sets a fixed ip to the interface that is connected to the LAN. I don&#8217;t remeber who wrote the script, but the credits are his/hers.<br />
All you have to do now is save the script bellow and run it everytime you want to connect your PS3:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br /></div></td><td><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/bin/sh</span><br />
<span style="color: #666666; font-style: italic;"># Basic firewall and forward/masquerade setup</span><br />
<br />
<span style="color: #007800;">PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>sbin:<span style="color: #000000; font-weight: bold;">/</span>bin:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<br />
<br />
<span style="color: #666666; font-style: italic;"># Delete/Flush old iptables rules</span><br />
iptables <span style="color: #660033;">-F</span><br />
iptables <span style="color: #660033;">-t</span> nat <span style="color: #660033;">-F</span><br />
iptables <span style="color: #660033;">-X</span><br />
<br />
<span style="color: #666666; font-style: italic;"># Set up IP FORWARDing and Masquerading</span><br />
iptables <span style="color: #660033;">--table</span> nat <span style="color: #660033;">--append</span> POSTROUTING <span style="color: #660033;">--out-interface</span> ppp0 <span style="color: #660033;">-j</span> MASQUERADE<br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;1&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>proc<span style="color: #000000; font-weight: bold;">/</span>sys<span style="color: #000000; font-weight: bold;">/</span>net<span style="color: #000000; font-weight: bold;">/</span>ipv4<span style="color: #000000; font-weight: bold;">/</span>ip_forward<br />
<br />
<span style="color: #c20cb9; font-weight: bold;">ifconfig</span> eth0 192.168.0.1 netmask 255.255.255.0</div></td></tr></tbody></table></div>
<p>If you did as it is described in here, then it should work just fine.</p>
<p>Just for the record, I&#8217;m sing BrDesktop Lenny Linux as Operating System (a Debian Pure Blend).</p>
<p><strong>Note:</strong> Everytime I try to test the connect through PS3, my notebook loses the ip 192.168.0.1 and starts o search for another one, breaking the connection between them. So i recommend you not to use that feature when using the connection method described in here.</p>
<p>:wq</p>
]]></content:encoded>
			<wfw:commentRss>http://earruda.eti.br/blog/2009/10/ipforward-from-computer-with-linux-to-ps3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DebianDay2009 Amazonas realizado!</title>
		<link>http://earruda.eti.br/blog/2009/08/debianday2009-amazonas-realizado/</link>
		<comments>http://earruda.eti.br/blog/2009/08/debianday2009-amazonas-realizado/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 19:44:15 +0000</pubDate>
		<dc:creator>Éverton Arruda</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Planet INdT]]></category>
		<category><![CDATA[Planet PSL-AM]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[debianday]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://earruda.eti.br/blog/?p=118</guid>
		<description><![CDATA[No último Sábado foi realizado o Debian Day 2009 Amazonas, evento que, como comentei em um post anterior, comemora o aniversário da distribuição Debian GNU/Linux. O evento, na minha opinião, foi muito bom. As pessoas que compareceram ao evento se mostraram bastante interessadas nos assuntos das palestras ministradas, muitas delas me procuraram apóas as palestras [...]]]></description>
			<content:encoded><![CDATA[<p><center><br />
<a href="http://marcelomendes.eti.br/img/debian-day2009-logo.png"><img alt="" src="http://marcelomendes.eti.br/img/debian-day2009-logo.png" title="DebianDay2009" class="alignnone" width="346" height="120" /></a><br />
</center></p>
<p>No último Sábado foi realizado o Debian Day 2009 Amazonas, evento que, como comentei em um post anterior, comemora o aniversário da distribuição Debian GNU/Linux.</p>
<p>O evento, na minha opinião, foi muito bom. As pessoas que compareceram ao evento se mostraram bastante interessadas nos assuntos das palestras ministradas, muitas delas me procuraram apóas as palestras para perguntar mais sobre o Debian-AM e sobre o Software Livre em manaus.</p>
<p>Um dos pontos maiores do evento foi a participação do criador e mantenedor do portal Viva o Linux (<a href="http://vivaolinux.com.br">http://vivaolinux.com.br</a>), Fábio Berbet, que fez duas palestras muito interessantes: &#8220;Como gerenciar um site com 8 milhões de acessos&#8221; e &#8220;Como ingressar no mercado com Software Livre&#8221;. Gostaria de deixar aqui meu agradecimento ao Fábio, desejar que o Viva o Linux continue crescendo e que possa leválo até a Espanha! hehehe, Quem estava no evento sabe do que eu estou falando.</p>
<p>Gostaria de parabenizar toda a equipe do Debian-AM, pela realização do evento, e a galera de manaus do Projeto Fedora e o representante do BrOffice em manaus, Carlos Lucoli, e a todos os patrocinadores e apoiadores, que nos ajudaram muito.</p>
<p>Como prometi, está aqui o slide da minha palestra sobre o Projeto BrDesktop:<br />
<a href="http://earruda.eti.br/files/projeto-brdesktop-pres.pdf">projeto-brdesktop-pres.pdf</a></p>
<p>:wq</p>
]]></content:encoded>
			<wfw:commentRss>http://earruda.eti.br/blog/2009/08/debianday2009-amazonas-realizado/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy Birthday, Debian!</title>
		<link>http://earruda.eti.br/blog/2009/08/happy-birthday-debian/</link>
		<comments>http://earruda.eti.br/blog/2009/08/happy-birthday-debian/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 18:22:43 +0000</pubDate>
		<dc:creator>Éverton Arruda</dc:creator>
				<category><![CDATA[Etc]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Planet PSL-AM]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Free Software]]></category>

		<guid isPermaLink="false">http://earruda.eti.br/blog/?p=112</guid>
		<description><![CDATA[Yesterday was Debian&#8217;s birthday, and I&#8217;d like to say: Happy Birthday, Debian!]]></description>
			<content:encoded><![CDATA[<p>Yesterday was Debian&#8217;s birthday, and I&#8217;d like to say:<br />
<center><br />
<font size="4"><strong>Happy Birthday, Debian!</strong></font><br />
<a href="http://profs.if.uff.br/tjpp/_media/blog/entradas/debian-cake.png"><img class="aligncenter" title="Happy Birthday, Debian!" src="http://profs.if.uff.br/tjpp/_media/blog/entradas/debian-cake.png" alt="" width="640" height="480" /></a><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://earruda.eti.br/blog/2009/08/happy-birthday-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
