<?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>Leptians Times &#187; Tutorials</title>
	<atom:link href="http://blog.leptians.net/tag/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.leptians.net</link>
	<description>Just My Rambling Thoughts</description>
	<lastBuildDate>Tue, 25 May 2010 07:33:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>HowTo: Using FreeBSD Ports</title>
		<link>http://blog.leptians.net/tutorials/howto-using-freebsd-ports/</link>
		<comments>http://blog.leptians.net/tutorials/howto-using-freebsd-ports/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 07:16:42 +0000</pubDate>
		<dc:creator>Leptians</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[csup]]></category>
		<category><![CDATA[cvsup]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[portsnap]]></category>
		<category><![CDATA[portupgrade]]></category>

		<guid isPermaLink="false">http://blog.leptians.net/?p=98</guid>
		<description><![CDATA[Synopsis Just like RPM Package Manager, FreeBSD Ports collection is where users and administrators to install application that has been ported for FreeBSD. At the time of writing, there are more than 19,000 ports available. Ports can be searched via official FreeBSD ports page or use one of the following commands on your FreeBSD machine [...]]]></description>
			<content:encoded><![CDATA[<h2>Synopsis</h2>
<p>Just like RPM Package Manager, FreeBSD Ports collection is where users and administrators to install application that has been ported for FreeBSD. At the time of writing, there are more than 19,000 ports available. Ports can be searched via official <a href="http://www.freebsd.org/ports/">FreeBSD ports</a> page or use one of the following commands on your FreeBSD machine :</p>
<pre># make search name=[port's name]
example: make search name=vim</pre>
<p>or</p>
<pre># make search key=[keywords]
example: make search key="text editor"</pre>
<p>In this tutorial, you will learn how to install Ports Tree and keeping it up-to-date, as well as install application from ports.</p>
<p><span id="more-98"></span></p>
<h2>Install Ports Tree</h2>
<p>If you did not install ports during <a href="http://blog.leptians.net/tutorials/howto-install-freebsd/">FreeBSD Installation</a>, it can be installed using sysinstall command:</p>
<ul>
<li>sysinstall</li>
<li>Configure</li>
<li>Distributions</li>
<li>Ports (space to select) then click OK</li>
<li>and follow the rest of the instructions</li>
</ul>
<h2>Keep Ports Tree Up-To-Date</h2>
<p>In software development world, everything is ever-changing. Software always get updated because of new features or bug fixes. Your Ports Tree might no longer be up-to-date. In order to ensure your ports tree has the latest collection, it needs to be updated. There are 2 common ways to update Port Trees:</p>
<h4>CVSup/csup Method</h4>
<p>The example ports-supfile can be found in <em>/usr/share/examples/cvsup/ports-supfile</em>, copy that file to <em>/root/</em> so that you can modify to fit your setup.</p>
<p>Open /root/ports-supfile and modify <em>CHANGE_THIS.FreeBSD.org </em>to a CVSup near you. After save the file, run the following command:</p>
<pre># csup -L 2 /root/ports-supfile</pre>
<p>If you want to use different CVSup server without modifying the ports-supfile, run the following command instead:</p>
<pre><samp class="PROMPT">#</samp> <kbd class="USERINPUT">csup -L 2 -h <tt class="REPLACEABLE"><em>cvsup.FreeBSD.org</em></tt> /root/ports-supfile</kbd></pre>
<h4>Portsnap Method</h4>
<p>It is an alternative application for distributing ports collection. It&#8217;s more secured and faster since each snapshot is digitally signed and compressed. If Portsnap is not installed on your system, it can be found in <em>/usr/ports/ports-mgmt/portsnap</em>.</p>
<p>There are 3 basic and common portsnap command:</p>
<ol>
<li><strong>portsnap fetch</strong>: to download latest snapshot</li>
<li><strong>portsnap extract</strong>: only need if you are running Portsnap for the first time</li>
<li><strong>portsnap update</strong>: to update your existing Ports Tree from your recent fetched snapshot</li>
</ol>
<p>To update your Ports Tree on demand, you can run the following command to fetch and update:</p>
<pre># portsnap fetch update</pre>
<p>To update your Ports Tree regularly, you need to add the following line in your root&#8217;s crontab entries:</p>
<pre>0 3 * * * /usr/sbin/portsnap cron</pre>
<h2>Install New Application from Ports</h2>
<p>There are many ways to install new application, such as compile from source, packages system, or sysinstall. I will show you how to do it for the first two.</p>
<h4>Compile From Source</h4>
<p>Compiling from source can be as easy as <em>make install</em>. First you need to locate where the application is located inside /usr/ports. If you are not sure, you can use search (see <em>Synopsis</em>).</p>
<p>Example on how to install vim:</p>
<pre>cd /usr/ports/editors/vim/ &amp;&amp; make <strong>install</strong></pre>
<p>This method will download the source code and install it from source.</p>
<p>To deinstall  vim:</p>
<pre># cd /usr/ports/editors/vim/ &amp;&amp; make <strong>deinstall</strong></pre>
<p>To reinstall vim:</p>
<pre># cd /usr/ports/editors/vim/ &amp;&amp; make <strong>reinstall</strong></pre>
<p>Please keep in mind, every time you install an application using this method, it will take up some time and space. It will create all the compiled objects in <em>working</em> directory inside its folder. This eventually can fill up your partition. All the downloaded source code also will retain in <em>/usr/ports/distfiles</em>. To clean those files, you need to run this command:</p>
<pre># cd /usr/ports/editors/vim/ &amp;&amp; make clean distclean</pre>
<p><em>clean </em>is to clean its working files and <em>distclean </em>is to clean its distribution file(s). Isn&#8217;t that pretty straight forward?</p>
<h4>Using Packages System</h4>
<p>Example on how to install vim:</p>
<pre># pkg_add -r vim</pre>
<p>To deinstall vim, you need to know its version number:</p>
<pre># pkg_delete vim-7.2.14</pre>
<p>To find out what version vim is installed on your system:</p>
<pre># pkg_info | grep vim
vim-7.2.14          Vi "workalike", with many additional features</pre>
<h2>Upgrading Installed Application Using Portupgrade</h2>
<p>To determine if there is any newer version of installed application in your system, run the following command:</p>
<pre># pkg_version -vIL=
vim-7.2.14                          &lt;   needs updating (index has vim-7.2.14_2)
fusefs-kmod-0.3.9.p1_2              &lt;   needs updating (index has 0.3.9.p1.20080208_3)</pre>
<p>This command is to compare all the installed application with your local ports tree. If it has different version (newer or older), it will be listed. Therefore, it&#8217;s recommended to keep your ports tree updated.</p>
<p>If you do not have <em>Portupgrade</em> installed in your system, it can be found at <em>/usr/ports/ports-mgmt/portupgrade</em>.</p>
<p>To upgrade <em>all </em>outdated application, run the following command:</p>
<pre># portupgrade -a</pre>
<p>To upgrade a specific application, run the following command:</p>
<pre># portupgrade vim</pre>
<h2>Further Reading</h2>
<ul>
<li><a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html">Using the Ports Collectio</a></li>
<li><a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvsup.html">Using CVSup</a></li>
<li><a href="http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-portsnap.html">Using Portsnap</a></li>
<li><a href="http://www.freebsd.org/doc/en/books/handbook/packages-using.html">Using the Packages System</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.leptians.net/tutorials/howto-using-freebsd-ports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Install FreeBSD</title>
		<link>http://blog.leptians.net/tutorials/howto-install-freebsd/</link>
		<comments>http://blog.leptians.net/tutorials/howto-install-freebsd/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 06:38:59 +0000</pubDate>
		<dc:creator>Leptians</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[install]]></category>

		<guid isPermaLink="false">http://blog.leptians.net/?p=61</guid>
		<description><![CDATA[Synopsis To provide step-by-step guide on how to install a FreeBSD operating system. At the time of writing, FreeBSD7 is the latest version. However this guide is written to be as general as possible that could be applied for any version of FreeBSD. In this guide, FreeBSD7 will be installed on Guest Computer of VMware [...]]]></description>
			<content:encoded><![CDATA[<h2>Synopsis</h2>
<p><a href="http://www.freebsd.org"><img class="alignleft size-medium wp-image-63" title="FreeBSD" src="http://blog.leptians.net/wp-content/uploads/2008/10/freebsd-transparent.png" alt="" width="88" height="86" /></a>To provide step-by-step guide on how to install a FreeBSD operating system. At the time of writing, FreeBSD7 is the latest version. However this guide is written to be as general as possible that could be applied for any version of FreeBSD.</p>
<p>In this guide, FreeBSD7 will be installed on Guest Computer of VMware Server 2.</p>
<h4>What is FreeBSD?</h4>
<p>FreeBSD is an advanced open source Operating System that can run under different hardware architectures, such as, but not limited to: x86, UltraSPARC, and ARM. For more information about FreeBSD, please read <a href="http://en.wikipedia.org/wiki/FreeBSD">FreeBSD page </a>at Wikipedia.</p>
<h4>Why FreeBSD?</h4>
<p>FreeBSD is a robust and a reliable operating system. Compare to other free operating system, it&#8217;s regarded to have the longest uptime. This is extremely important for high availability server. FreeBSD has its Ports collection (Like RPM for RedHat, and DEB for Debian), which provides an easy and consistent way of installing software package. It has over 19,000 ports available in the collection.<br />
<span id="more-61"></span></p>
<h2>Requirements</h2>
<ul>
<li>Internet Connection (preferably high speed connection)</li>
<li>Computer (or Virtual Server such as VMware Server)</li>
<li>Blank CD (only required if installing on a physical computer)</li>
<li>Basic computer and linux/unix knowledge</li>
</ul>
<h2>Getting FreeBSD</h2>
<p>Go to <a href="http://www.freebsd.org/where.html">Getting FreeBSD</a> and choose the right FreeBSD version and platform for you; in this case, FreeBSD7 &amp; i386 for the platform. Click on the [ISO] link on ISO column. It&#8217;s recommended to just download the bootonly iso in order to save time and bandwidth. Any additional update and application will be downloaded as necessary. In this case, download <a class="file" href="ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/7.0-RELEASE-i386-bootonly.iso">7.0-RELEASE-i386-bootonly.iso</a>.</p>
<p>Once the ISO is downloaded to your computer, burn the ISO to a blank CD only if you are going to install it on a physical computer, otherwise go to the next section.</p>
<h2>Installing FreeBSD</h2>
<p>Put the CD inside your CD-ROM (or mount the ISO to your guest OS if you are using virtualization) and make sure your computer is bootable to your CD-ROM before your hard disk. Normally this can be done by press &#8220;Esc&#8221; button after the boot screen or via bios setting; see your computer manual to change the setting. Once it&#8217;s ready, turn on the computer and let it boot to CD-ROM until you see <em>Country Selection </em>screen and make the selection:</p>
<div id="attachment_73" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s1.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-73" title="Country Selection" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s1-300x167.png" alt="HowTo: Install FreeBSD: Country Selection" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Country Selection</p></div>
<p>After you click ok, it will go to <em>sysinstall Main Menu</em> and choose <em>Standard</em> option:</p>
<div id="attachment_74" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s2.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-74" title="sysinstall Main Menu" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s2-300x167.png" alt="HowTo: Install FreeBSD: sysinstall Main Menu" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: sysinstall Main Menu</p></div>
<p>Press ok on the next message screen to bring you to <em>FDISK Partition Editor</em>. On this screen you can press <em>A</em> for Auto (Use Entire Disk) or customize to fit your configuration:</p>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s3.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-76" title="FDISK Partition Editor" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s3-300x167.png" alt="" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: FDISK Partition Editor</p></div>
<p>Press <em>Q</em> once completed and it will bring to <em>Install Boot Manager</em> screen(s). Normally you only need to install boot manager on first disk (da0 or ad0), choose <em>BootMgr</em> for your first disk and choose <em>None</em> for the rest of your disks (if there is any):</p>
<div id="attachment_77" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s4.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-77" title="Install Boot Manager" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s4-300x167.png" alt="HowTo: Install FreeBSD: Install Boot Manager" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Install Boot Manager</p></div>
<p>Press ok on the next message screen to bring you to <em>FreeBSD Disklabel Editor</em>. On this screen you can also press <em>A</em> for Auto Defaults option or customize to fit your configuration:</p>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s5.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-78" title="FreeBSD Disklabel Editor" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s5-300x167.png" alt="HowTo: Install FreeBSD: FreeBSD Disklabel Editor" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: FreeBSD Disklabel Editor</p></div>
<p>Press <em>Q</em> once completed and it will bring to <em>Choose Distributions</em> screen. You can choose the pre-defined options such as <em>User, Developer, X-User, Minimal, etc</em>. Or you can customize the package by choosing <em>Custom</em>. For this example, I chose <em>Custom</em> with the following distributions selected: base (required), kernels (required), man, src (all), and ports:</p>
<div id="attachment_80" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s6.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-80" title="Distributions" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s6-300x167.png" alt="HowTo: Install FreeBSD: Distributions" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Distributions</p></div>
<p>Press <em>X </em>for Exit to back to <em>Choose Distributions</em> screen:</p>
<div id="attachment_81" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s7.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-81" title="Choose Distributions" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s7-300x167.png" alt="HowTo: Install FreeBSD: Choose Distributions" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Choose Distributions</p></div>
<p><em>Choose OK</em> to go to <em>Choose Installation Media</em>. If you use <em>bootonly</em> disk, you can pick either <em>FTP, FTP Passive, </em>or <em>HTTP</em>. If you use diskfull CDs or DVD, you choose <em>CD/DVD</em>:</p>
<div id="attachment_82" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s8.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-82" title="Choose Installation Media" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s8-300x167.png" alt="HowTo: Install FreeBSD: Choose Installation Media" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Choose Installation Media</p></div>
<p>In this example, we will be using <em>FTP</em> as the media, click OK and on the next screen it will go to <em>Network interface information required</em> and pick the right NIC. It will also prompt couple questions:</p>
<ol>
<li>Do you want to try IPv6 configuration of the interface? [no]</li>
<li>Do you want to try DHCP configuration of the interface? [yes] and fill the proper value for each fields:</li>
</ol>
<div id="attachment_84" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s9.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-84" title="Network Configuration" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s9-300x167.png" alt="HowTo: Install FreeBSD: Network Configuration" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Network Configuration</p></div>
<p>Once you click OK, it will give you <em>User Confirmation Requested</em> to warn that any existing data will be overwritten. Click <em>Yes</em> to start the installation. This may take awhile, depending on selected distributions, installation media (CD-ROM or internet), as well as your internet connection (if you chose FTP, FTP Passive, or HTTP).</p>
<p>After the installation completed, it will show the congratulation message:</p>
<div id="attachment_86" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s10.png" rel="shadowbox[post-61];player=img;"><img class="size-medium wp-image-86" title="Installation Completed Message" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s10-300x167.png" alt="HowTo: Install FreeBSD: Installation Completed Message" width="300" height="167" /></a><p class="wp-caption-text">HowTo: Install FreeBSD: Installation Completed Message</p></div>
<p>After you click it will prompt the following questions and answer accordingly to your needs or the one suggested below:</p>
<ol>
<li>Do you want this machine to function as a network gateway? [no]</li>
<li>Do you want to configure inetd and the network services that it provides? [no]</li>
<li>Would you like to enable SSH login? [yes]</li>
<li>Do you want to have anonymous FTP access to this machine? [no]</li>
<li>Do you want to configure this machine as an NFS server? [no]</li>
<li>Do you want to configure this machine as an NFS client? [no]</li>
<li>Would you like to customize your system console settings? [no]</li>
<li>Would you like to set this machine&#8217;s time zone now? [yes]
<ol>
<li>Is this machine&#8217;s CMOS clock set to UTC? If it is set to local time, or you don&#8217;t know, please choose NO here! [no]</li>
<li>Select region [America -- North and South]</li>
<li>Select a country or region [United States]</li>
<li>Select a zone which observes the same time as your locality [Pacific Time]</li>
<li>Does the abbreviation `XXX&#8217; looks reasonable?</li>
</ol>
</li>
<li>Would you like to enable Linux binary compatibility? [yes]<br />
This is totally optional. It will allow to compile and run some Linux binaries that is not in the Port collections.</li>
<li>Does this system have a PS/2, serial, or bus mouse? [no]</li>
<li>The FreeBSD package collection is  a collection of thousands of ready-to-run applications, from text editors to games to WEB servers and more. Would you like to browse the collection now? [no]<br />
We would like to choose no, we can install all the necessary application later on. The reason we do not want to install it right now, most likely the collection ports are not up-to-date. So you might end up with outdated application.</li>
<li>Would you like to add any initial user accounts to the system? [...] [yes]
<ol>
<li>Select <em>User</em> to add new user</li>
<li>Select <em>Group </em>to add new group</li>
<li>Once you are done, select Exit</li>
</ol>
</li>
<li>Now you must set the system manager&#8217;s password. This is the password you&#8217;ll use to log in as &#8220;root&#8221;.<br />
enter your root password twice</li>
<li>Visit the general configuration menu for a chance to set any last options?</li>
<li>Once you are done, it will bring you back to <em>sysinstall Main Menu</em> and you can safely select <em>Exit Install</em>.</li>
<li>It will prompt you to eject any disc in order to prevent the system to boot from CD again.</li>
<li>The system rebooted, and wallah, now you have your FreeBSD installed on your system.</li>
</ol>
<h2>Further Reading</h2>
<ul>
<li><a href="http://www.freebsd.org/doc/en/books/handbook/">FreeBSD Handbook</a>: It is probably the most well written handbook out there, very resourceful.</li>
</ul>
<h2>Gallery</h2>

<a href='http://blog.leptians.net/wp-content/uploads/2008/10/freebsd-transparent.png' rel='shadowbox[album-61];player=img;' title='FreeBSD'><img width="88" height="86" src="http://blog.leptians.net/wp-content/uploads/2008/10/freebsd-transparent.png" class="attachment-thumbnail" alt="FreeBSD" title="FreeBSD" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s1.png' rel='shadowbox[album-61];player=img;' title='Country Selection'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s1-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Country Selection" title="Country Selection" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s2.png' rel='shadowbox[album-61];player=img;' title='sysinstall Main Menu'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s2-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: sysinstall Main Menu" title="sysinstall Main Menu" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s3.png' rel='shadowbox[album-61];player=img;' title='FDISK Partition Editor'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s3-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: FDISK Partition Editor" title="FDISK Partition Editor" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s4.png' rel='shadowbox[album-61];player=img;' title='Install Boot Manager'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s4-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Install Boot Manager" title="Install Boot Manager" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s5.png' rel='shadowbox[album-61];player=img;' title='FreeBSD Disklabel Editor'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s5-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: FreeBSD Disklabel Editor" title="FreeBSD Disklabel Editor" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s6.png' rel='shadowbox[album-61];player=img;' title='Distributions'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s6-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Distributions" title="Distributions" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s7.png' rel='shadowbox[album-61];player=img;' title='Choose Distributions'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s7-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Choose Distributions" title="Choose Distributions" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s8.png' rel='shadowbox[album-61];player=img;' title='Choose Installation Media'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s8-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Choose Installation Media" title="Choose Installation Media" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s9.png' rel='shadowbox[album-61];player=img;' title='Network Configuration'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s9-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Network Configuration" title="Network Configuration" /></a>
<a href='http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s10.png' rel='shadowbox[album-61];player=img;' title='Installation Completed Message'><img width="150" height="150" src="http://blog.leptians.net/wp-content/uploads/2008/10/howto_install_freebsd_s10-150x150.png" class="attachment-thumbnail" alt="HowTo: Install FreeBSD: Installation Completed Message" title="Installation Completed Message" /></a>

]]></content:encoded>
			<wfw:commentRss>http://blog.leptians.net/tutorials/howto-install-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
