<?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>Zelut&#039;s Blog</title>
	<atom:link href="https://blog.zelut.org/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.zelut.org</link>
	<description>Brain Dump of a SysAdmin</description>
	<lastBuildDate>Wed, 29 Jan 2020 03:31:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Bastille: Secure Container Automation at SCaLE18x</title>
		<link>https://blog.zelut.org/2020/01/28/bastille-secure-container-automation-at-scale18x/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Wed, 29 Jan 2020 03:31:52 +0000</pubDate>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[bastillebsd]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=268</guid>

					<description><![CDATA[<p>I am looking forward to presenting “Bastille: Secure Container Automation” at SCaLE18x. This demonstrates the container automation I&#8217;ve layered atop FreeBSD&#8217;s mature container system, jails. Bastille&#160;is an open-source system for automating deployment and management of containerized applications on FreeBSD. Bastille automates deployment and management of containers using a container technology *old enough to buy you a… <span class="read-more"><a href="https://blog.zelut.org/2020/01/28/bastille-secure-container-automation-at-scale18x/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2020/01/28/bastille-secure-container-automation-at-scale18x/">Bastille: Secure Container Automation at SCaLE18x</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I am looking forward to presenting “<a href="https://www.socallinuxexpo.org/scale/18x/presentations/bastille-secure-container-automation-freebsd">Bastille: Secure Container Automation</a>” at <a href="https://www.socallinuxexpo.org/scale/18x">SCaLE18x</a>. This demonstrates the container automation I&#8217;ve layered atop FreeBSD&#8217;s mature container system, jails.</p>



<p><a href="https://bastillebsd.org/">Bastille</a>&nbsp;is an open-source system for automating deployment and management of containerized applications on FreeBSD.</p>



<blockquote class="wp-block-quote"><p>Bastille automates deployment and management of containers using a container technology *old enough to buy you a drink! We’ve taken automation concepts learned from leading config management contenders and combined them with the ORIGINAL container technology. FreeBSD introduced containers in April 1999, pre-dating every other container technology available. Imagine, a reliable container technology that has had two decades to work out bugs. Talk about production ready! This talk will outline design features and demonstrate secure container automation in the cloud and on the Raspberry Pi.</p><cite>* Bastille uses&nbsp;<a href="https://bastillebsd.org/">FreeBSD Jails</a>&nbsp;as the container platform.</cite></blockquote>



<p>To learn more about getting started with containers on FreeBSD see the <a href="https://bastillebsd.org/getting-started/">Bastille Getting Started Guide</a>.</p>The post <a href="https://blog.zelut.org/2020/01/28/bastille-secure-container-automation-at-scale18x/">Bastille: Secure Container Automation at SCaLE18x</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Running Dell DSET 3.2 on CentOS 6.2</title>
		<link>https://blog.zelut.org/2013/01/23/running-dell-dset-3-2-on-centos-6-2/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 19:03:43 +0000</pubDate>
				<category><![CDATA[CentOS]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=227</guid>

					<description><![CDATA[<p>Earlier today I was working with Dell Support to gather information about a broken system. It was suggested that I use their DSET utility to gather data and return a report. The problem is, DSET doesn&#8217;t natively support CentOS, so some tweaks were needed in order for it to run properly. In this post I&#8217;ll… <span class="read-more"><a href="https://blog.zelut.org/2013/01/23/running-dell-dset-3-2-on-centos-6-2/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2013/01/23/running-dell-dset-3-2-on-centos-6-2/">Running Dell DSET 3.2 on CentOS 6.2</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Earlier today I was working with Dell Support to gather information about a broken system. It was suggested that I use their DSET utility to gather data and return a report. The problem is, DSET doesn&#8217;t natively support CentOS, so some tweaks were needed in order for it to run properly. In this post I&#8217;ll outline the changes I needed to make in order to run DSET on CentOS 6.2.</p>
<p>Step 1: Download the DSET utility using <code>wget</code>.</p>
<p><code>wget ftp://ftp.us.dell.com/FOLDER00481758M/1/dell-dset-3.2.0.141_x64_A01.bin</code></p>
<p>Step 2: Create a working directory and extract the archive<br />
<code>mkdir ~/dell</code><br />
<code>tail -n+20 dell-dset-3.2.0.141_x64_A01.bin | tar -xzv -C ~/dell</code></p>
<p>Note: If you get an error saying that the file is not in a valid archive format, you may need to alter the <code>tail</code> command slightly. Use the following command to determine the line at which the archive begins:<br />
<code>awk '/^__ARCHIVE_BELOW__/ {print NR + 1; exit 0; }' dell-dset-3.2.0.141_x64_A01.bin</code></p>
<p>Step 3: Trick the installer into thinking you&#8217;re running a supported OS<br />
The installer uses the <code>/etc/issue</code> and <code>/etc/redhat-release</code> files to determine the operating system. The trick here is to update those files on your system to match one of the supported operating systems listed in the included archive. Look at the <code>support_os_list</code> file found in your working directory (<code>~/dell</code>), and update your files to match one of the listed systems. For CentOS 6.2 I used the <code>Red Hat Enterprise Linux Server release 6 x86_64</code> entry.</p>
<p><code>cp /etc/issue{,.bak} &amp;&amp; echo 'Red Hat Enterprise Linux Server release 6 x86_64' &gt; /etc/issue</code><br />
<code>cp /etc/redhat-release{,.bak} &amp;&amp; echo 'Red Hat Enterprise Linux Server release 6 x86_64' &gt; /etc/redhat-release</code></p>
<p>Once this is done you can try to run the installer found in your working directory (<code>~/dell/install.sh</code>).</p>The post <a href="https://blog.zelut.org/2013/01/23/running-dell-dset-3-2-on-centos-6-2/">Running Dell DSET 3.2 on CentOS 6.2</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Announcing: Into The Salt Mine</title>
		<link>https://blog.zelut.org/2012/12/10/announcing-into-the-salt-mine/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Mon, 10 Dec 2012 16:00:52 +0000</pubDate>
				<category><![CDATA[Salt]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=220</guid>

					<description><![CDATA[<p>I&#8217;ve started a new blog that I&#8217;d like to announce called Into the Salt Mine. This blog will focus solely on using the suite of free software applications developed by Salt Stack. This includes configuration management, remote execution, cloud provisioning and more. The goal is to provide regular tips and updates on managing systems using… <span class="read-more"><a href="https://blog.zelut.org/2012/12/10/announcing-into-the-salt-mine/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2012/12/10/announcing-into-the-salt-mine/">Announcing: Into The Salt Mine</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve started a new blog that I&#8217;d like to announce called <a title="Into the Salt Mine" href="http://intothesaltmine.org">Into the Salt Mine</a>. This blog will focus solely on using the suite of free software applications developed by <a title="Salt Stack Inc" href="http://saltstack.com">Salt Stack</a>. This includes configuration management, remote execution, cloud provisioning and more. The goal is to provide regular tips and updates on managing systems using Salt and related tools.</p>
<p>If you haven&#8217;t heard of Salt yet, I&#8217;d highly recommend checking out the <a title="Salt 30 Second Summary" href="http://docs.saltstack.org/en/latest/topics/index.html">30 second summary</a> and consider using Salt to manage your systems.</p>The post <a href="https://blog.zelut.org/2012/12/10/announcing-into-the-salt-mine/">Announcing: Into The Salt Mine</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Creating symlinks with Salt States</title>
		<link>https://blog.zelut.org/2012/12/02/creating-symlinks-with-salt-states/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Sun, 02 Dec 2012 16:31:38 +0000</pubDate>
				<category><![CDATA[Salt]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=214</guid>

					<description><![CDATA[<p>This morning I finally found a solution to improving vim-usage on my FreeBSD machines. For the longest time I&#8217;ve dealt with little annoyances like arrow-keys entering ABCD characters, and backspace only working in certain situations. As it turns out, all I needed was to import a proper vimrc file. As soon as I had tested… <span class="read-more"><a href="https://blog.zelut.org/2012/12/02/creating-symlinks-with-salt-states/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2012/12/02/creating-symlinks-with-salt-states/">Creating symlinks with Salt States</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>This morning I finally found a solution to improving vim-usage on my FreeBSD machines. For the longest time I&#8217;ve dealt with little annoyances like arrow-keys entering ABCD characters, and backspace only working in certain situations. As it turns out, all I needed was to import a proper vimrc file. As soon as I had tested the fix, I expanded my vim Salt State to include a symlink to the included example vimrc.</p>
<p><strong>states/vim/init.sls:</strong><br />
<code>/root/.vimrc:<br />
file.symlink:<br />
- target: /usr/local/share/vim/vim73/vimrc_example.vim<br />
</code></p>
<p>This state breaks down as follows:</p>
<p><code>/root/.vimrc</code> &#8211; File to create<br />
<code>file.symlink</code> &#8211; Use the symlink function (others include file.managed, and file.directory)<br />
<code>-target: /usr/local/share/vim/vim73/vimrc_example.vim</code> &#8211; Path to original file</p>
<p>Finally I applied the state using the state.sls module, applying only the vim state:</p>
<p><code> [root@starbuck ~]# salt-call state.sls vim<br />
local:<br />
----------<br />
State: - file<br />
Name: /root/.vimrc<br />
Function: symlink<br />
Result: True<br />
Comment: Created new symlink /root/.vimrc<br />
Changes: new: /root/.vimrc<br />
</code></p>The post <a href="https://blog.zelut.org/2012/12/02/creating-symlinks-with-salt-states/">Creating symlinks with Salt States</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to enable ccache with OS X MacPorts</title>
		<link>https://blog.zelut.org/2011/02/12/how-to-enable-ccache-with-os-x-macports/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Sat, 12 Feb 2011 16:31:38 +0000</pubDate>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[ccache]]></category>
		<category><![CDATA[MacPorts]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=199</guid>

					<description><![CDATA[<p>I&#8217;ve had a 13&#8243; Macbook for about your years now. When I learned about MacPorts I was really happy to know I could run newer software, and compile things to my liking. These days I run a development environment on my Macbook, all built using MacPorts. This post covers how to leverage ccache in compiling… <span class="read-more"><a href="https://blog.zelut.org/2011/02/12/how-to-enable-ccache-with-os-x-macports/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2011/02/12/how-to-enable-ccache-with-os-x-macports/">How to enable ccache with OS X MacPorts</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve had a 13&#8243; Macbook for about your years now. When I learned about MacPorts I was really happy to know I could run newer software, and compile things to my liking. These days I run a development environment on my Macbook, all built using MacPorts.</p>
<p>This post covers how to leverage ccache in compiling your MacPorts. ccache is a compiler cache utility that increases the efficiency of your compiles by reusing cached build data, often improving build times by 5-10 times!</p>
<p><strong>Step 1: Install ccache</strong></p>
<blockquote><p><code>sudo port install ccache</code></p></blockquote>
<p><strong>Step2: Edit macports.conf&#8221;</strong></p>
<p>Open /opt/local/etc/macports/macports.conf in your favorite editor. Find the line &#8216;configureccache&#8217; (near line 65)</p>
<blockquote><p><code>configureccache    no</code></p></blockquote>
<p>and change it to</p>
<blockquote><p><code>configureccache    yes</code></p></blockquote>
<p>You&#8217;re done! New compiles will now use ccache.</p>
<p><em>note</em>: ccache stores it&#8217;s cached date in your home directory, ie; /Users/$username/.ccache. It defaults to a maximum cache storage size of 1G. You can find out more about the ccache settings via the &#8216;ccache -s&#8217; command.</p>The post <a href="https://blog.zelut.org/2011/02/12/how-to-enable-ccache-with-os-x-macports/">How to enable ccache with OS X MacPorts</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Dell Latitude E5500 Wireless Fedora 14</title>
		<link>https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/</link>
					<comments>https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/#comments</comments>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Sat, 20 Nov 2010 04:56:52 +0000</pubDate>
				<category><![CDATA[Fedora]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=193</guid>

					<description><![CDATA[<p>Dell Latitude E5500 Wireless &#8211; Fedora 14 I recently needed to send my main work machine in for repairs so I temporarily used a Dell Latitude E5500 while my normal D630 was away. Boy did I have trouble with the hardware on this machine! This blog post is a meagre attempt at outlining what was… <span class="read-more"><a href="https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/">Dell Latitude E5500 Wireless Fedora 14</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p><strong>Dell Latitude E5500 Wireless &#8211; Fedora 14</strong></p>
<p>I recently needed to send my main work machine in for repairs so I temporarily used a Dell Latitude E5500 while my normal D630 was away. Boy did I have trouble with the hardware on this machine! This blog post is a meagre attempt at outlining what was required of me to get some hardware supported. Hopefully this helps some other poor soul along the way.</p>
<p><strong>Wireless Driver<br />
</strong></p>
<p>In order to enable Wireless on the Dell Latitude E5500 (bcm4322), you&#8217;ll need to follow the steps below. This requires a &#8220;nonfree&#8221; driver from the rpmfusion repository, as well as an addition to the kernel parameter in GRUB. It&#8217;s not so bad once you know the requirements, the trouble is finding the requirements (again, the reason for this post!)</p>
<p>Install the rpmfusion nonfree repository using the command:</p>
<blockquote><p><code>rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm</code></p></blockquote>
<p>With this repository now added, you&#8217;ll be able to install the <code>broadcom-wl</code> package.</p>
<blockquote><p><code>yum install broadcom-wl</code></p></blockquote>
<p><strong>Kernel Parameters</strong></p>
<p>The last addition you&#8217;ll need to make is to append a parameter to your kernel configuration in GRUB.  Append the following to GRUB on the kernel entries:</p>
<blockquote><p><code>intel_iommu=off</code></p></blockquote>
<p>Reboot your machine, and when you come back up you should be online!</p>
<p>I hope these little tips help someone else get wireless running in Fedora. Lack of wireless sure can be a deal-breaker. Here&#8217;s to winning that battle!</p>The post <a href="https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/">Dell Latitude E5500 Wireless Fedora 14</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.zelut.org/2010/11/19/dell-latitude-e5500-wireless-fedora-14/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Freenode IRC over SSL in Irssi &#8211; FreeBSD</title>
		<link>https://blog.zelut.org/2010/05/29/freenode-irc-over-ssl-in-irssi-freebsd/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Sat, 29 May 2010 17:13:22 +0000</pubDate>
				<category><![CDATA[FreeBSD]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=187</guid>

					<description><![CDATA[<p>I&#8217;ve been reconfiguring my Irssi installation this morning and wanted to document the steps I took. I use irssi on FreeBSD 8.0-RELEASE. Required Certificates In order to connect securely over SSL to freenode you need to ensure you have the certificate installed. On FreeBSD, this port is ca_root_nss. portmaster security/ca_root_nss Configure the Network and Server… <span class="read-more"><a href="https://blog.zelut.org/2010/05/29/freenode-irc-over-ssl-in-irssi-freebsd/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2010/05/29/freenode-irc-over-ssl-in-irssi-freebsd/">Freenode IRC over SSL in Irssi – FreeBSD</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been reconfiguring my Irssi installation this morning and wanted to document the steps I took. I use irssi on FreeBSD 8.0-RELEASE.</p>
<p><strong>Required Certificates</strong></p>
<p>In order to connect securely over SSL to freenode you need to ensure you have the certificate installed. On FreeBSD, this port is ca_root_nss.</p>
<blockquote><p><code>portmaster security/ca_root_nss</code></p></blockquote>
<p><strong>Configure the Network and Server</strong></p>
<blockquote><p><code>/network add -nick 'nick' -realname 'real name' freenode<br />
/server add -auto -ssl_verify -ssl_cafile /usr/local/share/certs/ca-root-nss.crt -network freenode chat.freenode.net 7000<br />
/save</code></p></blockquote>
<p><em>Note: If the blog wraps the content, there are three commands above, prefixed with /. /network, /server and /save.</em></p>
<p>Now, when you open irssi, you&#8217;ll automagically connect to Freenode over SSL.</p>The post <a href="https://blog.zelut.org/2010/05/29/freenode-irc-over-ssl-in-irssi-freebsd/">Freenode IRC over SSL in Irssi – FreeBSD</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Configure Lighttpd for gitweb on FreeBSD</title>
		<link>https://blog.zelut.org/2010/05/23/configure-lighttpd-for-gitweb-on-freebsd/</link>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Sun, 23 May 2010 21:36:57 +0000</pubDate>
				<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[lighttpd]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=184</guid>

					<description><![CDATA[<p>I spent some time this afternoon setting up a public git repository for my project, Origami. I had a little bit of trouble getting the repository set up initially, particularly the cgi aspect of it all. Below outlines the steps I took to configure Lighttpd for gitweb, hosted on FreeBSD. Installation First, of course, I… <span class="read-more"><a href="https://blog.zelut.org/2010/05/23/configure-lighttpd-for-gitweb-on-freebsd/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2010/05/23/configure-lighttpd-for-gitweb-on-freebsd/">Configure Lighttpd for gitweb on FreeBSD</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I spent some time this afternoon setting up a public git repository for my project, <a title="Origami - The art of Folding@Home" href="http://origami.zelut.org">Origami</a>. I had a little bit of trouble getting the repository set up initially, particularly the cgi aspect of it all. Below outlines the steps I took to configure Lighttpd for gitweb, hosted on FreeBSD.</p>
<p><strong>Installation</strong></p>
<p>First, of course, I installed the git port:</p>
<blockquote><p><code>portmaster devel/git</code></p></blockquote>
<p>I made sure to select the gitweb option, which is de-activated by default. The other options are up to you.</p>
<p><strong>Configuration</strong></p>
<p>Second, I configured Lighttpd in the simplest manner I could find. This solution uses the existing gitweb files in-place. This is contrary to what the pkg-message prescribes, but I like this idea because it&#8217;ll ensure that upgrades are handled automatically. I don&#8217;t plan to run any additional repositories either, so using the one central set of files is preferable in my situation. This is my configuration:</p>
<blockquote><p><code> $HTTP["host"] =~ "^origami.zelut.org" {<br />
$HTTP["url"] =~ "/gitweb/" {<br />
server.indexfiles = ( "gitweb.cgi" )<br />
}<br />
alias.url += ( "/gitweb/" =&gt; "/usr/local/share/examples/git/gitweb/" ),<br />
cgi.assign = ( ".cgi" =&gt; "/usr/bin/perl" )<br />
}<br />
</code></p></blockquote>
<p><strong>Repository Configuration</strong></p>
<p>Lastly, I update the repository configuration in /usr/local/share/examples/git/gitweb/gitweb.cgi to my repository location:</p>
<blockquote><p><code>our $projectroot = "/path/to/git/repository/"</code></p></blockquote>
<p><strong>Conclusion</strong></p>
<p>I find that Lighttpd configuration, once you get used to it, is much simpler than Apache configuration. It&#8217;s all a matter of taking the time to learn the options (and finding examples, like this one) and it gets simpler.</p>
<p>I think this configuration for gitweb is very clean, requires minimal configuration additions, and is hopefully pretty self explanatory. I hope it works for you as well.</p>The post <a href="https://blog.zelut.org/2010/05/23/configure-lighttpd-for-gitweb-on-freebsd/">Configure Lighttpd for gitweb on FreeBSD</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Arch Linux 2010.05 Installer Issue [FIXED]</title>
		<link>https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/</link>
					<comments>https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/#comments</comments>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Tue, 18 May 2010 19:20:47 +0000</pubDate>
				<category><![CDATA[Arch]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=181</guid>

					<description><![CDATA[<p>I reinstalled my Dell Latitude D630 this afternoon using the new Arch Linux installer (2010.05) netinstall. I had an issue however where the live image would start to boot and then I&#8217;d get a blank screen. I quickly realized what the problem was, and found a fix. Note: it looks like it is a similar… <span class="read-more"><a href="https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/">Arch Linux 2010.05 Installer Issue [FIXED]</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>I reinstalled my Dell Latitude D630 this afternoon using the new Arch Linux installer (2010.05) netinstall. I had an issue however where the live image would start to boot and then I&#8217;d get a blank screen. I quickly realized what the problem was, and found a fix.</p>
<p>Note: it looks like it is a similar issue to the one found <a href="http://ubuntu-tutorials.com/2010/05/06/ubuntu-10-04-lucid-blank-screen-at-startup-workaround/">here</a>.</p>
<p>Basically, the fix that I found, was to append the following to the kernel line at the initial boot prompt:</p>
<blockquote><p>nomodeset</p></blockquote>
<p>This is done by hitting the [TAB] key at the boot prompt of the installer and appending that text to the end.</p>
<p>I wanted to get this out in hopes that it&#8217;d help others with the same problem.</p>
<p>Good luck, and happy Arch&#8217;ing.</p>The post <a href="https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/">Arch Linux 2010.05 Installer Issue [FIXED]</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.zelut.org/2010/05/18/arch-linux-2010-05-installer-issue-fixed/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Configure Serial Console Access on CentOS 5</title>
		<link>https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/</link>
					<comments>https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/#comments</comments>
		
		<dc:creator><![CDATA[Christer]]></dc:creator>
		<pubDate>Thu, 06 May 2010 03:21:42 +0000</pubDate>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[centos5]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[serial]]></category>
		<category><![CDATA[virsh]]></category>
		<guid isPermaLink="false">http://blog.zelut.org/?p=178</guid>

					<description><![CDATA[<p>Today I built some virtual machines on a KVM platform (Ubuntu 10.04 Server as the host). The three virtual machines are CentOS 5, i386 and will be used primarily for internal application testing. One of the requirements for using these machines in a virtual environment was configuring back-end console access from the host. The virtual… <span class="read-more"><a href="https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/">Read More &#187;</a></span></p>
The post <a href="https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/">Configure Serial Console Access on CentOS 5</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>Today I built some virtual machines on a KVM platform (Ubuntu 10.04 Server as the host). The three virtual machines are CentOS 5, i386 and will be used primarily for internal application testing. One of the requirements for using these machines in a virtual environment was configuring back-end console access from the host. The virtual machine management tools (virsh) provide custom commands to console into your guest machines, but the guest machines need to be configured to output to the proper console. This article outlines what customizations I made to the CentOS 5 virtual machines in order to console into them from the host using &#8216;virsh console &lt;guest&gt;&#8217;</p>
<p><strong>GRUB</strong></p>
<p>The first modifications that I needed to make were in GRUB. On CentOS the GRUB config file can be found at: <code>/boot/grub/menu.lst</code>. Below you&#8217;ll find the changes I made:</p>
<blockquote><p><code>default=0<br />
timeout=5<br />
#splashimage=(hd0,0)/grub/splash.xpm.gz<br />
serial --unit=0 --speed=115200<br />
terminal --timeout=10 console serial<br />
hiddenmenu</code></p></blockquote>
<p>I&#8217;m sure if you compare that snippet with your current configuration you&#8217;ll see the changes that I&#8217;ve implemented. Primarily the commenting of the splashimage, and the addition of the serial and terminal lines.</p>
<p>In addition to these changes you&#8217;ll also need to append some console configurations to each &#8216;kernel&#8217; line. Here is an example:</p>
<blockquote><p><code>title CentOS (2.6.18-164.15.1.el5)<br />
root (hd0,0)<br />
kernel /vmlinuz-2.6.18-164.15.1.el5 ro root=/dev/SLIM/root console=tty0 console=ttyS0,115200n8<br />
</code></p></blockquote>
<p>Again, compare this to your current configuration. You&#8217;ll notice I&#8217;ve added <code>console=tty0 console=ttyS0,115200n8</code></p>
<p><strong>/etc/inittab</strong></p>
<p>Finally you&#8217;ll need to make a change to the /etc/inittab file, which will allow login via the serial console connection:</p>
<blockquote><p><code>S0:2345:respawn:/sbin/agetty ttyS0 115200 linux<br />
</code></p></blockquote>
<p>Once these changes have been applied you should be able to reboot and connect to the console:</p>
<p><code>virsh console &lt;guest&gt; </code>should then display the GRUB menu, boot output and finally a login.</p>The post <a href="https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/">Configure Serial Console Access on CentOS 5</a> first appeared on <a href="https://blog.zelut.org">Zelut's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://blog.zelut.org/2010/05/05/configure-serial-console-access-on-centos-5/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
	</channel>
</rss>
