<?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>Techonia.com &#187; BSD</title>
	<atom:link href="http://www.techonia.com/category/bsd/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techonia.com</link>
	<description>News, Tutorials, and How-tos about Technology</description>
	<lastBuildDate>Sat, 28 Aug 2010 16:25:37 +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>How to add or create swap file on Linux and FreeBSD</title>
		<link>http://www.techonia.com/add-swap-file-linux-freebsd</link>
		<comments>http://www.techonia.com/add-swap-file-linux-freebsd#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:05:40 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mdconfig]]></category>
		<category><![CDATA[mkswap]]></category>
		<category><![CDATA[Swap file]]></category>
		<category><![CDATA[swapon]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1807</guid>
		<description><![CDATA[Sometime you need to increase swap memory to run softwares that need more swap as the requirement or to improve the system performance. In this article I will show you on how to add more swap by adding a swap file on Linux and FreeBSD. We will create 1 GB or 1024 MB swap size.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/add-swap-file-linux-freebsd";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>Sometime you need to increase swap memory to run softwares that need more swap as the requirement or to improve the system performance. In this article I will show you on how to add more swap by adding a swap file on Linux and FreeBSD. We will create 1 GB or 1024 MB swap size.</p>
<p><strong>1. Adding swap file on Linux</strong></p>
<p>Login as root or change to super user then type the following command to create 1 GB swap file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">if</span></span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>zero <span style="color: #007800;">of</span>=<span style="color: #000000; font-weight: bold;">/</span>swap1 <span style="color: #007800;">bs</span>=1M <span style="color: #007800;">count</span>=<span style="color: #000000;">1024</span></pre></div></div>

<p><span id="more-1807"></span><br />
For example, my result is as below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">bash-<span style="color: #000000;">3.1</span><span style="color: #666666; font-style: italic;"># dd if=/dev/zero of=/swap1 bs=1M count=1024</span>
<span style="color: #000000;">1024</span>+<span style="color: #000000;">0</span> records <span style="color: #000000; font-weight: bold;">in</span>
<span style="color: #000000;">1024</span>+<span style="color: #000000;">0</span> records out
<span style="color: #000000;">1073741824</span> bytes <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">1.1</span> GB<span style="color: #7a0874; font-weight: bold;">&#41;</span> copied, <span style="color: #000000;">28.3646</span> s, <span style="color: #000000;">37.9</span> MB<span style="color: #000000; font-weight: bold;">/</span>s</pre></div></div>

<p>Run &#8216;mkswap&#8217; to set up a Linux swap area on a device or in a file, in this case in the /swap1 file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mkswap <span style="color: #000000; font-weight: bold;">/</span>swap1</pre></div></div>

<p>For example:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">bash-<span style="color: #000000;">3.1</span><span style="color: #666666; font-style: italic;"># mkswap /swap1</span>
Setting up swapspace version <span style="color: #000000;">1</span>, <span style="color: #c20cb9; font-weight: bold;">size</span> = <span style="color: #000000;">1048572</span> KiB
no label, <span style="color: #007800;">UUID</span>=e501fc72-f731-<span style="color: #000000;">4624</span>-ab45-ee898f6cf1c5</pre></div></div>

<p>After setting up the swap area, now we need to enable / activate the swap file by using &#8216;swapon&#8217; command.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">swapon <span style="color: #000000; font-weight: bold;">/</span>swap1</pre></div></div>

<p>You are done. But the swap file will be disable if you reboot the system. To make it enable at boot, you need to add the swap file in the /etc/fstab file like below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>swap1         swap             swap        defaults         <span style="color: #000000;">0</span>   <span style="color: #000000;">0</span></pre></div></div>

<p><strong>2. Adding swap file on FreeBSD</strong></p>
<p>Login as root or change to super user then run the following command to create 1 GB swap file. The same as in Linux but the swap file stored under directory /usr because this folder has more space in my system configuration.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dd</span> <span style="color: #007800;"><span style="color: #000000; font-weight: bold;">if</span></span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>zero <span style="color: #007800;">of</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>swap1 <span style="color: #007800;">bs</span>=1M <span style="color: #007800;">count</span>=<span style="color: #000000;">1024</span></pre></div></div>

<p>For example, mine is as below:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>freebsd<span style="color: #666666; font-style: italic;"># dd if=/dev/zero of=/usr/swap1 bs=1M count=1024</span>
<span style="color: #000000;">1024</span>+<span style="color: #000000;">0</span> records <span style="color: #000000; font-weight: bold;">in</span>
<span style="color: #000000;">1024</span>+<span style="color: #000000;">0</span> records out
<span style="color: #000000;">1073741824</span> bytes transferred <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000;">42.351062</span> secs <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">25353362</span> bytes<span style="color: #000000; font-weight: bold;">/</span>sec<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>Then change the proper permission of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">600</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>swap1</pre></div></div>

<p>Enable the swap file in /etc/rc.conf to activate it at boot:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">swapfile</span>=<span style="color: #ff0000;">&quot;/usr/swap1&quot;</span></pre></div></div>

<p>The last thing is enable or activate the swap file immediately by running the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mdconfig <span style="color: #660033;">-a</span> <span style="color: #660033;">-t</span> vnode <span style="color: #660033;">-f</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>swap0 <span style="color: #660033;">-u</span> <span style="color: #000000;">0</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> swapon <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>md0</pre></div></div>

<p>References:<br />
1. http://www.cyberciti.biz/faq/linux-add-a-swap-file-howto<br />
2. http://www.freebsd.org/doc/handbook/adding-swap-space.html</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="freebsd mkswap">freebsd mkswap</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="create swap file linux">create swap file linux</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="mkswap freebsd">mkswap freebsd</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="slackware swap file">slackware swap file</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="increase swap space freebsd">increase swap space freebsd</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="create swap space in gb">create swap space in gb</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="mkswap file">mkswap file</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="freebsd dd label">freebsd dd label</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="linux create swap file">linux create swap file</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="freebsd increase swap">freebsd increase swap</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="make swap file">make swap file</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="make swap file linux">make swap file linux</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="how to dd">how to dd</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="make 1 gig swap file">make 1 gig swap file</a></li><li><a href="http://www.techonia.com/add-swap-file-linux-freebsd" title="how to increase swap in freebsd">how to increase swap in freebsd</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 6.655 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/add-swap-file-linux-freebsd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD 8.1-RELEASE Officially Announced</title>
		<link>http://www.techonia.com/freebsd-8-1-release-officially-announced</link>
		<comments>http://www.techonia.com/freebsd-8-1-release-officially-announced#comments</comments>
		<pubDate>Sat, 24 Jul 2010 11:58:08 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeBSD 8.1]]></category>
		<category><![CDATA[NFSv4 ACL]]></category>
		<category><![CDATA[zfsloader]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1788</guid>
		<description><![CDATA[Nearly three weeks after announcing the second release candidates, the FreeBSD Engineering Team has announced that the FreeBSD 8.1 Final Release is available to download.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/freebsd-8-1-release-officially-announced";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>Nearly three weeks after announcing the second release candidates, the FreeBSD Engineering Team has announced that the FreeBSD 8.1 Final Release is available to download.</p>
<p>This is the second release of the 8-stable branch which improves on the functionality of FreeBSD 8.0 and introduce many new features.</p>
<p><span id="more-1788"></span>Below are some of its highlights:</p>
<ul>
<li>zfsloader added</li>
<li>zpool version of ZFS subsystem updated to version 14</li>
<li>NFSv4 ACL support in UFS and ZFS; support added to cp(1), find(1), getfacl(1), mv(1), and setfacl(1) utilities</li>
<li>UltraSPARC IV/IV+, SPARC64 V support</li>
<li>SMP support in PowerPC G5</li>
<li>BIND 9.6.2-P2</li>
<li>sendmail updated to 8.14.4</li>
<li>OpenSSH updated to 5.4p1</li>
<li>GNOME 2.30.1, KDE 4.4.5</li>
</ul>
<p>For a complete list of new features and known problems, please see the online <a href="http://www.freebsd.org/releases/8.1R/relnotes.html" target="_blank">release notes</a> and <a href="http://www.freebsd.org/releases/8.1R/errata.html" target="_blank">errata list</a>.</p>
<p><strong>About FreeBSD</strong></p>
<p>FreeBSD® is an advanced operating system for modern server, desktop, and embedded computer platforms. FreeBSD&#8217;s code base has undergone over thirty years of continuous development, improvement, and optimization. It is developed and maintained by a large team of individuals. FreeBSD provides advanced networking, impressive security features, and world class performance and is used by some of the world&#8217;s busiest web sites and most pervasive embedded networking and storage devices.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd 8 1 zfsloader">freebsd 8 1 zfsloader</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd zfsloader">freebsd zfsloader</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd 8 1 nfsv4">freebsd 8 1 nfsv4</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="FreeBSD 8 1 JDK">FreeBSD 8 1 JDK</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd 8 1 reviews">freebsd 8 1 reviews</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="8 1 zfsloader">8 1 zfsloader</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="zfsloader 8 1">zfsloader 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="FreeBSD 8 1 java">FreeBSD 8 1 java</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="windows support in FreeBSD 8 1 Final">windows support in FreeBSD 8 1 Final</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd 81 java">freebsd 81 java</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="freebsd howto update to 8 1">freebsd howto update to 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="Zfsloader">Zfsloader</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="FreeBSD zfsloader howto">FreeBSD zfsloader howto</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="instalar eclipse en freebsd 8 1">instalar eclipse en freebsd 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-release-officially-announced" title="instalando freebsd 8 1">instalando freebsd 8 1</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.432 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/freebsd-8-1-release-officially-announced/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PC-BSD 8.1 Officially Released</title>
		<link>http://www.techonia.com/pc-bsd-8-1-officially-released</link>
		<comments>http://www.techonia.com/pc-bsd-8-1-officially-released#comments</comments>
		<pubDate>Thu, 22 Jul 2010 11:51:33 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[PC-BSD]]></category>
		<category><![CDATA[Encryption pass-phrase]]></category>
		<category><![CDATA[GPT partitioning]]></category>
		<category><![CDATA[PC-BSD 8.1]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1767</guid>
		<description><![CDATA[The PC-BSD Dev Team has announced the availability of PC-BSD 8.1 (Hubble Edition), running on FreeBSD 8.1 kernel. The new release comes with a number of enhancements and improvements.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/pc-bsd-8-1-officially-released";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>The PC-BSD Dev Team has announced the availability of PC-BSD 8.1 (Hubble Edition), running on FreeBSD 8.1 kernel.</p>
<p>The new release comes with a number of enhancements and improvements. The most notable changes are as follows:</p>
<ul>
<li>FreeBSD 8.1-Release</li>
<li>KDE 4.4.5</li>
<li>Numerous fixes to the installation backend</li>
<li>Support for creating dedicated disk GPT partitioning</li>
<li>Improved ZFS support</li>
<li>Bugfixes to desktop tools / utilities</li>
</ul>
<p><span id="more-1767"></span>According to the release announcement, below are the full changelog of the new release:</p>
<ul>
<li>Updated to KDE 4.4.5</li>
<li>Updated to FreeBSD 8.1</li>
<li>Numerous fixes to installer, such as: Switch to &#8220;gpart&#8221; instead of fdisk for backend, Improvements to ZFS, allowing mirror / raidz setup via GUI, Encryption pass-phrase support, Use GPT partitioning when running in dedicated disk mode</li>
<li>Improvements to life-preserver backup tool</li>
<li>Fixed issue running downloaded python / ruby plasmoids</li>
<li>Fixed nepomuk / strigi default init at first login</li>
<li>Fixed issues with wifi tools in calculating signal strength</li>
<li>ZFS syntax fix for installs to MBR partition</li>
<li>During upgrade now install selected components properly</li>
<li>Don&#8217;t use &#8220;lagg&#8221; device on systems with no wifi</li>
<li>Use &#8220;async&#8221; for journaled file-systems</li>
<li>Enable double-click partition editing action</li>
<li>Fixed backwards numlock logic in KDE</li>
<li>Added fixes to reduce kdeinit cpu usage from file polling</li>
<li>Use 24 bit color depth during install by default</li>
</ul>
<p>The download files are available in its <a href="http://www.pcbsd.org/content/view/169/11/" target="_blank">mirrors site</a>.</p>
<p><strong>About PC-BSD</strong></p>
<p>PC-BSD is a free operating system with ease of use in mind. Like any modern system, you can listen to your favorite music, watch your movies, work with office documents and install your favorite applications with a setup wizard at a click.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc-bsd gpt">pc-bsd gpt</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd wifi">pcbsd wifi</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc-bsd 8 1">pc-bsd 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="cache:QEBS8Ynk3PEJ:www techonia com/pc-bsd-8-1-officially-released pc-bsd wifi">cache:QEBS8Ynk3PEJ:www techonia com/pc-bsd-8-1-officially-released pc-bsd wifi</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc-bsd wifi">pc-bsd wifi</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc bsd 8 1 reviews">pc bsd 8 1 reviews</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd Encryption pass-phrase">pcbsd Encryption pass-phrase</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd 8 1 with virtualbox">pcbsd 8 1 with virtualbox</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd 8 1 wifi howto">pcbsd 8 1 wifi howto</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd 8 1 virtualbox">pcbsd 8 1 virtualbox</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="zfs install pcbsd 8 1">zfs install pcbsd 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd 8 1 kernel">pcbsd 8 1 kernel</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pcbsd 8 1 in virtualbox">pcbsd 8 1 in virtualbox</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc-bsd zfs installation 8 1">pc-bsd zfs installation 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-officially-released" title="pc-bsd install gpt zfs">pc-bsd install gpt zfs</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.838 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/pc-bsd-8-1-officially-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Microsoft Windows Fonts on OpenBSD</title>
		<link>http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd</link>
		<comments>http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd#comments</comments>
		<pubDate>Mon, 19 Jul 2010 12:59:24 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[OpenBSD 4.7]]></category>
		<category><![CDATA[TrueType Fonts]]></category>
		<category><![CDATA[Windows Fonts]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1760</guid>
		<description><![CDATA[You may need more fonts as Microsoft Windows has. If you use OpenBSD as your main desktop as a daily work OS rather than using Windows or Linux, you will need more fonts to make your desktop good looking with Windows Fonts. You can easily install the Microsoft Windows fonts on OpenBSD by following this tutorial.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>Basically a collection of popular TrueType fonts are already compiled and available in the OpenBSD ports tree, in /usr/ports/x11/msttcorefonts. The ports collection also include other TrueType fonts packages, especially the liberation fonts that can be used as a replacement for the Microsoft Web fonts above and are distributed with a more acceptable license.</p>
<p>You can install the fonts via ports as follow:<br />
<span id="more-1760"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># cd /usr/ports/x11/msttcorefonts</span>
<span style="color: #666666; font-style: italic;"># make install</span></pre></div></div>

<p>You may need more fonts as Microsoft Windows has. If you use OpenBSD as your main desktop as a daily work OS rather than using Windows or Linux, you will need more fonts to make your desktop good looking with Windows Fonts.<br />
You can easily install the Microsoft Windows fonts on OpenBSD by following this tutorial.<br />
Here are the step by step how to install Windows fonts on OpenBSD.</p>
<p>1. Copy the Microsoft Windows Fonts<br />
First you need to copy all the *.ttf file located at &#8216;C:\Windows\Fonts&#8217; of Microsoft Windows operating system.<br />
To make it easy to copy / import the fonts into OpenBSD, just zip the folder to be Fonts.zip file then upload it to your FTP / Web server. Later you can download it to OpenBSD system.</p>
<p>2. Store the folder in OpenBSD fonts directory<br />
After getting the Windows fonts using the above step, or whatever way you did to copy into OpenBSD system, store the fonts into OpenBSD fonts directory located in /usr/X11R6/lib/X11/fonts/ and make it WinFonts.</p>
<p>3. And the new fonts path into /etc/X11/xorg.conf<br />
You need to add the fonts path into /etc/X11/xorg.conf file as follow:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Section <span style="color: #ff0000;">&quot;Files&quot;</span>
        ...
        FontPath     <span style="color: #ff0000;">&quot;/usr/X11R6/lib/X11/fonts/TTF/&quot;</span>
        FontPath     <span style="color: #ff0000;">&quot;/usr/X11R6/lib/X11/fonts/WinFonts/&quot;</span>
	...
EndSection</pre></div></div>

<p>4. To build a fonts.scale file, use the &#8216;mkfontscale&#8217;:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">    <span style="color: #666666; font-style: italic;"># cd /usr/X11R6/lib/X11/fonts/WinFonts/</span>
    <span style="color: #666666; font-style: italic;"># /usr/X11R6/bin/mkfontscale</span>
    <span style="color: #666666; font-style: italic;"># /usr/X11R6/bin/mkfontdir</span></pre></div></div>

<p>5. Apply the changes to the current X session</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">    $ <span style="color: #c20cb9; font-weight: bold;">xset</span> fp rehash
    $ <span style="color: #c20cb9; font-weight: bold;">xset</span> +fp <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>X11R6<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>X11<span style="color: #000000; font-weight: bold;">/</span>fonts<span style="color: #000000; font-weight: bold;">/</span>WinFonts</pre></div></div>

<p>Now you are ready to use Microsoft Windows Fonts on OpenBSD. Try to change the default fonts to the MS Windows fonts that we just added before.</p>
<p>For comparation, below are the capture of Mozilla Firefox accessing Yahoo Website before and after using TrueType fonts (MS Windows Fonts).</p>
<div id="attachment_1761" class="wp-caption aligncenter" style="width: 458px"><a class="highslide" onclick="return vz.expand(this)" href="http://www.techonia.com/wp-content/uploads/2010/07/yahoo-page-before.png"><img src="http://www.techonia.com/wp-content/uploads/2010/07/yahoo-page-before.png" alt="" title="yahoo-page-before" width="448" height="292" class="size-full wp-image-1761" /></a><p class="wp-caption-text">Before Using Windows Fonts (click to enlarge)</p></div>
<div id="attachment_1762" class="wp-caption aligncenter" style="width: 458px"><a class="highslide" onclick="return vz.expand(this)" href="http://www.techonia.com/wp-content/uploads/2010/07/yahoo-page-after.png"><img src="http://www.techonia.com/wp-content/uploads/2010/07/yahoo-page-after.png" alt="" title="yahoo-page-after" width="448" height="309" class="size-full wp-image-1762" /></a><p class="wp-caption-text">After Using Windows Fonts (click to enlarge)</p></div>
<p>Reference: http://www.openbsd.org/faq/truetype.html</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="mkfontscale windows">mkfontscale windows</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd">openbsd</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="ms fonts mandriva 2010">ms fonts mandriva 2010</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="microsoft windows fonts mandriva">microsoft windows fonts mandriva</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="msttcorefonts pc-bsd">msttcorefonts pc-bsd</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="linux firefox with windows fonts">linux firefox with windows fonts</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="msttcorefonts openbsd">msttcorefonts openbsd</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="ms ttf fonts bsd">ms ttf fonts bsd</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd 4 7 adding fonts to X">openbsd 4 7 adding fonts to X</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd 4 7 desktop">openbsd 4 7 desktop</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd fonts conf">openbsd fonts conf</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd how to update your font path">openbsd how to update your font path</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="OpenBSD microsoft application">OpenBSD microsoft application</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="openbsd microsoft core fonts">openbsd microsoft core fonts</a></li><li><a href="http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd" title="OpenBSD microsoft fonts">OpenBSD microsoft fonts</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 7.984 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/install-microsoft-windows-fonts-on-openbsd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenBSD 4.7 Screenshot using XFCE4</title>
		<link>http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4</link>
		<comments>http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4#comments</comments>
		<pubDate>Mon, 19 Jul 2010 11:30:26 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[OpenBSD 4.7]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1758</guid>
		<description><![CDATA[OpenBSD 4.7 is the latest release of OpenBSD operating system. It was released in May 19, 2010. I have installed OpenBSD 4.7 into my Compaq Presario Laptop triple-booted with Windows 7 Ultimate and Slackware 13.1]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p>OpenBSD 4.7 is the latest release of OpenBSD operating system. It was released in May 19, 2010. I have installed OpenBSD 4.7 into my Compaq Presario Laptop triple-booted with Windows 7 Ultimate and Slackware 13.1</p>
<p>Here are some screenshots of OpenBSD 4.7 using XFCE4 Window Manager. Enjoy!!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-5-1758">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://www.techonia.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=5&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/openbsd47-desktop1.jpg" title=" " class="shutterset_set_5" >
								<img title="openbsd47-desktop1" alt="openbsd47-desktop1" src="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/thumbs/thumbs_openbsd47-desktop1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/openbsd47-desktop2.jpg" title=" " class="shutterset_set_5" >
								<img title="openbsd47-desktop2" alt="openbsd47-desktop2" src="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/thumbs/thumbs_openbsd47-desktop2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/openbsd47-desktop3.jpg" title=" " class="shutterset_set_5" >
								<img title="openbsd47-desktop3" alt="openbsd47-desktop3" src="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/thumbs/thumbs_openbsd47-desktop3.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/openbsd47-desktop4.jpg" title=" " class="shutterset_set_5" >
								<img title="openbsd47-desktop4" alt="openbsd47-desktop4" src="http://www.techonia.com/wp-content/gallery/openbsd-4-7-xfce/thumbs/thumbs_openbsd47-desktop4.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 screenshots">openbsd 4 7 screenshots</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd xfce">openbsd xfce</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 screenshot">openbsd 4 7 screenshot</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 xfce">openbsd 4 7 xfce</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 virtualbox">openbsd 4 7 virtualbox</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7">openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="screenshots of openbsd 4 7">screenshots of openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 xfce4">openbsd 4 7 xfce4</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="Virtualbox OpenBSD 4 7">Virtualbox OpenBSD 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="install xfce openbsd">install xfce openbsd</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="screenshots of openbsd">screenshots of openbsd</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="xfce on openbsd 4 7">xfce on openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 vs">openbsd 4 7 vs</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 best window manager">openbsd 4 7 best window manager</a></li><li><a href="http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4" title="openbsd 4 7 xfce desktop">openbsd 4 7 xfce desktop</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.434 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/openbsd-4-7-screenshot-using-xfce4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD 8.1-RC2 Available for Download</title>
		<link>http://www.techonia.com/freebsd-8-1-rc2-available-for-download</link>
		<comments>http://www.techonia.com/freebsd-8-1-rc2-available-for-download#comments</comments>
		<pubDate>Sat, 03 Jul 2010 12:36:26 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeBSD 8.1 RC2]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1724</guid>
		<description><![CDATA[After announcing the first release candidate (RC1) of the FreeBSD 8.1 two weeks ago, today the FreeBSD Project announced the availability of FreeBSD 8.1-RC2. This is most likely final Release Candidate for the FreeBSD 8.1 release cycle available for amd64, i386, ia64, powerpc, and sparc64 architectures.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/freebsd-8-1-rc2-available-for-download";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p><a class="highslide" onclick="return vz.expand(this)" href="http://www.techonia.com/wp-content/uploads/2010/03/the-freebsd.gif"><img class="alignleft size-thumbnail wp-image-1272" title="the-freebsd" src="http://www.techonia.com/wp-content/uploads/2010/03/the-freebsd-150x150.gif" alt="" width="150" height="150" /></a>After announcing the first release candidate (RC1) of the FreeBSD 8.1 two weeks ago, today the FreeBSD Project announced the availability of FreeBSD 8.1-RC2. This is most likely final Release Candidate for the FreeBSD 8.1 release cycle available for amd64, i386, ia64, powerpc, and sparc64 architectures.</p>
<p>The RC2 should fix a problem related to Atheros AR9280 cards being detected incorrectly making them unusable.  Testing of this fix would be appreciated.</p>
<p><span id="more-1724"></span>According to <a href="http://lists.freebsd.org/pipermail/freebsd-stable/2010-July/057552.html" target="_blank">the release announcement</a> DVD images are not available at present because there was a fairly serious security issue with the png graphics package. Don&#8217;t worry they will generate DVD images when the rebuilt packages become available, that will be announced then the images are ready.</p>
<p><strong>About FreeBSD</strong></p>
<p>FreeBSD® is an advanced operating system for modern server, desktop, and embedded computer platforms. FreeBSD&#8217;s code base has undergone over thirty years of continuous development, improvement, and optimization. It is developed and maintained by a large team of individuals. FreeBSD provides advanced networking, impressive security features, and world class performance and is used by some of the world&#8217;s busiest web sites and most pervasive embedded networking and storage devices.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd ar9280">freebsd ar9280</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1 rc2 download">freebsd 8 1 rc2 download</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="cache:55xf_HMLw18J:www techonia com/freebsd-8-1-rc2-available-for-download ar9280 freebsd">cache:55xf_HMLw18J:www techonia com/freebsd-8-1-rc2-available-for-download ar9280 freebsd</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="download FreeBSD-8 1-RC2">download FreeBSD-8 1-RC2</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 rc2">freebsd 8 rc2</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 apache performance problem">freebsd 8 apache performance problem</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="FreeBSD 8 1RC2">FreeBSD 8 1RC2</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="Freebsd 8 1 USB Issues">Freebsd 8 1 USB Issues</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1 usb">freebsd 8 1 usb</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1 release">freebsd 8 1 release</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1 new features">freebsd 8 1 new features</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1 apache php mysql">freebsd 8 1 apache php mysql</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="freebsd 8 1">freebsd 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="free bsd performance">free bsd performance</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc2-available-for-download" title="dwonload freebsd 8 1 rc2">dwonload freebsd 8 1 rc2</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.609 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/freebsd-8-1-rc2-available-for-download/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PC-BSD 8.1-RC1 Now Available for Download</title>
		<link>http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download</link>
		<comments>http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download#comments</comments>
		<pubDate>Mon, 21 Jun 2010 19:00:51 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[PC-BSD]]></category>
		<category><![CDATA[FreeBSD 8.1 RC1]]></category>
		<category><![CDATA[PC-BSD 8.1 RC1]]></category>

		<guid isPermaLink="false">http://techonia.com/?p=1712</guid>
		<description><![CDATA[Just 3 days after the announcement of the availability of FreeBSD 8.1 RC1, the PC-BSD Team announced today that PC-BSD 8.1 RC1 (Hubble Edition) which is based-on FreeBSD 8.1 RC1 is now available for download.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p><a class="highslide" onclick="return vz.expand(this)" href="http://techonia.com/wp-content/uploads/2010/02/pcbsd-80.png"><img class="alignright size-medium wp-image-1147" title="pcbsd-80" src="http://techonia.com/wp-content/uploads/2010/02/pcbsd-80-300x150.png" alt="" width="300" height="150" /></a>Just 3 days after the announcement of the availability of FreeBSD 8.1 RC1, the PC-BSD Team announced today that PC-BSD 8.1 RC1 (Hubble Edition) which is based-on FreeBSD 8.1 RC1 is now available for download.</p>
<p>It comes with a number of improvements and enhancements such as fixed issue running downloaded python / ruby plasmoids, fixed nepomuk / strigi default init at first login, fixed issues with wifi tools in calculating signal strength, ZFS syntax fix for installs to MBR partition, during upgrade now install selected components properly, and don&#8217;t use &#8220;lagg&#8221; device on systems with no wifi.</p>
<p><span id="more-1712"></span>Some of the notable changes are:</p>
<ul>
<li>KDE 4.4.4</li>
<li>Numerous fixes to the installation backend</li>
<li>Support for creating dedicated disk GPT partitioning</li>
<li>Improved ZFS support</li>
<li>Bugfixes to desktop tools / utilities</li>
</ul>
<p>Version 8.1-RC1 of PC-BSD is available for <a href="http://www.pcbsd.org/content/view/166/11/" target="_blank">download</a> from its mirror sites. You might find any issues or bugs when running this release candidate. The PC-BSD Team highly recommend to report all bugs via its <a href="http://trac.pcbsd.org/" target="_blank">Trac Database</a> system.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pc-bsd zfs">pc-bsd zfs</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd 8 1">pcbsd 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd download">pcbsd download</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="PC-BSD 8 1">PC-BSD 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd chrome download">pcbsd chrome download</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd 8 downloads">pcbsd 8 downloads</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd 8 1rc1 downloads">pcbsd 8 1rc1 downloads</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd 8 0 zfs howto">pcbsd 8 0 zfs howto</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd 8 0 zfs">pcbsd 8 0 zfs</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="PC-BSD zfs add disk">PC-BSD zfs add disk</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="PC-BSD USB zfs">PC-BSD USB zfs</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="PC-BSD usb modem">PC-BSD usb modem</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="zfs pcbsd8 1 install">zfs pcbsd8 1 install</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="pcbsd instal">pcbsd instal</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download" title="zfs pcbsd">zfs pcbsd</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.701 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/pc-bsd-8-1-rc1-now-available-for-download/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD-8.1 RC1 Available for Download</title>
		<link>http://www.techonia.com/freebsd-8-1-rc1-available-for-download</link>
		<comments>http://www.techonia.com/freebsd-8-1-rc1-available-for-download#comments</comments>
		<pubDate>Sat, 19 Jun 2010 16:29:16 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeBSD 8.1]]></category>
		<category><![CDATA[FreeBSD 8.1 RC1]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1708</guid>
		<description><![CDATA[The FreeBSD development team has announced the availability of the first release candidate for the FreeBSD 8.1 that available for amd64, i386, ia64, powerpc, and sparc64 architectures.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/freebsd-8-1-rc1-available-for-download";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p><a class="highslide" onclick="return vz.expand(this)" href="http://techonia.com/wp-content/uploads/2010/03/the-freebsd.gif"><img class="alignright size-full wp-image-1272" title="the-freebsd" src="http://techonia.com/wp-content/uploads/2010/03/the-freebsd.gif" alt="" width="266" height="280" /></a>The FreeBSD development team has announced the availability of the first release candidate for the FreeBSD 8.1 that available for amd64, i386, ia64, powerpc, and sparc64 architectures.</p>
<p>Ken Smith (the lead release engineer for FreeBSD) announced &#8221;The first Release Candidate for the FreeBSD 8.1 release cycle is nowavailable for amd64, i386, ia64, powerpc, and sparc64 architectures. Files suitable for creating installation media or doing FTP basedinstalls through the network should be available on most of theFreeBSD mirror sites.  Checksums for the images are at the bottomof this message.&#8221;</p>
<p>For more info about the announcement, how to upgrade from previous version can be found <a href="http://lists.freebsd.org/pipermail/freebsd-stable/2010-June/057320.html" target="_blank">here</a>.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="FreeBSD 8 0 / 8 1 RC1: Free Download FreeBSD 8 0 / 8 1 RC1: Free Download">FreeBSD 8 0 / 8 1 RC1: Free Download FreeBSD 8 0 / 8 1 RC1: Free Download</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="install java freebsd 8 1">install java freebsd 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="freebsd 8 1">freebsd 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="howto upgrade freebsd 8 0 to freebsd 8 1">howto upgrade freebsd 8 0 to freebsd 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="umts freebsd">umts freebsd</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="freebsd 8 1 java">freebsd 8 1 java</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="freebsd 8 1 java install">freebsd 8 1 java install</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="howto upgrade to PC-BSD 8 1-RC1">howto upgrade to PC-BSD 8 1-RC1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="howto upgrade from PC-BSD 8 0 to PC-BSD 8 1">howto upgrade from PC-BSD 8 0 to PC-BSD 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="download freebsd 8 to install by ftp">download freebsd 8 to install by ftp</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="install java on freebsd8 1">install java on freebsd8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="PC-BSD 8-1 download">PC-BSD 8-1 download</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="pc-bsd updaten von 8 auf 8 1">pc-bsd updaten von 8 auf 8 1</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="PC-BSD-8 1-RELEASE-amd64 download">PC-BSD-8 1-RELEASE-amd64 download</a></li><li><a href="http://www.techonia.com/freebsd-8-1-rc1-available-for-download" title="upgrade to pc-bsd 8 rc1 from network">upgrade to pc-bsd 8 rc1 from network</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.199 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/freebsd-8-1-rc1-available-for-download/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PC-BSD 8.1-BETA1 Released</title>
		<link>http://www.techonia.com/pc-bsd-8-1-beta1-released</link>
		<comments>http://www.techonia.com/pc-bsd-8-1-beta1-released#comments</comments>
		<pubDate>Mon, 07 Jun 2010 07:51:06 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[PC-BSD]]></category>
		<category><![CDATA[FreeBSD 8.1]]></category>
		<category><![CDATA[GPT partitioning]]></category>
		<category><![CDATA[KDE 4.4.4]]></category>
		<category><![CDATA[PC-BSD 8.1]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1652</guid>
		<description><![CDATA[The PC-BSD Team was pleased to announce the availability of PC-BSD 8.1-BETA1 (Hubble Edition), running FreeBSD 8.1-PRE-RELEASE, and KDE 4.4.4]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/pc-bsd-8-1-beta1-released";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p><a class="highslide" onclick="return vz.expand(this)" href="http://www.techonia.com/wp-content/uploads/2010/02/pcbsd-80.png"><img class="alignright size-medium wp-image-1147" title="pcbsd-80" src="http://www.techonia.com/wp-content/uploads/2010/02/pcbsd-80-300x150.png" alt="" width="300" height="150" /></a>The PC-BSD Team was pleased to announce the availability of PC-BSD 8.1-BETA1 (Hubble Edition), running FreeBSD 8.1-PRE-RELEASE, and KDE 4.4.4</p>
<p>Version 8.1 contains a number of enhancements and improvements. For a full list of changes can be found in the <a href="http://www.pcbsd.org/content/view/161/11/" target="_blank">changelog</a>. Some of the notable changes are:</p>
<ul>
<li>FreeBSD 8.1-PreRelease</li>
<li>KDE 4.4.4</li>
<li>Numerous fixes to the installation backend</li>
<li>Support for creating dedicated disk GPT partitioning</li>
<li>Improved ZFS support</li>
<li>Bugfixes to desktop tools / utilities</li>
</ul>
<p>The release notes of PC-BSD 8.1 BETA1 can be found <a href="http://www.pcbsd.org/content/view/162/11/" target="_blank">here</a>.</p>
<p>Version 8.1-BETA1 of PC-BSD is available for <a href="http://www.pcbsd.org/content/view/160/11/" target="_blank">download</a> from our mirrors<a href="http://www.gotbsd.net">.</a></p>
<p>In order to prepare for 8.1-Release, please report any and all bugs to <a href="http://trac.pcbsd.org/" target="_blank">PC-BSD Trac Database</a>!</p>
<p>[<a href="http://www.pcbsd.org/content/view/163/" target="_blank">VIA</a>]</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="freebsd 8 1 zfs">freebsd 8 1 zfs</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="PC-BSD 8 1 screenshots">PC-BSD 8 1 screenshots</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="PC-BSD 8 1 screenshot">PC-BSD 8 1 screenshot</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="freebsd 8 1 gpt">freebsd 8 1 gpt</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pc-bsd 8 java">pc-bsd 8 java</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="freebsd 8 1 zfs install">freebsd 8 1 zfs install</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="how do I setup zfs on pcbsd">how do I setup zfs on pcbsd</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pc-bsd java">pc-bsd java</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="avoir ubuntu et pcbsd 8 1">avoir ubuntu et pcbsd 8 1</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="PC BSD 8 1 ????????? USB modem">PC BSD 8 1 ????????? USB modem</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pcbsd & open solaris on same machine">pcbsd & open solaris on same machine</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pcbsd 8 1 java">pcbsd 8 1 java</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pcbsd 8 1 screenshots">pcbsd 8 1 screenshots</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pcbsd 8 1 zfs">pcbsd 8 1 zfs</a></li><li><a href="http://www.techonia.com/pc-bsd-8-1-beta1-released" title="pcbsd 8 how to setup java">pcbsd 8 how to setup java</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 8.838 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/pc-bsd-8-1-beta1-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenBSD 4.7 Officially Released Today</title>
		<link>http://www.techonia.com/openbsd-4-7-officially-released-today</link>
		<comments>http://www.techonia.com/openbsd-4-7-officially-released-today#comments</comments>
		<pubDate>Wed, 19 May 2010 13:48:40 +0000</pubDate>
		<dc:creator>Fuad NAHDI</dc:creator>
				<category><![CDATA[OpenBSD]]></category>
		<category><![CDATA[newfs_ext2fs]]></category>
		<category><![CDATA[OpenBSD 4.7]]></category>

		<guid isPermaLink="false">http://www.techonia.com/?p=1595</guid>
		<description><![CDATA[The OpenBSD team officially released the OpenBSD 4.7 today. Many new features and improvements have been included in OpenBSD 4.7 such as improved hardware support including revamped SCSI midlayer and improved driver support, new tools newfs_ext2fs for creating ext2 filesystems, and many more.]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button-left"><script type="text/javascript">
			<!-- 
			tweetmeme_url = "http://www.techonia.com/openbsd-4-7-officially-released-today";
			tweetmeme_source = "techonia";
			//-->
		</script>
		<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script></div></div><p><a class="highslide" onclick="return vz.expand(this)" href="http://www.techonia.com/wp-content/uploads/2010/05/openbsd-47.gif"><img class="aligncenter size-full wp-image-1596" title="openbsd-47" src="http://www.techonia.com/wp-content/uploads/2010/05/openbsd-47.gif" alt="" width="448" height="148" /></a>The OpenBSD team officially released the OpenBSD 4.7 today. Many new features and improvements have been included in OpenBSD 4.7 such as improved hardware support including revamped SCSI midlayer and improved driver support, new tools newfs_ext2fs for creating ext2 filesystems, and many more.</p>
<p>For more details you can see on <a href="http://www.openbsd.org/47.html" target="_blank">OpenBSD webpage</a>.</p>
<p>I already wrote several tutorials about OpenBSD such as how to install Gnome on OpenBSD, install OpenBSD packages directly from an FTP server, etc. You can find the link of these tutorials in the Related Posts of this article or simply search it by using search tool in this website. Enjoy.</p>
<h4>Incoming search terms for this post:</h4><ul><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7 install gnome">openbsd 4 7 install gnome</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7 gnome">openbsd 4 7 gnome</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd eclipse">openbsd eclipse</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="install gnome openbsd 4 7">install gnome openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="how to install gnome on openbsd 4 7">how to install gnome on openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7">openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7 jdk">openbsd 4 7 jdk</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7 screenshot">openbsd 4 7 screenshot</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="installing gnome on openbsd 4 7">installing gnome on openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openBSD install gnome">openBSD install gnome</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd4 7">openbsd4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="openbsd 4 7 gnome howto">openbsd 4 7 gnome howto</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="OpenBSD 4 7 screenshots">OpenBSD 4 7 screenshots</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="installing gnome openbsd 4 7">installing gnome openbsd 4 7</a></li><li><a href="http://www.techonia.com/openbsd-4-7-officially-released-today" title="installation openbsd gnome">installation openbsd gnome</a></li></ul><!-- SEO SearchTerms Tagging 2 plugin took 9.126 ms -->]]></content:encoded>
			<wfw:commentRss>http://www.techonia.com/openbsd-4-7-officially-released-today/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
