﻿<?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>Sam's Geek Log</title>
	<atom:link href="http://blog.agitatorsltd.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.agitatorsltd.com</link>
	<description>My Problems, Observations and Solutions with IT</description>
	<lastBuildDate>Tue, 29 Mar 2011 18:41:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting Up RAID1 with GEOM on FreeBSD 8.1</title>
		<link>http://blog.agitatorsltd.com/unix/?p=142</link>
		<comments>http://blog.agitatorsltd.com/unix/?p=142#comments</comments>
		<pubDate>Sun, 12 Dec 2010 18:20:25 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[FreeBSD -- Setup]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=142</guid>
		<description><![CDATA[After doing a default install I need to mirror my root hard drive. In the past I would have used ATA or CCD (Concatenated Disk Driver). I also have used Vinum which is a logical volume manager similar to Varitas &#8230; <a href="http://blog.agitatorsltd.com/unix/?p=142">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>  After doing a default install I need to mirror my root hard drive.  In the past I would have used ATA or CCD (Concatenated Disk Driver).  I also have used Vinum which is a logical volume manager similar to Varitas Volume Manager or LVM in AIX.  Reading though the notes and documentation I see that Vinum has been re-implemented as GEOM based and they have add a very easy subset called GEOM Mirror.  That is what I went with.</p>
<p>  All information and procedures was gleam from the always excellent <a href="http://www.freebsd.org/doc/handbook/geom-mirror.html">FreeBSD Docs</a>.  There usually is no need to go else where, I find it convenient to distill the essential material down to these post purely for ease and convenience.  These are instruction that while generally true are geared towards what I am doing.</p>
<h3>Mirroring Whole Disks</h3>
<ul>
<li>Before building the mirror, enable additional debugging information and opening access to the device by setting the kern.geom.debugflags.  <code>sysctl kern.geom.debugflags=17</code></li>
<li>Begin the process by storing meta-data information on the primary disk device. <code>gmirror label -vb round-robin gm0 /dev/da0</code><br />
<blockquote><p>Warning: Creating a mirror out of the boot drive may result in data loss if any data has been stored on the last sector of the disk.</p></blockquote>
</li>
<li>load the /boot/kernel/geom_mirror.ko kernel module <code>gmirror load</code></li>
<li>Enable loading of the geom_mirror.ko kernel module during system initialization <code>echo 'geom_mirror_load="YES"' >> /boot/loader.conf</code></li>
<li>Edit the /etc/fstab file, replacing references to the old da0 with the new device nodes of the gm0 mirror device.</li>
<li>Reboot the system</li>
<li>Using the <code>mount</code> command check the gm0 is being used.</li>
<li>Add your second disk <code>gmirror insert gm0 /dev/da1</code></li>
<li>Check status with <code>gmirror status</code></li>
</ul>
<p><map name='google_ad_map_142_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/142?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_142_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=142&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Funix%2F%3Fp%3D142' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/unix/?p=142/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating FreeBSD 8.1</title>
		<link>http://blog.agitatorsltd.com/unix/freebsd-2/?p=130</link>
		<comments>http://blog.agitatorsltd.com/unix/freebsd-2/?p=130#comments</comments>
		<pubDate>Sun, 12 Dec 2010 07:40:18 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[FreeBSD -- General]]></category>
		<category><![CDATA[UNIX]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=130</guid>
		<description><![CDATA[After the box that was hosting the old FreeBSD box (version 6.x) finally gave up the ghost and knowing that I wanted to skip 7.x, I just finished a fresh install of 8.1. After setting up my accounts the next &#8230; <a href="http://blog.agitatorsltd.com/unix/freebsd-2/?p=130">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After the box that was hosting the old FreeBSD box (version 6.x) finally gave up the ghost and knowing that I wanted to skip 7.x, I just finished a fresh install of 8.1.  After setting up my accounts the next step is updating and patching.  All material comes from the <a href="http://www.freebsd.org/doc/handbook">FreeBSD Handbook</a>.</p>
<p><strong>FreeBSD Update</strong><br />
This updates source, world and kernel.</p>
<ul>
<li>I choose to use the defaults in <code>/etc/freebsd-update.conf</code></li>
<li>Fetch the updates <code>freebsd-update fetch</code></li>
<li>Apply the updates <code>freebsd-update install</code></li>
<li>Reboot the systems <code>shutdown -r now</code></li>
</ul>
<p>If a rollback is needed the <code>freebsd-update rollback</code></p>
<p><strong>Updating Ports Collections</strong></p>
<ul>
<li>Download updated ports <code>portsnap fetch</code></li>
<li>The first time <code>portsnap</code> is executed, you have to use extract to install the downloaded files. <code>portsnap extract</code></li>
<li>Rest of the time <code>portsnap update</code> is OK.</li>
</ul>
<p><strong>Upgrading Ports</strong><br />
<code>pkgdb -aF</code><br />
<code>portupgrade -ay</code></p>
<p><strong>Updating Documentation Sources</strong><br />
<code>cvsup -h cvsup1.us.FreeBSD.org -g -L 2 /usr/share/examples/cvsup/doc-supfile</code></p>
<p><strong>Cleaning up Obsolete files, Directories and Libraries</strong></p>
<ul>
<li>check for obsolete files and libraries<br />
	<code>cd /usr/src<br />
	make check-old<br />
	make check-old-libs</code></li>
<li>If any obsolete files are found, deleted<br />
	<code>make delete-old<br />
	make delete-old-libs</code></li>
<li><code>portsclean -D</code> will purge old distfiles.</li>
<li><code>portsclean -C</code> will clean all &#8216;work&#8217; directories.</li>
<li><code>portsclean -L</code> will clean up unused libraries in /usr/local/lib/compat/pkg.</li>
<li><code>portsclean -P</code> will clean up outdated packages.</li>
</ul>
<p><map name='google_ad_map_130_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/130?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_130_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=130&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Funix%2Ffreebsd-2%2F%3Fp%3D130' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/unix/freebsd-2/?p=130/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More RSS Injection Testing</title>
		<link>http://blog.agitatorsltd.com/personal/?p=114</link>
		<comments>http://blog.agitatorsltd.com/personal/?p=114#comments</comments>
		<pubDate>Sat, 08 Aug 2009 16:10:05 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=114</guid>
		<description><![CDATA[I am playing around with my RSS feeds and see what items that can be added to them.]]></description>
			<content:encoded><![CDATA[<p><iframe src='http://outside.in/geotoolkit/embed_story_map/1479/period/week' frameborder='0' height='300' width='160' scrolling='no' style='border: 1px solid #333;' ></iframe></p>
<p><iframe src='http://outside.in/geotoolkit/embed_story_map/1479/period/month' frameborder='0' height='298' width='298' scrolling='no' style='border: 1px solid #333;' ></iframe></p>
<p>I am playing around with my RSS feeds and see what items that can be added to them.</p>
<p><map name='google_ad_map_114_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/114?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_114_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=114&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Fpersonal%2F%3Fp%3D114' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/personal/?p=114/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing RSS Injection</title>
		<link>http://blog.agitatorsltd.com/personal/?p=77</link>
		<comments>http://blog.agitatorsltd.com/personal/?p=77#comments</comments>
		<pubDate>Sat, 08 Aug 2009 14:16:50 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=77</guid>
		<description><![CDATA[This is a test of rss injection, for another project.]]></description>
			<content:encoded><![CDATA[<p><iframe src='http://outside.in/geotoolkit/embed_story_map/1479/period/week' frameborder='0' height='300' width='160' scrolling='no' style='border: 1px solid #333;' ></iframe></p>
<p>This is a test of rss injection, for another project.</p>
<p><map name='google_ad_map_77_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/77?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_77_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=77&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Fpersonal%2F%3Fp%3D77' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/personal/?p=77/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Line Break in Excel Cell</title>
		<link>http://blog.agitatorsltd.com/personal/?p=102</link>
		<comments>http://blog.agitatorsltd.com/personal/?p=102#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:51:17 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=102</guid>
		<description><![CDATA[To add a line break in an excel cell: Windows: Alt + Enter Mac: Control + Option + Return]]></description>
			<content:encoded><![CDATA[<p>To add a line break in an excel cell:</p>
<p>Windows:<br />
Alt + Enter</p>
<p>Mac:<br />
Control + Option + Return</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-4825224733339256";
/* 728x90, created 8/2/09 */
google_ad_slot = "4888709105";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><map name='google_ad_map_102_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/102?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_102_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=102&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Fpersonal%2F%3Fp%3D102' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/personal/?p=102/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up a Test Site for an Existing WordPress Site</title>
		<link>http://blog.agitatorsltd.com/web-related/?p=83</link>
		<comments>http://blog.agitatorsltd.com/web-related/?p=83#comments</comments>
		<pubDate>Sun, 08 Mar 2009 22:29:48 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Web Related]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=83</guid>
		<description><![CDATA[In preparation for an upgrade to an existing custom wordpress site, I wanted to create a sub-domain for testing. For example www.realdomain.com with a test site www.test.realdomain.com. After setting up the site and DNS for test i need to copy &#8230; <a href="http://blog.agitatorsltd.com/web-related/?p=83">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In preparation for an upgrade to an existing custom wordpress site, I wanted to create a sub-domain for testing.  For example www.realdomain.com with a test site www.test.realdomain.com.  After setting up the site and DNS for test i need to copy the real site to the test site.</p>
<p>All info related to the actual change of the wordpress site and the database comes from this wonderful set of <a href="http://codex.wordpress.org/Changing_The_Site_URL">instructions</a>.</p>
<h4>Importing Data into the test site.</h4>
<ul>
<li>Copy the physical files from one site to another.</li>
<li>Export a copy of the real website&#8217;s MySQL db</li>
<li>Import data into your testsite db.<br />
<blockquote><p>mysql -u <em>username</em> -p<em>password</em> -h <em>mysql.realdomain.com</em> &#8211;default-character-set=utf8 db_name < <em>realdomain_mysql_export.sql</em></p></blockquote>
</li>
</ul>
<h4> Changing the wp_config.php</h4>
<ul>
<li>Make sure to modify the wp_config.php to point to the new db.  The setting are found at the top of the file.<br />
<blockquote><p>
&#8230;<br />
// ** MySQL settings ** //<br />
define(&#8216;DB_NAME&#8217;, &#8216;<em>db_name</em>&#8216;);    // The name of the database<br />
define(&#8216;DB_USER&#8217;, &#8216;<em>username</em>&#8216;);     // Your MySQL username<br />
define(&#8216;DB_PASSWORD&#8217;, &#8216;<em>password</em>&#8216;); // &#8230;and password<br />
define(&#8216;DB_HOST&#8217;, &#8216;<em>mysql.realdomain.com</em>&#8216;);<br />
&#8230;
</p></blockquote>
</li>
</ul>
<h4>Change site &#038; home urls</h4>
<ul>
<li>Login to phpMyAdmin.</li>
<li>Click the link to Databases.</li>
<li>A list of dbs will appear. Choose the one that is the test WordPress db.</li>
<li>All the tables in the test db will appear.</li>
<li>Look for wp_options. Note: The table prefix of wp_ may be different if you changed it when installing.</li>
<li>Click on the small icon indicated as Browse.</li>
<li>A screen will open with a list of the fields within the wp_options table.</li>
<li>Under the field option_name, scroll down and look for siteurl.</li>
<li>Click the Edit Field icon which usually is found at the far left at the beginning of the row.</li>
<li>In the input box for option_value, change the URL information to the new address.</li>
<li>Verify this is correct and click Go to save the change.</li>
<li>You should be returned to your wp-options table.</li>
<li>Find the home field in the table and click Edit Field. Note There are several pages of tables inside wp_options. Look for the > symbol to page through them.</li>
<li>In the input box for option_value, change the URL information to the new address.</li>
<li>Verify this is correct and click Go to save the information.</li>
</ul>
<h4>Changing internal post links</h4>
<p>  There is one specific field you will need to change and that is the guid, you can also use this to switch links within you posts, but that is not required and left to your preferences.</p>
<ul>
<li>Login to phpMyAdmin.</li>
<li>Click the link to your Databases.</li>
<li>Choose the one that is the test WordPress db.</li>
<li>Look for the name of the table within your database used to hold your post information. Usually it is called wp_posts, but it may have been changed.</li>
<li>Clicking the Browse icon or link, open the wp_posts table.</li>
<li>Look for the field that holds your post &#8220;guid&#8221;. It is usually called guid, but it may have been changed.</li>
<li>Click the tab at the top for SQL.</li>
<li>Switch the old and new URL addresses you wish to update or search and replace within your database:<br />
<blockquote><p>UPDATE wp_posts SET guid = REPLACE (<br />
guid,<br />
&#8216;http://www.realdomain.com&#8217;,<br />
&#8216;http://www.test.realdomain.com&#8217;);</p></blockquote>
</li>
<li>Make sure that the names of wp-posts and post_content match the tables and fields within your database. Change them if not.</li>
<li>Ensure that the ONLY content you want to change are within the little single &#8216;quotes&#8217; . Make sure EVERYTHING is spelled right and that you are sure this is correct.</li>
<li>click Go.</li>
<li>At the top of the screen will be generated a list of how many of the tables and fields have been changed.</li>
<p><map name='google_ad_map_83_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/83?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_83_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=83&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Fweb-related%2F%3Fp%3D83' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/web-related/?p=83/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with wordpress and moving sites</title>
		<link>http://blog.agitatorsltd.com/web-related/?p=79</link>
		<comments>http://blog.agitatorsltd.com/web-related/?p=79#comments</comments>
		<pubDate>Sun, 08 Mar 2009 08:20:46 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Web Related]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=79</guid>
		<description><![CDATA[A friend of mine died recently and I needed to undertake an emergency move of the site from one vendor to another. Even though we were staying on the same platform and OS there was a quite a few difference &#8230; <a href="http://blog.agitatorsltd.com/web-related/?p=79">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A friend of mine died recently and I needed to undertake an emergency move of the site from one vendor to another.  Even though we were staying on the same platform and OS there was a quite a few difference between providers.  As soon as I get some sleep I will relay this experience and the technical road blocks I ran into.</p>
<p><map name='google_ad_map_79_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/79?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_79_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=79&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Fweb-related%2F%3Fp%3D79' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/web-related/?p=79/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading from FreeBSD 6.2 to FreeBSD 6.4</title>
		<link>http://blog.agitatorsltd.com/unix/install-freebsd/?p=32</link>
		<comments>http://blog.agitatorsltd.com/unix/install-freebsd/?p=32#comments</comments>
		<pubDate>Sat, 03 Jan 2009 18:20:51 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[FreeBSD -- Setup]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[updating]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=32</guid>
		<description><![CDATA[I have been slack about keeping my BSD server up to date. I have a replacement box ready to install FreeBSD 7, but I noticed that 7.1 is about ready to move to RELEASE and 8 should be out shortly. &#8230; <a href="http://blog.agitatorsltd.com/unix/install-freebsd/?p=32">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been slack about keeping my BSD server up to date.  I have a replacement box ready to install FreeBSD 7, but I noticed that 7.1 is about ready to move to RELEASE and 8 should be out shortly.  Until the I decide which way I want to move, I have decided to update to the latest version of 6.x.</p>
<ul>
<li><strong>Find the version you are currently on</strong><br />
	<code><br />
<blockquote>
	# uname -a<br />
	FreeBSD xxx.xxx.org 6.2-RELEASE-p11 FreeBSD 6.2-RELEASE-p11 #0: Wed Feb 13 06:44:57 UTC 2008 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386
	</p></blockquote>
<p></code>
	</li>
<li><strong>Create a cvsup file with the following information:</strong><br />
	<code><br />
<blockquote>
	*default host=cvsup.freebsd.org<br />
	*default base=/var/db<br />
	*default prefix=/usr<br />
	*default release=cvs<br />
	*default delete use-rel-suffix compress<br />
	src-all tag=RELENG_6_4<br />
	ports-all tag=RELENG_6_4<br />
	doc-all tag=RELENG_6_4
	</p></blockquote>
<p></code><br />
	This will update source, ports and docs.
	</li>
<li><strong>Clean your source tree</strong><br />
	<code><br />
<blockquote>
	cd /usr/src &#038;&#038; make cleanworld
	</p></blockquote>
<p></code>
	</li>
<li><strong>Update your sources, ports and docs.</strong><br />
	<code><br />
<blockquote>
	cvsup -L 2 ./cvsupfile
	</p></blockquote>
<p></code><br />
        Go get a cup of coffee and relax for awhile.  This step takes some time.
	</li>
<li><strong>Make world &#038; kernal, then install kernel</strong><br />
        <code><br />
<blockquote>
	# cd /usr/src<br />
	# make buildworld<br />
	# make buildkernel<br />
	# make installkernel<br />
	# nextboot -o "-s" -k kernel<br />
	# reboot
	</p></blockquote>
<p>	</code>
       	</li>
<li><strong>The system will come up in single user mode, check and mount the file system.</strong><br />
        <code><br />
<blockquote>
	# fsck -p<br />
	# mount -u /<br />
	# mount -a -t ufs<br />
	# swapon -a
	</p></blockquote>
<p>	</code>
       	</li>
<li><strong>Finish updating system</strong><br />
        <code><br />
<blockquote>
	# cd /usr/src<br />
	# mergemaster -p<br />
	# make installworld<br />
	# mergemaster –Ui<br />
	# reboot
	</p></blockquote>
<p>	</code>
       	</li>
<li><strong>Check that update worked</strong><br />
	<code><br />
<blockquote>
	# uname -a<br />
	# FreeBSD leon.agitators.org 6.4-RELEASE-p1 FreeBSD 6.4-RELEASE-p1 #0: Sat Jan  3 15:31:37 EST 2009     root@xxx.xxx.org:/usr/obj/usr/src/sys/GENERIC  i386<br />
	</code></p></blockquote>
</li>
</ul>
<p><map name='google_ad_map_32_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/32?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_32_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=32&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Funix%2Finstall-freebsd%2F%3Fp%3D32' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/unix/install-freebsd/?p=32/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copyright Symbol on A Mac</title>
		<link>http://blog.agitatorsltd.com/unix/mac-os-x/?p=28</link>
		<comments>http://blog.agitatorsltd.com/unix/mac-os-x/?p=28#comments</comments>
		<pubDate>Sat, 01 Nov 2008 23:39:40 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=28</guid>
		<description><![CDATA[Keyboard Shortcut: hold option &#038; press g. Link to other symbols]]></description>
			<content:encoded><![CDATA[<p>Keyboard Shortcut:</p>
<p>hold option &#038; press g.</p>
<p><a href="http://www.usingmac.com/2007/12/12/100-mac-keyboard-shortcuts-for-creating-symbols">Link to other symbols</a></p>
<p><map name='google_ad_map_28_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/28?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_28_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=28&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Funix%2Fmac-os-x%2F%3Fp%3D28' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/unix/mac-os-x/?p=28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Joliet iso images on a Mac</title>
		<link>http://blog.agitatorsltd.com/unix/mac-os-x/?p=27</link>
		<comments>http://blog.agitatorsltd.com/unix/mac-os-x/?p=27#comments</comments>
		<pubDate>Sat, 10 May 2008 17:02:42 +0000</pubDate>
		<dc:creator>scoker3</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.agitatorsltd.com/?p=27</guid>
		<description><![CDATA[Open Disk Utility and use the New Image from Folder menu item to create an image. Use uncompressed and use the CD/DVD master option. Use hdiutil to convert cdr to iso cd ~/Desktop hdiutil makehybrid -iso -joliet -o Master.iso Master.cdr &#8230; <a href="http://blog.agitatorsltd.com/unix/mac-os-x/?p=27">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Open Disk Utility and use the New Image from Folder menu item to create an image. Use uncompressed and use the CD/DVD master option.</p>
<p>Use hdiutil to convert cdr to iso</p>
<blockquote><p>
cd ~/Desktop<br />
hdiutil makehybrid -iso -joliet -o Master.iso Master.cdr
</p></blockquote>
<p>This will create an ISO/Joliet .iso file.</p>
<p><map name='google_ad_map_27_90bb51bbd79c7857'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/27?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_27_90bb51bbd79c7857' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=27&amp;url= http%3A%2F%2Fblog.agitatorsltd.com%2Funix%2Fmac-os-x%2F%3Fp%3D27' /></p>]]></content:encoded>
			<wfw:commentRss>http://blog.agitatorsltd.com/unix/mac-os-x/?p=27/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.944 seconds -->

