<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>BenRehberg.com</title>
	
	<link>http://www.benrehberg.com</link>
	<description>Thoughts worth a penny</description>
	<lastBuildDate>Sun, 08 Jan 2012 16:02:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/BenRehberg" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="benrehberg" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Installing and Using phpMyAdmin through YUM</title>
		<link>http://www.benrehberg.com/?p=729</link>
		<comments>http://www.benrehberg.com/?p=729#comments</comments>
		<pubDate>Sun, 08 Jan 2012 15:59:22 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[YUM]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=729</guid>
		<description><![CDATA[Today is Stephen Hawking&#8217;s birthday. He turns 70. I got PHPMyAdmin installed through YUM after enabling the EPEL (Extra Packages for Enterprise Linux) repository. Once I enabled EPEL, it was a simple yum install phpMyAdmin It installs to /usr/share/phpMyAdmin, so &#8230; <a href="http://www.benrehberg.com/?p=729">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today is Stephen Hawking&#8217;s birthday.  He turns 70.</p>
<p>I got PHPMyAdmin installed through YUM after enabling the <a href="http://fedoraproject.org/wiki/EPEL">EPEL (Extra Packages for Enterprise Linux)</a> repository.  Once I enabled EPEL, it was a simple</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> phpMyAdmin</pre></div></div>

<p> It installs to /usr/share/phpMyAdmin, so from there you just create a symbolic link in the web root to that directory, or change the httpd config to serve out that directory for a virtual host.  Your choice.  It&#8217;s just easier to run this and be done:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>phpMyAdmin<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www<span style="color: #000000; font-weight: bold;">/</span>html<span style="color: #000000; font-weight: bold;">/</span>mysql</pre></div></div>

<p>So then http://mywebserver/mysql goes to my phpMyAdmin installation.  However, if you&#8217;ve just set up MySQL, you will need to set the root user password by bringing up mysqld and running the following command as root:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysqladmin <span style="color: #660033;">-u</span> root password P<span style="color: #000000; font-weight: bold;">@</span>55w0rd</pre></div></div>

<p>You should, of course, replace &#8216;P@55w0rd&#8217; with the password of your choice.  At that time you can visit your phpMyAdmin installation through the web interface and log in with those credentials.  You are encouraged to then create a user for yourself that does not have root privileges and use it instead, but I don&#8217;t see that practiced very often.</p>
<p>So there it is &#8211; phpMyAdmin installed through YUM.</p>
<p>I had another problem when I tried to get to phpMyAdmin on that server &#8211; none of the PHP code was run.  It just showed the raw PHP files as if I&#8217;d asked for copies of them.  PHP was installed, but I had never encountered an installation that wasn&#8217;t configured in apache.</p>
<p>Turns out it was a simple inclusion needed in httpd.conf of the PHP configurations.  In /etc/httpd/conf.d/ there are some files that end in .conf that need to be included.  So at the end of httpd.conf I put a line that says</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Include conf.d<span style="color: #000000; font-weight: bold;">/*</span>.conf</pre></div></div>

<p>I restarted Apache with that configuration and it worked.  I can&#8217;t say if that&#8217;s the best way to do it, but for my test VM that&#8217;s fine with me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=729</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posting Code</title>
		<link>http://www.benrehberg.com/?p=712</link>
		<comments>http://www.benrehberg.com/?p=712#comments</comments>
		<pubDate>Wed, 04 Jan 2012 22:56:26 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP-Syntax]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=712</guid>
		<description><![CDATA[So here we are sed -i '1/,/^$/ s/this/that/g' Well that worked out!  Now can I color it? sed -i '1/,/^$/ s/this/that/g' Apparently I can. One must edit the post in HTML mode and color everything by hand, which is a &#8230; <a href="http://www.benrehberg.com/?p=712">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So here we are</p>
<p><code>sed -i '1/,/^$/ s/this/that/g'</code></p>
<p>Well that worked out!  Now can I color it?</p>
<p><code><span style="color: #0000ff;">sed</span> <span style="color: #ff0000;">-i</span> <span style="color: #339966;">'1/,/^$/ s/this/that/g'</span></code></p>
<p>Apparently I can. One must edit the post in HTML mode and color everything by hand, which is a pain in the rear. Now I wonder if there&#8217;s a WordPress tool that will auto-color code snippets based on the language.</p>
<p><strong>Update January 7, 2012:</strong><br />
I learned from <a href="http://phenix.thephenixblue.com/">a friend</a> that there exists a plugin to automatically color the code samples. He showed me how it works, and now I will try it a different way. Basically, he used the &lt;pre&gt; tags with a class declaration to turn on the syntax highlighting. I will try it here with the &lt;code&gt; tags:</p>
<p><code lang="bash" line="1">ls -l /etc/sysconfig/network-scripts/ | grep ifcfg</code></p>
<p>Did it work? No.</p>
<p>Now I&#8217;ll display the same thing with the &lt;pre&gt; tags:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sysconfig<span style="color: #000000; font-weight: bold;">/</span>network-scripts<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ifcfg</pre></td></tr></table></div>

<p>The plugin is called WP-Syntax and it looks pretty cool. You can do the same thing without line numbers too:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sysconfig<span style="color: #000000; font-weight: bold;">/</span>network-scripts<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ifcfg</pre></div></div>

<p>And now a multi-line Bash script that performs a simple yum update and reboots the machine if there was a kernel update (no logic, YMMV):</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">## TITLE:                   YUM Update with Kernel Reboot</span>
<span style="color: #666666; font-style: italic;">## FILENAME:                yum.sh</span>
<span style="color: #666666; font-style: italic;">## RELATED FILE(S)          /tmp/yum.catch</span>
<span style="color: #666666; font-style: italic;">## PREPARED FOR:            Green Light IT Consulting</span>
<span style="color: #666666; font-style: italic;">## PROGRAMMER(S):           Benjamin Rehberg</span>
<span style="color: #666666; font-style: italic;">## DEVELOPMENT DATE:        11/22/2011</span>
<span style="color: #666666; font-style: italic;">## COMPILER USED:           None (shell interpreter)</span>
<span style="color: #666666; font-style: italic;">## TARGET PLATFORM:         Interpreted by UNIX/Linux POSIX-compliant</span>
<span style="color: #666666; font-style: italic;">##=============================================================================</span>
<span style="color: #666666; font-style: italic;">##                            REVISION HISTORY</span>
<span style="color: #666666; font-style: italic;">##      DATE            PROGRAMMER      DESCRIPTION OF CHANGES MADE</span>
<span style="color: #666666; font-style: italic;">##      11/22/2011      Ben Rehberg     Initial conception and testing</span>
<span style="color: #666666; font-style: italic;">##</span>
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">##             CLASSES, FREE, AND FRIEND FUNCTIONS IMPLEMENTED</span>
<span style="color: #666666; font-style: italic;">##</span>
<span style="color: #666666; font-style: italic;">##      Not OO; procedual script</span>
<span style="color: #666666; font-style: italic;">##</span>
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">##                               CONSTANTS</span>
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">##                  STANDARD AND USER DEFINED INCLUDES</span>
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">##             Definition of member functions for class MyUtilities</span>
<span style="color: #666666; font-style: italic;">##*****************************************************************************</span>
<span style="color: #666666; font-style: italic;">##                          DESCRIPTION/PURPOSE</span>
<span style="color: #666666; font-style: italic;">##</span>
<span style="color: #666666; font-style: italic;">## This script will run yum -y update to update the server software.  It will</span>
<span style="color: #666666; font-style: italic;">## then look in the output for any update in the current iteration that was</span>
<span style="color: #666666; font-style: italic;">## related to the kernel, and reboot the server if it found one.  This is</span>
<span style="color: #666666; font-style: italic;">## designed to run weekly and only on servers that can tolerate an unattended</span>
<span style="color: #666666; font-style: italic;">## reboot.</span>
&nbsp;
<span style="color: #007800;">date</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span> +<span style="color: #ff0000;">'%b %d %H:%M:%S'</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #007800;">log</span>=<span style="color: #ff0000;">&quot;/var/log/messages&quot;</span>
&nbsp;
yum <span style="color: #660033;">-y</span> update <span style="color: #660033;">--skip-broken</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>yum.catch
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">grep</span> kernel <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>yum.catch <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">wc</span> -l<span style="color: #000000; font-weight: bold;">`</span> <span style="color: #660033;">-gt</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$date</span> YUM script run and the kernel was updated.  Rebooting...&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #007800;">$log</span>
        reboot
<span style="color: #000000; font-weight: bold;">else</span>
        <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$date</span> YUM script run and the kernel was not updated.&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;&gt;</span> <span style="color: #007800;">$log</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=712</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greetings from the iPad</title>
		<link>http://www.benrehberg.com/?p=699</link>
		<comments>http://www.benrehberg.com/?p=699#comments</comments>
		<pubDate>Mon, 02 Jan 2012 17:05:44 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=699</guid>
		<description><![CDATA[This morning, January 2, 2012: I am typing this post into a web form using a single-slate device with no physical keyboard. No wires. No big box under the desk. Not even a thin laptop on the couch. I&#8217;m just &#8230; <a href="http://www.benrehberg.com/?p=699">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://benrehberg.com/wp-content/uploads/2012/01/IMG_1768.jpg"><img class="aligncenter size-full wp-image-704" title="IMG_1768" src="http://benrehberg.com/wp-content/uploads/2012/01/IMG_1768.jpg" alt="" /></a>This morning, January 2, 2012: I am typing this post into a web form using a single-slate device with no physical keyboard. No wires. No big box under the desk. Not even a thin laptop on the couch. I&#8217;m just pecking away at this on-screen keyboard that seems to help me think as it slows me down but is intuitive enough to keep me going at a steady pace.</p>
<p>At the kitchen table this morning, I am not doing anything especially different than I did last year. Only that there isn&#8217;t a computer on the house that I use primarily.</p>
<p>I remember writing a <a title="2000 to 2010 – from WiFi to Who Cares" href="http://www.benrehberg.com/?p=490">couple of years ago</a> about how far we&#8217;d come when I was totally wireless in the house without a desktop computer (or a desk at all for that matter). Now I don&#8217;t even have a computer in the general sense of the word. I just use this tablet to research, surf the web, watch instructional and entertainment videos (Netflix is too easy to use), and play games with the kids.</p>
<p>Sure, we have a laptop and a stationary computer still, but those are only used when someone else is using the iPad. I&#8217;m going to guess that if my family had two more iPads we would only need the iMac to print photos and create content for my business. All that I do on a daily basis I can do with iPad. Everything else can wait until I get back to the family machine in the corner.</p>
<p>Today the price for the 64GB iPad 2 is $699. Until that becomes more affordable to me or the price comes down considerably, I&#8217;ll just have to duke it out with the kids. Happy new year!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=699</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For Some Reason I Didn’t Publish This When I Wrote It</title>
		<link>http://www.benrehberg.com/?p=622</link>
		<comments>http://www.benrehberg.com/?p=622#comments</comments>
		<pubDate>Sat, 17 Sep 2011 05:35:56 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Anonymous]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[HB Gary]]></category>
		<category><![CDATA[schmucks]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=622</guid>
		<description><![CDATA[Found this post in my unpublished list just now: I just read a story at PC World that revealed the obvious fact that the breaches by LulzSec and Anonymous were avoidable.  The groups used SQL Injection, XSS, social engineering, and &#8230; <a href="http://www.benrehberg.com/?p=622">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Found this post in my unpublished list just now:</p>
<p>I just read a story at PC World that revealed the obvious fact that <a href="http://www.pcworld.com/article/231303/lulzsec_anonymous_hacks_were_avoidable_report_says.html" target="_blank">the breaches by LulzSec and Anonymous were avoidable</a>.  The groups used <a href="http://en.wikipedia.org/wiki/Sql_injection" target="_blank">SQL Injection</a>, <a href="http://en.wikipedia.org/wiki/Cross-site_scripting" target="_blank">XSS</a>, <a href="http://en.wikipedia.org/wiki/Social_engineering_%28security%29" target="_blank">social engineering</a>, and took advantage of the misstep by their victims of not <a href="https://www.infosecisland.com/blogview/9625-Encrypting-Data-at-Rest.html" target="_blank">encrypting their data at rest</a>.  All of these security practices were and have been avoidable &#8211; it&#8217;s up to the data maintainer to know about these vulnerabilities before and to keep up with the latest security threats.</p>
<p>Anonymous also used a really old, published exploit (for which a patch was available but never applied) in a Linux system at HB Gary during their <a href="http://arstechnica.com/tech-policy/news/2011/02/anonymous-speaks-the-inside-story-of-the-hbgary-hack.ars/2" target="_blank">playtime</a> with that company and its schmuck CEO.</p>
<p>Security should always be a paramount issue at any organization that handles data for any type of computer users.  Sony failed to keep its users&#8217; data secure, as did the other companies LulzSec and Anonymous has hammered in the past months.  And while releasing all the usernames, e-mails, and passswords was probably not a good idea and caused a lot of grief for millions of people, the companies themselves should be held responsible.  After all, if they had done what is right they wouldn&#8217;t be going through this misery right now.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=622</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The State of My Blog Address</title>
		<link>http://www.benrehberg.com/?p=667</link>
		<comments>http://www.benrehberg.com/?p=667#comments</comments>
		<pubDate>Fri, 16 Sep 2011 15:10:59 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=667</guid>
		<description><![CDATA[I just took the survey that Technorati created to get some data about the blogosphere for 2011.  While I didn&#8217;t get any of the information yet (results are due out in November), I came to realize something: I am not &#8230; <a href="http://www.benrehberg.com/?p=667">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just took the <a title="Go to Survey" href="http://www.psasurveys.com/detect.aspx?I.Project=a18214" target="_blank">survey</a> that Technorati created to get some data about the blogosphere for 2011.  While I didn&#8217;t get any of the information yet (results are due out in November), I came to realize something: I am not a blogger.</p>
<p>Given that I don&#8217;t really have a passion for much to the extent that I need to write about it, there definitely isn&#8217;t a pattern of dedicated use here on my blog.  I&#8217;ve said many times that I&#8217;d like to change that, but whenever I tell my readers I&#8217;m going to post more regularly it always follows that I do not do that.</p>
<p>So here&#8217;s the state of <em>my</em> blogosphere: dismal.  I&#8217;d say I&#8217;m way too  busy to write, but that&#8217;s not the case.  I have plenty of time to do the things I need to do &#8211; I just don&#8217;t have the interest.  I just began to wonder how many blog posts I&#8217;ve made that reference my apathy about this site.</p>
<p>Anyways, I&#8217;ll write it again: I would love to write daily here and frequently discuss things that peak my interest, but blogging here doesn&#8217;t come to mind in my daily routine.  That could be due to my lack of any routine these days &#8211; I work in a city away from my family on the night shift, and the weekends are hectic with travel and housework.  Switching from nights to days every weekend wreaks havoc on the mind so that it isn&#8217;t productive at all.  And that&#8217;s just one reason.</p>
<p>Another detriment to my postings is the state of my mind when I finally do sit down to write.  There&#8217;s not just one thing on my plate &#8211; from the beginning of this post up to this point, I&#8217;ve vacuumed the carpet and also called the doctor&#8217;s office.  And I can&#8217;t be still.</p>
<p>And I just read an article at WebMD about ADHD.  I think I might have something close to it.  I won&#8217;t know for some time, though, because my doctor can&#8217;t see me as a new patient because it&#8217;s Friday.  And I&#8217;m not in town any other day.</p>
<p>What was I talking about?</p>
<p>Oh &#8211; this blog and why I don&#8217;t post often.  That&#8217;s right&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=667</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora 15 Firstboot Problems</title>
		<link>http://www.benrehberg.com/?p=659</link>
		<comments>http://www.benrehberg.com/?p=659#comments</comments>
		<pubDate>Tue, 13 Sep 2011 05:54:48 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=659</guid>
		<description><![CDATA[I had some trouble after installing Fedora Linux 15 tonight (on two separate occasions) and thought I&#8217;d post here since I didn&#8217;t find a thread on the tubes about my specific issue. I installed FC15 on a desktop at work &#8230; <a href="http://www.benrehberg.com/?p=659">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I had some trouble after installing Fedora Linux 15 tonight (on two separate occasions) and thought I&#8217;d post here since I didn&#8217;t find a thread on the tubes about my specific issue.</p>
<p>I installed FC15 on a desktop at work tonight and it went well.  However, at the first boot where it asks for the first user&#8217;s details, license agreement, etc., it would not progress past the time zone settings.  Pressing &#8220;Forward&#8221; did not go forward as expected.  There was no way to skip the setting, and I was frozen there.</p>
<p>I sat for a few minutes and decided that the machine was set up; I&#8217;d already entered my user details and the thing was ready to go except for the time zone and whether or not I&#8217;d like to send my system configuration to the Fedora team (I usually do).  But how to get past this screen that doesn&#8217;t let me through?  A trick I remembered from way back when&#8230;</p>
<p>If you were on FC3 or so, with root logged in to the desktop but with the screen locked, you could just hit CTRL+ALT+BKSP and it would kill the Gnome session and return you to a text console.  Bad security hole.  Nowadays it just restarts Gnome and you are presented with the logon screen.</p>
<p>So that&#8217;s what I did.  CTRL+ALT+BKSP skipped that first boot session and gave me a login prompt.  I continued to set up my environment and had to reboot after disabling SELinux.  Upon reboot, I was taken to the first boot sequence again, and it stuck at the time zone setting again.  Damn.</p>
<p>On to searching for a solution.</p>
<p>Found one.  /etc/init.d/firstboot runs at every startup and checks for a file at /etc/sysconfig/firstboot.  If it exists and contains &#8220;RUN_FIRSTBOOT=NO&#8221; it will not run the firstboot sequence.  There&#8217;s your solution to it.  Create a file, /etc/sysconfig/firstboot.  It should contain one line &#8211; RUN_FIRSTBOOT=NO</p>
<p>Reboot.  Be happy.</p>
<p>I&#8217;m not entirely sure what the issue is/was, but unless it&#8217;s an isolated event with the image I have or the disc quality I used when burning, I am very surprised I didn&#8217;t find a solution at the Fedora forums.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=659</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remembering September 11, 2001</title>
		<link>http://www.benrehberg.com/?p=654</link>
		<comments>http://www.benrehberg.com/?p=654#comments</comments>
		<pubDate>Sun, 11 Sep 2011 12:46:31 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[9/11]]></category>
		<category><![CDATA[Army]]></category>
		<category><![CDATA[memories]]></category>
		<category><![CDATA[war]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=654</guid>
		<description><![CDATA[On the cool morning of September 11, 2001, I prepared myself for the last PT test I&#8217;d ever have to take in the Army.  I hated running, and never did very well at all with the physical activity.  I&#8217;m as &#8230; <a href="http://www.benrehberg.com/?p=654">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On the cool morning of September 11, 2001, I prepared myself for the last PT test I&#8217;d ever have to take in the Army.  I hated running, and never did very well at all with the physical activity.  I&#8217;m as surprised as anyone that I go out on somewhat of a regular basis to run and exercise now, nearly ten years out of the military.</p>
<p>I don&#8217;t remember much about the test, only that I barely passed and wouldn&#8217;t have to do remedial PT for the rest of my enlistment.  I was pleased with myself for doing just enough.  We rode in someone&#8217;s car back to the office, where I took care of records for my company, kept up with data, produced reports, and shuffled paperwork like awards and disciplinary actions.</p>
<p>When I got to the office that morning, though, it was different.  Our armorer was glued to the TV and told us that a plane had hit the World Trade Center.  &#8220;Some poor idiot,&#8221; I thought.  Sometimes Cessnas, Pipers, and Bonanzas did that with their pilots.  Private airplanes crashed all the time.</p>
<p>I went to my office, probably to print the attendance sheet for the morning&#8217;s meeting or something.  That was when the second plane hit, and that was too many planes for a coincidence.  I soon found out that they weren&#8217;t private planes but commercial airliners.  And we heard about the Pentagon &#8211; we&#8217;d just had a sergeant from my platoon go to work there.  And Pennsylvania.</p>
<p>I was still in my PT uniform, so I went off-base to my apartment to change.  It took me five hours to get back on to Fort Carson &#8211; they were checking every vehicle.  Security was up to the max, no exceptions.</p>
<p>The following days saw me riding my bicycle on to the post, as it was much faster than waiting in traffic.  Later in December I would hear of the U.S. bombing Kandahar, and the war had begun.  We&#8217;d had a down-range exercise scheduled for October, and it was not delayed.  We went on the exercise.  More bombing.  Looking at Iraq.  Elevated troop deployment.  Worries and talks of a stop-loss.  I was just months away from getting out.</p>
<p>I ended up discharging from the Army, half regretting my decision to get out, and half relieved that I wouldn&#8217;t have to go to war myself.  I never was much of a fighter &#8211; I wanted to go to college.</p>
<p>In April 2002, I was working at an airfield, fueling private airplanes and the commercial jets at the airport.  It was where all the folks from Fort Carson happened to get on big planes in big numbers, headed for Iraq or Afghanistan.  One night I was throwing bags on one of those big charter planes and I saw my own unit stamped on the bags.  My unit was going to Iraq.  That would have been me.  After all, I was in the bottom of the plane while my comrades were getting in on top.  Harrowing thought.</p>
<p>I&#8217;m not saying I&#8217;m changed forever, but this is just my story.  I sometimes wish I could use my skills to help the military, save lives during war, or fight the enemy.  But most of the time I just want to be home with my wife and children.  They are my brethren who make that possible.</p>
<p>My thanks goes out to all who have ever served in the United States military, in any capacity, for any length of time.  We also should be very proud of the paramedics, firefighters, and police who serve our communities in the best and worst of times.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=654</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Toy Ever</title>
		<link>http://www.benrehberg.com/?p=643</link>
		<comments>http://www.benrehberg.com/?p=643#comments</comments>
		<pubDate>Tue, 16 Aug 2011 03:56:01 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[afghanistan]]></category>
		<category><![CDATA[war]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=643</guid>
		<description><![CDATA[I recently found an article at MSNBC about a soldier whose brother sent him a radio-controlled truck with a video camera to help him check for bombs under vehicles. The truck became a favorite toy among the soldiers as it &#8230; <a href="http://www.benrehberg.com/?p=643">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently found an article at MSNBC about a soldier whose brother sent him a radio-controlled truck with a video camera to help him check for bombs under vehicles. The truck became a favorite toy among the soldiers as it was a good way to pass some time playing with it.</p>
<p>Some time later, though, the soldier lent the truck to a patrol unit. The unit saw something funny during their route and decided after a few minutes to send the truck out to have a look. It ended up snagging on a trip wire and triggering what they estimated was a 500-pound bomb. The truck obviously didn’t survive, but six soldiers’ lives were spared because of it.</p>
<p>In a time of multi-million-dollar airplanes, efficient tactical satellites, huge tanks, and nuclear-powered ships, the Army made quite a difference with a $200 toy. I would doubt the Army would have a reason to send thousands of radio-controlled trucks over there, but a few hundred couldn’t hurt. I’m willing to send any help those soldiers can get on the ground. What do you think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=643</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where’s George?</title>
		<link>http://www.benrehberg.com/?p=634</link>
		<comments>http://www.benrehberg.com/?p=634#comments</comments>
		<pubDate>Sun, 14 Aug 2011 20:25:59 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Atlanta]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[currency]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[wheresgeorge.com]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=634</guid>
		<description><![CDATA[Anika and I got a dollar yesterday at Starbucks that had wheresgeorge.com stamped on it. It&#8217;s the first one I&#8217;ve ever had myself. I&#8217;d seen friends who had come into contact with one but I never got to follow up &#8230; <a href="http://www.benrehberg.com/?p=634">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Anika and I got a dollar yesterday at Starbucks that had wheresgeorge.com stamped on it.  It&#8217;s the first one I&#8217;ve ever had myself.  I&#8217;d seen friends who had come into contact with one but I never got to follow up on any.</p>
<p>We went to the site with it today and logged it.  I was disappointed to find that this was only the second logging of this particular dollar, with the initial entry from Savannah over a year ago.</p>
<p>I signed up to receive updates on the bill.  To ensure it really goes somewhere, I&#8217;m going to take my wife&#8217;s idea of spending it at the Atlanta airport this week.  I&#8217;ll update this post if I hear back from the dollar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=634</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Lunch</title>
		<link>http://www.benrehberg.com/?p=635</link>
		<comments>http://www.benrehberg.com/?p=635#comments</comments>
		<pubDate>Fri, 12 Aug 2011 10:53:37 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[stories]]></category>

		<guid isPermaLink="false">http://www.benrehberg.com/?p=635</guid>
		<description><![CDATA[A man stops at a store on his lunch hour and buys a folding chair. It’s the type of chair that can fold up and slip into a sleeve, the sort of seat one takes to a tailgate party. He &#8230; <a href="http://www.benrehberg.com/?p=635">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A man stops at a store on his lunch hour and buys a folding chair. It’s the type of chair that can fold up and slip into a sleeve, the sort of seat one takes to a tailgate party. He drives back toward work but doesn’t stop; he knows where he’s going. He should probably call his wife.</p>
<p>He parks in the short-term parking lot at the airport. He won’t be gone too long. He’s wanted to do something like this all his life, but hadn’t realized it until this afternoon. At the counter, he buys one ticket to Colorado Springs, round trip. Return tomorrow. He’ll need a car when he gets there.</p>
<p>The flight is tolerable. Nothing to take note of. The car is ready when he arrives. It’s a small airport and he’s off in minutes, driving toward the mountains. The weather in early fall is wonderfully pleasant.</p>
<p>After an hour or so of driving, he pulls over to the shoulder of a long, empty road. He gets out, opens the trunk, and retrieves the chair. He sets it up beside the car, sits down, and stares at <a href="http://v2.lscache3.c.bigcache.googleapis.com/static.panoramio.com/photos/original/18888152.jpg" target="_blank">this</a>. Exactly as planned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benrehberg.com/?feed=rss2&amp;p=635</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

