<?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>Karlosp.net&#187; Linux</title>
	<atom:link href="http://www.karlosp.net/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karlosp.net/blog</link>
	<description>Malo mešano na žaru</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:18:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Fedora LVM to Ubuntu ext3</title>
		<link>http://www.karlosp.net/blog/2011/08/03/fedora-lvm-to-ubuntu-ext3/</link>
		<comments>http://www.karlosp.net/blog/2011/08/03/fedora-lvm-to-ubuntu-ext3/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 06:56:15 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[lvm2]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1238</guid>
		<description><![CDATA[Fedora LVM to Ubuntu ext3.]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.linux-sxs.org/storage/fedora2ubuntu.html'>Fedora LVM to Ubuntu ext3</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2011/08/03/fedora-lvm-to-ubuntu-ext3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DDWRT speed limit</title>
		<link>http://www.karlosp.net/blog/2011/07/07/ddwrt-speed-limit/</link>
		<comments>http://www.karlosp.net/blog/2011/07/07/ddwrt-speed-limit/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 15:36:49 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Malo mešano]]></category>
		<category><![CDATA[dd-wrt]]></category>
		<category><![CDATA[ddwrt]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1221</guid>
		<description><![CDATA[Save Script as Administrator -&#62; Commands -&#62; Save Firewall PLAIN TEXT CODE: # Firewall Script Start&#60;br /&#62; &#160; &#160; # Wait 10 seconds for Router startup&#60;br /&#62; &#160; &#160; sleep 10&#60;br /&#62; &#160; &#160; # br2 Web Access Only&#60;br /&#62; &#160; &#160; iptables -I FORWARD -i br2 -m state --state NEW -j ACCEPT&#60;br /&#62; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Save Script as Administrator -&gt; Commands -&gt; Save Firewall</p>
<p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showPlainTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"># Firewall Script Start&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # Wait <span style="color:#800000;color:#800000;">10</span> seconds for Router startup&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; sleep <span style="color:#800000;color:#800000;">10</span>&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # br2 Web Access Only&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I FORWARD -i br2 -m state --state NEW -j ACCEPT&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I FORWARD -i br2 -d `nvram get lan_ipaddr`/`nvram get lan_netmask` -m state --state NEW -j DROP&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -t nat -I POSTROUTING -o br0 -j SNAT --to `nvram get lan_ipaddr`&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I INPUT -i br2 -m state --state NEW -j DROP&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I INPUT -i br2 -p udp --dport <span style="color:#800000;color:#800000;">67</span> -j ACCEPT&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I INPUT -i br2 -p udp --dport <span style="color:#800000;color:#800000;">53</span> -j ACCEPT&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I INPUT -i br2 -p tcp --dport <span style="color:#800000;color:#800000;">53</span> -j ACCEPT&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # Share Printer with br2&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -I FORWARD -d <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">1</span>.<span style="color:#800000;color:#800000;">30</span> -j ACCEPT&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # Limit br2 download speed&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc qdisc del dev br2 root&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc qdisc add dev br2 root handle <span style="color:#800000;color:#800000;">1</span>: htb&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc class add dev br2 parent <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">1</span> classid <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">10</span> htb rate 1024kbit ceil 1024kbit prio <span style="color:#800000;color:#800000;">4</span>&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc filter add dev br2 parent <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">0</span> prio <span style="color:#800000;color:#800000;">4</span> protocol ip handle <span style="color:#800000;color:#800000;">10</span> fw flowid <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">10</span>&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -t mangle -A POSTROUTING -d <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">10</span>.<span style="color:#800000;color:#800000;">0</span>/<span style="color:#800000;color:#800000;">24</span> -j MARK --set-mark <span style="color:#800000;color:#800000;">10</span>&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # Limit br2 upload speed&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; insmod imq&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; insmod ipt_IMQ&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; ip link set imq0 up&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc qdisc del dev imq0 root&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc qdisc add dev imq0 root handle <span style="color:#800000;color:#800000;">1</span>: htb&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc class add dev imq0 parent <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">1</span> classid <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">10</span> htb rate 100kbit ceil 100kbit prio <span style="color:#800000;color:#800000;">4</span>&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; tc filter add dev imq0 parent <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">0</span> prio <span style="color:#800000;color:#800000;">4</span> protocol ip handle <span style="color:#800000;color:#800000;">10</span> fw flowid <span style="color:#800000;color:#800000;">1</span>:<span style="color:#800000;color:#800000;">10</span>&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -t mangle -A PREROUTING -s <span style="color:#800000;color:#800000;">192</span>.<span style="color:#800000;color:#800000;">168</span>.<span style="color:#800000;color:#800000;">10</span>.<span style="color:#800000;color:#800000;">0</span>/<span style="color:#800000;color:#800000;">24</span> -j MARK --set-mark <span style="color:#800000;color:#800000;">10</span>&lt;br /&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; iptables -t mangle -A PREROUTING -j IMQ --todev <span style="color:#800000;color:#800000;">0</span>&lt;br /&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; # Firewall Script Ends </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Change br2 with your brX, also change 192.168.10.0/24 to your needs</p>
<p><span class="postbody">Note about &ldquo;prio&rdquo;, I&rsquo;ve set it the lowest=4. Prio values are 0-4; 0=Highest, 1=High, 2=Normal, 3=Low &amp; 4=Lowest</span> <span class="postbody"><br />
	</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2011/07/07/ddwrt-speed-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9 &#8211; How to make a USB bootable BACKTRACK 4/5 (linux) drive &#8211; RMPrepUSB</title>
		<link>http://www.karlosp.net/blog/2011/06/17/9-how-to-make-a-usb-bootable-backtrack-45-linux-drive-rmprepusb/</link>
		<comments>http://www.karlosp.net/blog/2011/06/17/9-how-to-make-a-usb-bootable-backtrack-45-linux-drive-rmprepusb/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 16:38:02 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1213</guid>
		<description><![CDATA[title BackTrack 5 (1024x768) Persistent\nType startx to run GUI once booted PERSISTENT kernel /casper/vmlinuz file=/cdrom/preseed/custom.seed boot=casper text splash vga=791-- persistent initrd /casper/initrd.gz via 9 - How to make a USB bootable BACKTRACK 4/5 (linux) drive - RMPrepUSB.]]></description>
			<content:encoded><![CDATA[<p>title BackTrack 5 (1024x768) Persistent\nType startx to run GUI once booted PERSISTENT</p>
<p>    kernel /casper/vmlinuz file=/cdrom/preseed/custom.seed boot=casper text splash vga=791-- persistent</p>
<p>    initrd /casper/initrd.gz</p>
<p>via <a href='http://sites.google.com/site/rmprepusb/tutorials/how-to-make-a-usb-bootable-backtrack-4-drive'>9 - How to make a USB bootable BACKTRACK 4/5 (linux) drive - RMPrepUSB</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2011/06/17/9-how-to-make-a-usb-bootable-backtrack-45-linux-drive-rmprepusb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MySQL And phpMyAdmin On FreeNAS &#124; HowtoForge &#8211; Linux Howtos and Tutorials</title>
		<link>http://www.karlosp.net/blog/2011/05/30/installing-mysql-and-phpmyadmin-on-freenas-howtoforge-linux-howtos-and-tutorials/</link>
		<comments>http://www.karlosp.net/blog/2011/05/30/installing-mysql-and-phpmyadmin-on-freenas-howtoforge-linux-howtos-and-tutorials/#comments</comments>
		<pubDate>Mon, 30 May 2011 12:51:19 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1208</guid>
		<description><![CDATA[Installing MySQL And phpMyAdmin On FreeNAS &#124; HowtoForge - Linux Howtos and Tutorials. !!!!! mysql_install_db --user=mysql --ldata=/new-data-location]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.howtoforge.com/installing-mysql-and-phpmyadmin-on-freenas'>Installing MySQL And phpMyAdmin On FreeNAS | HowtoForge - Linux Howtos and Tutorials</a>.</p>
<p>!!!!!</p>
<p>mysql_install_db --user=mysql --ldata=/new-data-location</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2011/05/30/installing-mysql-and-phpmyadmin-on-freenas-howtoforge-linux-howtos-and-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux connecto to VPN</title>
		<link>http://www.karlosp.net/blog/2010/12/30/linux-connecto-to-vpn-2/</link>
		<comments>http://www.karlosp.net/blog/2010/12/30/linux-connecto-to-vpn-2/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 10:16:02 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1133</guid>
		<description><![CDATA[pppd noauth refuse-eap require-mppe name umbit password umbitgeslo usepeerdns require-chapms-v2 pty &#34;pptp mail.nektar.eu --nolaunchpppd&#34; http://www.question-defense.com/2009/08/13/configure-wrt54gs-running-dd-wrt-to-connect-to-office-vpn-connection http://open-wrt.ru/forum/viewtopic.php?pid=2108 Type of VPN: PPTP CHAP MS-CHAP v2 &#160; 10.0.1.1&#160;&#160;&#160;&#160;&#160;&#160;&#160; 0.0.0.0&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 255.255.255.255 UH&#160;&#160;&#160; 0&#160;&#160;&#160;&#160;&#160; 0&#160;&#160;&#160;&#160;&#160;&#160;&#160; 0 ppp0 193.189.184.134 192.168.2.1&#160;&#160;&#160;&#160; 255.255.255.255 UGH&#160;&#160; 0&#160;&#160;&#160;&#160;&#160; 0&#160;&#160;&#160;&#160;&#160;&#160;&#160; 0 eth0 pppd&#160; noauth&#160; nobsdcomp&#160; nodeflate&#160; require-mppe-128&#160; name&#160; umbit password umbitgeslo&#160; pty &#34;pptp mail.nektar.eu --nolaunchpppd&#34;]]></description>
			<content:encoded><![CDATA[<p>pppd noauth refuse-eap require-mppe name umbit password umbitgeslo usepeerdns require-chapms-v2 pty &quot;pptp mail.nektar.eu --nolaunchpppd&quot;</p>
<p>http://www.question-defense.com/2009/08/13/configure-wrt54gs-running-dd-wrt-to-connect-to-office-vpn-connection</p>
<p>http://open-wrt.ru/forum/viewtopic.php?pid=2108</p>
<p>
	Type of VPN: PPTP<br />
	CHAP<br />
	MS-CHAP v2<br />
	&nbsp;</p>
<p>10.0.1.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0.0.0.0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 255.255.255.255 UH&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0 ppp0<br />
	193.189.184.134 192.168.2.1&nbsp;&nbsp;&nbsp;&nbsp; 255.255.255.255 UGH&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0 eth0</p>
<p>	pppd&nbsp; noauth&nbsp; nobsdcomp&nbsp; nodeflate&nbsp; require-mppe-128&nbsp; name&nbsp; umbit password umbitgeslo&nbsp; pty &quot;pptp mail.nektar.eu --nolaunchpppd&quot;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/12/30/linux-connecto-to-vpn-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nano Command Manual</title>
		<link>http://www.karlosp.net/blog/2010/11/24/nano-command-manual/</link>
		<comments>http://www.karlosp.net/blog/2010/11/24/nano-command-manual/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 12:58:08 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1114</guid>
		<description><![CDATA[5 Nanorc Files set undo set historylog set tabsize 4 set const via nano Command Manual.]]></description>
			<content:encoded><![CDATA[<p>5 Nanorc Files</p>
<p>set undo<br />
set historylog<br />
set tabsize 4<br />
set const</p>
<p>via <a href='http://www.nano-editor.org/dist/v2.1/nano.html'>nano Command Manual</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/11/24/nano-command-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeNAS forum • View topic &#8211; mount other NAS share using SMBFS</title>
		<link>http://www.karlosp.net/blog/2010/10/14/freenas-forum-%e2%80%a2-view-topic-mount-other-nas-share-using-smbfs/</link>
		<comments>http://www.karlosp.net/blog/2010/10/14/freenas-forum-%e2%80%a2-view-topic-mount-other-nas-share-using-smbfs/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 06:15:33 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1081</guid>
		<description><![CDATA[mount_smbfs //toto@NAS-BACKUP/Volume_1-1 /mnt/BACKUP_NAS/ via FreeNAS forum • View topic - mount other NAS share using SMBFS.]]></description>
			<content:encoded><![CDATA[<p>mount_smbfs //toto@NAS-BACKUP/Volume_1-1 /mnt/BACKUP_NAS/</p>
<p>via <a href='http://sourceforge.net/apps/phpbb/freenas/viewtopic.php?f=46&#038;t=551'>FreeNAS forum • View topic - mount other NAS share using SMBFS</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/10/14/freenas-forum-%e2%80%a2-view-topic-mount-other-nas-share-using-smbfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winexe 0.91 for [FreeBSD 7.3 &#124; FreeNAS 0.7.1]</title>
		<link>http://www.karlosp.net/blog/2010/10/06/winexe-0-91-for-freebsd-7-3-freenas-0-7-1/</link>
		<comments>http://www.karlosp.net/blog/2010/10/06/winexe-0-91-for-freebsd-7-3-freenas-0-7-1/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 13:33:49 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1070</guid>
		<description><![CDATA[Winexe 0.91 for [FreeBSD 7.3 &#124; FreeNAS 0.7.1] Compiled on FreeBSD 7.3 Winexe-FreeBSD]]></description>
			<content:encoded><![CDATA[<p>Winexe 0.91 for [FreeBSD 7.3 | FreeNAS 0.7.1]</p>
<p>Compiled on FreeBSD 7.3</p>
<p><a href="http://www.karlosp.net/blog/wp-content/uploads/2010/10/Winexe-FreeBSD.zip">Winexe-FreeBSD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/10/06/winexe-0-91-for-freebsd-7-3-freenas-0-7-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux, bash find in files</title>
		<link>http://www.karlosp.net/blog/2010/09/30/linux-bash-find-in-files/</link>
		<comments>http://www.karlosp.net/blog/2010/09/30/linux-bash-find-in-files/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 09:38:28 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=1068</guid>
		<description><![CDATA[find . -type f -exec grep -i &#34;redeem reward&#34; {} \; -print 2&#62;/dev/null]]></description>
			<content:encoded><![CDATA[<p>find . -type f -exec grep -i &quot;redeem reward&quot; {} \; -print 2&gt;/dev/null</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/09/30/linux-bash-find-in-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple WLANs &#8211; DD-WRT Wiki</title>
		<link>http://www.karlosp.net/blog/2010/02/14/multiple-wlans-dd-wrt-wiki/</link>
		<comments>http://www.karlosp.net/blog/2010/02/14/multiple-wlans-dd-wrt-wiki/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 22:51:44 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=995</guid>
		<description><![CDATA[Multiple WLANs via Multiple WLANs - DD-WRT Wiki. &#160; Separate networks http://www.dd-wrt.com/wiki/index.php/VLAN_Detached_Networks_(Separate_Networks_With_Internet)]]></description>
			<content:encoded><![CDATA[<p>Multiple WLANs</p>
<p>via <a href="http://www.dd-wrt.com/wiki/index.php/Multiple_WLANs">Multiple WLANs - DD-WRT Wiki</a>.</p>
<p>&nbsp;</p>
<p>Separate networks</p>
<p><a href="http://www.dd-wrt.com/wiki/index.php/VLAN_Detached_Networks_(Separate_Networks_With_Internet)">http://www.dd-wrt.com/wiki/index.php/VLAN_Detached_Networks_(Separate_Networks_With_Internet)<br />
	</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2010/02/14/multiple-wlans-dd-wrt-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

