<?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>Geek Style &#187; FreeBSD</title>
	<atom:link href="http://farrokhi.net/blog/index.php/archives/tag/freebsd/feed" rel="self" type="application/rss+xml" />
	<link>http://farrokhi.net/blog</link>
	<description>UNIX, InfoSec, Networking</description>
	<lastBuildDate>Fri, 11 May 2012 16:48:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>FreeBSD dotfiles</title>
		<link>http://farrokhi.net/blog/index.php/archives/580</link>
		<comments>http://farrokhi.net/blog/index.php/archives/580#comments</comments>
		<pubDate>Mon, 18 Jul 2011 09:28:34 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/blog/?p=580</guid>
		<description><![CDATA[<p>Unix system administrators develop their own customizations and configuration file templates over time. These customizations could be either personal customizations or system-wide customizations. Personal customizations live under each users home directory and the files name usually starts with a dot (which is why these files are usually called dot-files). And the system-wide customizations can be [...]]]></description>
			<content:encoded><![CDATA[<p>Unix system administrators develop their own customizations and configuration file templates over time. These customizations could be either personal customizations or system-wide customizations. Personal customizations live under each users home directory and the files name usually starts with a dot (which is why these files are usually called dot-files). And the system-wide customizations can be usually found under /etc hierarchy.</p>
<p>I also developed my own set of configuration templates that I use on almost every system I log into. They are usually kept on my private subversion server so I can update them from time to time and keep track of the changes as well.</p>
<p>So I am uploading a selection of my configuration files on my website so everyone can <a href="http://farrokhi.net/dotfiles/">grab</a> a copy and make his own modifications and use them. I use these files on FreeBSD and Mac OS X, but most of the parts can be used on Linux, Solaris, etc as well. I would also be glad to have your suggestions and feedback.</p>
<p><a href="http://farrokhi.net/dotfiles/">http://farrokhi.net/dotfiles/</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/580/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From Linux to FreeBSD &#8211; Part 1</title>
		<link>http://farrokhi.net/blog/index.php/archives/568</link>
		<comments>http://farrokhi.net/blog/index.php/archives/568#comments</comments>
		<pubDate>Fri, 31 Dec 2010 18:34:38 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://farrokhi.net/blog/?p=568</guid>
		<description><![CDATA[<p>I heard this so many times from different people that CLI in FreeBSD is much less user-friendly than CLI in Linux. But is it true?</p> <p>Unlike Linux that uses Bash shell, the default shell in FreeBSD is csh or tcsh. Linux users are used to tab completion, which is not the default behavior of C [...]]]></description>
			<content:encoded><![CDATA[<p>I heard this so many times from different people that CLI in FreeBSD is much less user-friendly than CLI in Linux. But is it true?</p>
<p>Unlike Linux that uses Bash shell, the default shell in FreeBSD is csh or tcsh. Linux users are used to tab completion, which is not the default behavior of C Shell. If you need to have tab completion, all you need to do is to add one line to your C shell configuration file (~/.cshrc) :</p>
<p><code>set autolist</code></p>
<p>And you will have your good old tab completion in C Shell.</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/568/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>make.conf in FreeBSD</title>
		<link>http://farrokhi.net/blog/index.php/archives/522</link>
		<comments>http://farrokhi.net/blog/index.php/archives/522#comments</comments>
		<pubDate>Thu, 05 Feb 2009 19:20:53 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/blog/?p=522</guid>
		<description><![CDATA[<p>I am type of person who likes to build everything from source code in FreeBSD to get better performance and other customizations. It has become a habit to play with ports tree and system source code and now I believe I have my own template for various server platforms.</p> <p>One of the most important parts [...]]]></description>
			<content:encoded><![CDATA[<p>I am type of person who likes to build everything from source code in FreeBSD to get better performance and other customizations. It has become a habit to play with ports tree and system source code and now I believe I have my own template for various server platforms.</p>
<p>One of the most important parts of each configuration template is the <code>/etc/make.conf</code> file. This is were you can change general behavior of the build system. This file is where you actually say which compiler optimizations should be used or what options has to be considered as defaults. Good news is that ports collection as well as the operating system itself honor these configuration.</p>
<p>Here is how a typical make.conf on one of my boxes look like:<br />
<code>CPUTYPE?=nocona</p>
<p>CFLAGS=         -O2 -pipe -fno-strict-aliasing<br />
COPTFLAGS=      -O2 -pipe -funroll-loops -ffast-math -fno-strict-aliasing</p>
<p>KERNCONF=       SERVER GENERIC</p>
<p>OPTIMIZED_CFLAGS=       YES<br />
WITHOUT_X11=            YES<br />
BUILD_OPTIMIZED=        YES<br />
WITH_CPUFLAGS=          YES<br />
WITHOUT_DEBUG=          YES<br />
WITH_OPTIMIZED_CFLAGS=  YES<br />
NO_PROFILE=             YES<br />
BUILD_STATIC=           YES</code><br />
<br />
The <code>CPUTYPE</code> variable tells <code>gcc</code> to optimize generated binary code for specified processor. In this case I am using 64bit Xeon processor architecture and &#8220;<code>nocona</code>&#8221; is the correct <code>CPUTYPE</code> to use. You may want to use &#8220;<code>pentium4</code>&#8221; on a typical Intel P4 CPU. A list of possible <code>CPUTYPE</code> values can be found in the sample <code>make.conf</code> file located at <code>/usr/share/examples/etc/make.conf</code>.</p>
<p><span id="more-522"></span>The <code>CFLAGS</code> variable indicates what parameters should be passed to gcc compiler when compiling typical programs such as ports or when building the whole operating system (i.e. <a href="http://www.freebsd.org/doc/en/books/handbook/makeworld.html">buildworld</a> process). I have been using this for a few years now and I haven&#8217;t experienced any issues in generated binaries.</p>
<p>The <code>COPTFLAGS</code> variables only applies to kernel builds. So if you need special compiler optimization for kernel, this is the variable you should consider using.</p>
<p>The <code>KERNCONF</code> tells system to compile one or more kernels based on the existing configuration files. In this example I have two kernels, first is GENERIC which is the default kernel file and exists in all systems by default and the other is the customized kernel configuration file called SERVER that I use on my typical servers. Both kernels will be built when running &#8220;<a href="http://www.freebsd.org/doc/en/books/handbook/kernelconfig-building.html"><code>make kernel</code></a>&#8220;. The first will be installed and used as the default kernel.</p>
<p>Everything else here is some defaults to be used mostly for ports. They can be found by looking into ports Makefile or the default make.conf file at <code>/usr/share/examples/etc/make.conf</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/522/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Syncing clock in FreeBSD</title>
		<link>http://farrokhi.net/blog/index.php/archives/506</link>
		<comments>http://farrokhi.net/blog/index.php/archives/506#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:51:27 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/blog/?p=506</guid>
		<description><![CDATA[<p>Keeping accurate time on a host (either a server or a workstation) is important because:</p> <p>1- You need to know accurately when you should go for lunch or back home<br /> 2- You need accurate time in your event log files for further analysis<br /> 3- Many programs need to have the correct date and [...]]]></description>
			<content:encoded><![CDATA[<p>Keeping accurate time on a host (either a server or a workstation) is important because:</p>
<p>1- You need to know accurately when you should go for lunch or back home<br />
2- You need accurate time in your event log files for further analysis<br />
3- Many programs need to have the correct date and time to function (e.g. MTA)<br />
4- You need correct timestamps on your files</p>
<p>Given above facts, you will need to enable <a href="http://en.wikipedia.org/wiki/Network_Time_Protocol">NTP</a> on your hosts and keep your system clock in sync with public time servers.</p>
<p>First you should make sure that your timezone setting is correct. The latest timezone information can be updated by installing &#8220;<code>zoneinfo</code>&#8221; port from <code>/usr/ports/misc/zoneinfo</code>:</p>
<p><code><br />
# cd /usr/ports/misc/zoneinfo/<br />
# make install clean<br />
</code></p>
<p>and run <code>tzsetup(8)</code> to make sure you have selected the correct timezone.</p>
<p>Now, to enable automatic time sync during system startup, you need to add a few lines to your <code>/etc/rc.conf</code> file:<br />
<code><br />
ntpdate_enable="YES"<br />
ntpdate_flags="-b pool.ntp.org"<br />
</code></p>
<p>This will make your system to sync the clock upon startup. I use NTP pool at &#8220;<code>pool.ntp.org</code>&#8221; that suggests a NTP server from a large pool of available time servers. However you may use your favorite/local NTP server.</p>
<p>You can also synchronize your time manually by invoking <code>ntpdate(8)</code> from command line, passing an NTP server address to it:<br />
<code><br />
# ntpdate time.nist.gov<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/506/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New website for my book</title>
		<link>http://farrokhi.net/blog/index.php/archives/366</link>
		<comments>http://farrokhi.net/blog/index.php/archives/366#comments</comments>
		<pubDate>Sat, 20 Sep 2008 13:10:46 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=366</guid>
		<description><![CDATA[<p>So after a while, I finally managed to <a href="http://freebsdbook.com/">launch a website</a> for my book, &#8220;<a href="http://freebsdbook.com/">Network Administration with FreeBSD 7</a>&#8220;. The new website is actually a blog and I would cross-post the topics related to the book on both websites.</p> <p>I would really appreciate your feedbacks on the current book and suggestions for future [...]]]></description>
			<content:encoded><![CDATA[<p>So after a while, I finally managed to <a href="http://freebsdbook.com/">launch a website</a> for my book, &#8220;<a href="http://freebsdbook.com/">Network Administration with FreeBSD 7</a>&#8220;. The new website is actually a blog and I would cross-post the topics related to the book on both websites.</p>
<p>I would really appreciate your feedbacks on the current book and suggestions for future editions.</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/366/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Administration with FreeBSD 7</title>
		<link>http://farrokhi.net/blog/index.php/archives/365</link>
		<comments>http://farrokhi.net/blog/index.php/archives/365#comments</comments>
		<pubDate>Thu, 17 Apr 2008 09:41:48 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=365</guid>
		<description><![CDATA[<p><a href="http://www.packtpub.com/network-administration-with-freebsd/book"></a><br /> <a href="http://www.packtpub.com/network-administration-with-freebsd/book">Network Administration with FreeBSD 7</a> is the book that I have been working on for past year. And now it is published by Packt and is available for purchase from various bookstores.</p> <p>This book is something that I have been looking for since I started with <a href="http://www.FreeBSD.org/">FreeBSD</a> back in 1997. [...]]]></description>
			<content:encoded><![CDATA[<p><span class="mt-enclosure mt-enclosure-image"><a href="http://www.packtpub.com/network-administration-with-freebsd/book"><img class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" src="http://www.farrokhi.net/blog/book-cover.jpg" alt="book-cover.jpg" width="270" height="333" /></a></span><br />
<a href="http://www.packtpub.com/network-administration-with-freebsd/book">Network Administration with FreeBSD 7</a> is the book that I have been working on for past year. And now it is published by Packt and is available for purchase from various bookstores.</p>
<p>This book is something that I have been looking for since I started with <a href="http://www.FreeBSD.org/">FreeBSD</a> back in 1997. I needed a practical book with working examples of how to optimize my FreeBSD installations for various types of applications. And I never found that book, until I recently decided to write one.</p>
<p>&#8220;<a href="http://www.packtpub.com/network-administration-with-freebsd/book">Network Administration with FreeBSD 7</a>&#8221; is unique in several ways:</p>
<ul>
<li>I tried to cover the exciting new features and improvements introduced in FreeBSD 7</li>
<li>It is full of tips and tricks on how to optimize your installation from optimizing disk I/O, network, virtual memory, etc.</li>
<li>It covers IPv4 and IPv6 configuration as well and bridging and routing in FreeBSD</li>
<li>It has working examples of different IPSec, GRE, PPP and GIF scenarios</li>
<li>I tried to cover Jail virtualization in working real world examples</li>
<li>Keeping your system up to date and customizing system for specific applications is thoroughly covered</li>
</ul>
<p>I tried to stop telling stories in the book and give more real world examples instead, so reading this book would not make you smile <img src='http://farrokhi.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>An article named <a href="http://www.packtpub.com/article/network-configuration-tunneling-with-free-bsd">Tunneling with FreeBSD</a> (taken from book) is also available on PACKT website.</p>
<p>Update: The book has its own <a href="http://freebsdbook.com/">website</a> at <a href="http://freebsdbook.com/">http://freebsdbook.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/365/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>What&#8217;s New in FreeBSD 7.0</title>
		<link>http://farrokhi.net/blog/index.php/archives/363</link>
		<comments>http://farrokhi.net/blog/index.php/archives/363#comments</comments>
		<pubDate>Wed, 27 Feb 2008 13:03:14 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[Advocacy]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=363</guid>
		<description><![CDATA[<p>I came across this interesting <a href="http://www.onlamp.com/lpt/a/7230">article</a> about upcoming <a href="http://www.freebsd.org/releases/7.0R/relnotes.html">FreeBSD 7</a> that outlines some of the most important changes in this release.</p> <p>The upcoming release of FreeBSD 7 is a major milestone for all FreeBSD developers and users. It is the most amazing release I have ever had the chance to play with. There [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this interesting <a href="http://www.onlamp.com/lpt/a/7230">article</a> about upcoming <a href="http://www.freebsd.org/releases/7.0R/relnotes.html">FreeBSD 7</a> that outlines some of the most important changes in this release.</p>
<p>The upcoming release of FreeBSD 7 is a major milestone for all FreeBSD developers and users.  It is the most amazing release I have ever had the chance to play with. There are plenty of new features and many improvements, especially in networking (which is my area of interest).<br />
I have had this chance to play with MySQL 5.1 running on FreeBSD 7 on top of 8 cores of Xeon processor in 64-bit mode. My impression was that it was almost as fast as kris&#8217;s <a href="http://people.freebsd.org/~kris/scaling/mysql.html">benchmarks</a> and totally kicked linux 2.6 in threading and SMP performance.</p>
<p>This is something I expected to see in FreeBSD 6. However FreeBSD seems to be catching up with linux again.</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/363/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Depenguinator, A great tool for the Linux enthusiasts</title>
		<link>http://farrokhi.net/blog/index.php/archives/362</link>
		<comments>http://farrokhi.net/blog/index.php/archives/362#comments</comments>
		<pubDate>Wed, 30 Jan 2008 05:24:14 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[Advocacy]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=362</guid>
		<description><![CDATA[<p><a href="http://www.daemonology.net/">Colin Percival</a> (The original author of <a href="http://www.daemonology.net/freebsd-update/">freebsd-update</a> and <a href="http://www.daemonology.net/bsdiff/">binary diff</a>), spent a few hours to resurrect the dead Depenguinator from ashes.<br /> Using <a href="http://www.daemonology.net/blog/2008-01-29-depenguinator-2.0.html">Depenguinator 2.0</a>, you can remotely upgrade a happily living Linux system to the latest version of FreeBSD. To me its extremely useful when upgrading a Linux box to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.daemonology.net/">Colin Percival</a> (The original author of <a href="http://www.daemonology.net/freebsd-update/">freebsd-update</a> and <a href="http://www.daemonology.net/bsdiff/">binary diff</a>), spent a few hours to resurrect the dead Depenguinator from ashes.<br />
Using <a href="http://www.daemonology.net/blog/2008-01-29-depenguinator-2.0.html">Depenguinator 2.0</a>, you can remotely upgrade a happily living Linux system to the latest version of FreeBSD. To me its extremely useful when upgrading a Linux box to FreeBSD in a hosting facility that does not offer any FreeBSD servers.</p>
<p>The project needs help from community to test and report issues back to the developer in order to improve the software. However it is worth giving a try on your Ubuntu box.</p>
<p>On a related note, I was thinking of porting this into the package repository of various Linux distributions. <img src='http://farrokhi.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/362/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting new features in Leopard</title>
		<link>http://farrokhi.net/blog/index.php/archives/360</link>
		<comments>http://farrokhi.net/blog/index.php/archives/360#comments</comments>
		<pubDate>Tue, 16 Oct 2007 16:29:40 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=360</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Now that Mac OS X 10.5 (Leopard) is due to be <a href="http://apple.slashdot.org/article.pl?sid=07/10/16/1358210">released</a> in 26 October, everyone is curious to see what is <a href="http://www.apple.com/macosx/features/300.html">new in this version</a> and upgrade as soon as its released.<br />
Among the many new features, there has been a few of them that seemed interesting to me:</p>
<blockquote><p><strong>Create Instruments with DTrace</strong><br/><br />
Monitor system activity from high-level application behavior down to the operating system kernel, all thanks to the power of DTrace and the instrument builder.</p></blockquote>
<p>Sounds familiar? Yes, its the same DTrace you know from <a href="http://www.sun.com/bigadmin/content/dtrace/">Solaris</a> (<a href="http://dtrace.what-creek.com/">also in FreeBSD</a>). It would be very interesting for system developers to get the best out of OS X core system. Of course, there is an eye-candy interface for using DTrace called <a href="mailto:http://developer.apple.com/leopard/overview/tools.html">Xray</a>.</p>
<blockquote><p><strong>Self-Tuning TCP</strong><br/><br />
Let Leopard adjust TCP buffer size automatically. Get optimum application performance, especially in high-bandwidth/high-latency environments.</p></blockquote>
<p>Using a BSD kernel, OS X already enjoys a fine-grained TCP/IP protocol stack, which supports latest enhancements and extensions. This self-tuning feature will definitely improve the network throughput in many situations. However I hope this can be disabled since some expert users prefer to configure the low level TCP/IP parameters based on their experience.</p>
<blockquote><p><strong>Application-Based Firewall</strong><br/><br />
Gain more control over the built-in firewall. Specify the behavior of specific applications to either allow or block incoming connections.</p></blockquote>
<p>This one was really missing in previous releases and many people were relying on <a href="http://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a> to achieve this feature. Of course I believe brilliant people in Apple were smart enough to make it so it does not annoy users like windows firewall does.</p>
<blockquote><p><strong>Sandboxing</strong><br/><br />
Enjoy a higher level of protection. Sandboxing prevents hackers from hijacking applications to run their own code by making sure applications only do what they’re intended to do. It restricts an application’s file access, network access, and ability to launch other applications. Many Leopard applications — such as Bonjour, Quick Look, and the Spotlight indexer — are sandboxed so hackers can’t exploit them.</p></blockquote>
<p>Something that I am sure has equivalent in Windows, almost like running an application in a <a href="http://en.wikipedia.org/wiki/Chroot">chroot</a>ed environment. However it sounds more complicated. This will hopefully improve the security in application level and reduce application level exploits (buffer overflow,&#8230;) risks.</p>
<blockquote><p><strong>Multicore Optimized</strong><br/><br />
Take full advantage of modern architectures with multiple processor cores with improved scheduling, memory management, and processor affinity algorithms.</p></blockquote>
<p>OS X was obviously not optimized for multi-core systems (despite the fact that apple has been shipping multi-core systems for more than a year). This enhancement will definitely improve the core system performance by getting the most out of processor power.</p>
<p><strong>Conclusion</strong></p>
<p>After using OS X for more than a year now, its my favorite <i>Desktop</i> environment. I like the eye-candy  user interface while enjoying enterprise grade FreeBSD system core. I cannot wait to upgrade to the latest release, but I am certain that it is worth to wait a few days more.</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/360/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FreeBSD 8</title>
		<link>http://farrokhi.net/blog/index.php/archives/359</link>
		<comments>http://farrokhi.net/blog/index.php/archives/359#comments</comments>
		<pubDate>Sun, 14 Oct 2007 17:29:31 +0000</pubDate>
		<dc:creator>Babak Farrokhi</dc:creator>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://farrokhi.net/wordpress/?p=359</guid>
		<description><![CDATA[<p>Finally RELENG_7 is <a href="http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/conf/newvers.sh?rev=1.73">born</a> and the HEAD is now 8.0-CURRENT. I just finished upgrading two of my development boxes to the latest HEAD:</p> # uname -a FreeBSD shaun.farrokhi.net 8.0-CURRENT FreeBSD 8.0-CURRENT #10: Sun Oct 14 11:33:16 IRST 2007 root@shaun.farrokhi.net: /usr/obj/usr/src/sys/SERVER i386 <p>Viva FreeBSD!</p>]]></description>
			<content:encoded><![CDATA[<p>Finally RELENG_7 is <a href="http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/conf/newvers.sh?rev=1.73">born</a> and the HEAD is now 8.0-CURRENT. I just finished upgrading two of my development boxes to the latest HEAD:</p>
<pre><code># uname -a
FreeBSD shaun.farrokhi.net 8.0-CURRENT FreeBSD 8.0-CURRENT #10:
Sun Oct 14 11:33:16 IRST 2007     root@shaun.farrokhi.net:
/usr/obj/usr/src/sys/SERVER  i386
</code></pre>
<p>Viva FreeBSD!</p>
]]></content:encoded>
			<wfw:commentRss>http://farrokhi.net/blog/index.php/archives/359/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

