<?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>Christian Weigel – WebIngenieur &#187; Linux</title>
	<atom:link href="http://www.christianweigel.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.christianweigel.com</link>
	<description>... in pursuit of global and personal happiness</description>
	<lastBuildDate>Thu, 04 Aug 2011 18:54:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Installing OpenVAS on Debian Lenny &#8211; trouble importing public key</title>
		<link>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/</link>
		<comments>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:45:45 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=113</guid>
		<description><![CDATA[Following the installation instructions on the OpenVAS site I stumbled upon some problems importing the required Public Key. The pgp.net keyservers seem to be not really reliably these so I was unable to use them to retrieve the required Public key for validating the repositories&#8217; packages. this resulted in the following error: Reading package lists&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>Following the installation instructions on<a title="Installation instructions for Debian (Lenny)" href="http://www.openvas.org/install-packages.html#openvas4_debian_obs" target="_blank"> the OpenVAS site</a> I stumbled upon some problems importing the required Public Key.</p>
<p>The pgp.net keyservers seem to be not really reliably these so I was unable to use them to retrieve the required Public key for validating the repositories&#8217; packages.</p>
<p>this resulted in the following error:</p>
<blockquote><p>Reading package lists&#8230; Done W: GPG error: http://download.opensuse.org ./ Release: The following signatures couldn&#8217;t be verified because the public key is not available: NO_PUBKEY BED1E87979EAFD54 W: You may want to run apt-get update to correct these problems</p></blockquote>
<p>to resolve this problem just download the key directly  from the repository</p>
<blockquote><p>wget http://download.opensuse.org/repositories/security:/<br />
OpenVAS:/STABLE:/v4/Debian_5.0/Release.key</p></blockquote>
<p>and import the key manually</p>
<blockquote><p>apt-key adv &#8211;import Release.key</p></blockquote>
<p>update your package lists</p>
<blockquote><p>apt-get update</p></blockquote>
<p>and it should work without problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/113-installing-openvas-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Switching easily between Amazon EC2 Regions (linux console)</title>
		<link>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/</link>
		<comments>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 17:45:25 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.christianweigel.com/?p=111</guid>
		<description><![CDATA[Having AWS resources in different regions, it is handy to quickly switch the region you are currently working with. Some simple bash tricks as explained in this post will do the job nicely.]]></description>
			<content:encoded><![CDATA[<p>If your AWS resources are spread across multiple Regions, there is a simple trick to save you adding the &#8211;region=REGION parameter after each time your are issuing AWS EC2 API commands.</p>
<p>store your settings in a file e.g. ~/.ec2/eu-settings</p>
<blockquote><p>export EC2_URL=https://ec2.eu-west-1.amazonaws.com<br />
export EC2_REGION=eu-west-1</p></blockquote>
<p>and e.g. ~/.ec2/us-settings</p>
<blockquote><p>export EC2_URL=https://ec2.us-east-1.amazonaws.com<br />
export EC2_REGION=us-east-1</p></blockquote>
<p>now we define two simple aliases as shortcuts to these settings.</p>
<blockquote><p># alias eu=&#8217;source ~/.ec2/eu-settings&#8217;<br />
# alias us=&#8217;source ~/.ec2/us-settings&#8217;</p></blockquote>
<p>calling &#8216;eu&#8217; or &#8216;us&#8217; from shell will now switch the regions for you.</p>
<p>you may check that it worked by typing <em>env</em> and noting the values for EC2_URL and EC2_REGION.</p>
<p>These two aliases will &#8211; for now &#8211; only work in your current login session. To persist the setting, just do the following&#8230;</p>
<h2>Persisting the aliases in /etc/bash.bashrc</h2>
<p>edit /etc/bash.bashrc (in debian &#8211; this might differ a bit in other linux distributions)</p>
<blockquote><p># vi /etc/bash.bashrc</p></blockquote>
<p>add</p>
<blockquote><p>alias eu=&#8217;source ~/.ec2/eu-settings&#8217;<br />
alias us=&#8217;source ~/.ec2/us-settings&#8217;</p></blockquote>
<p>below anything that is written there. And call</p>
<blockquote><p># source /etc/bash.bashrc</p></blockquote>
<p>The aliases should work as previously, but will now be available after a system restart or new login to your machine.</p>
<p>Check again using <em>env </em>if you want to verify everything worked correctly.</p>
<p>Inspiration taken from: http://learninginlinux.blogspot.com/2007/02/setting-environment-variables-through.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/111-switching-easily-between-amazon-ec2-regions-linux-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resolving problems with system-tools-backends in Ubuntu Intrepid Ibex (8.10)</title>
		<link>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/</link>
		<comments>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 11:10:51 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[packages]]></category>

		<guid isPermaLink="false">http://www.borgond.de/?p=39</guid>
		<description><![CDATA[Installing (x)Ubuntu on my dated Toshiba Satellite everything went smooth. Just after finishing the installation and getting the first package updates a strange Error with system-tools-backends occured. Luckily this problem is already known and a Workaround to fix this problem exists. Open up a terminal and type the following: sudo invoke-rc.d system-tools-backends stop sudo dpkg [...]]]></description>
			<content:encoded><![CDATA[<p>Installing (x)Ubuntu on my dated Toshiba Satellite everything went smooth. Just after finishing the installation and getting the first package updates a strange Error with system-tools-backends occured.</p>
<p>Luckily this problem is already known and a Workaround to fix this problem exists.</p>
<p>Open up a terminal and type the following:</p>
<blockquote><p>sudo invoke-rc.d system-tools-backends stop</p>
<p>sudo dpkg &#8211;configure -a</p></blockquote>
<p>This resolved the error for me &#8211; thanks to <a href="https://launchpad.net/~islevegan" target="_blank">Islevegan</a> for his post on launchpad</p>
<p><a title="Link to Launchpad" href="https://bugs.launchpad.net/ubuntu/+source/system-tools-backends/+bug/294389" target="_blank">Find a thorough description and how to resolve on launchpad</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/39-resolving-problems-with-system-tools-backends-in-ubuntu-jaunty-jackalope-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to Kubuntu 8.10</title>
		<link>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/</link>
		<comments>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 19:39:54 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ati]]></category>
		<category><![CDATA[kdm]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vesa]]></category>

		<guid isPermaLink="false">http://www.borgond.de/?p=34</guid>
		<description><![CDATA[As the geek that I am it was too tempting to immediately upgrade to the latest version of my (current) beloved linux distro. I expected everything to run smoothly &#8211; which as reality showed me again &#8211; is often not the case. And yes &#8211; I should have known better The Upgrade ran without problems, [...]]]></description>
			<content:encoded><![CDATA[<p>As the geek that I am it was too tempting to immediately upgrade to the latest version of my (current) beloved linux distro. I expected everything to run smoothly &#8211; which as reality showed me again &#8211; is often not the case. And yes &#8211; I should have known better <img src='http://www.christianweigel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>The Upgrade ran without problems, but after restarting my system &#8211; a black screen was greeting me. A bit of research using <a title="Homepage of the Links browser on Sourceforge" href="http://links.sourceforge.net/" target="_blank">Links</a> showed me that I am not the only one running into problems after the upgrade.</p>
<p>After tinkering around and wasting almost a whole night I managed to have KDM, X and my Desktop running again.</p>
<p>If you are running into similar problems &#8211; Kubuntu Ugrade to 8.10 &#8211; X Server doesn&#8217;t start &#8211; KDM not default Display Manager, please <a title="Link to Ubuntu Forums" href="http://ubuntuforums.org/showpost.php?p=6069366&amp;postcount=2" target="_blank">have a read of my post to the Ubuntu Forums</a> where I summarized my efforts getting my X-Server and Desktop back.</p>
<p>Not such a pleasant start &#8211; but I am looking forward <img src='http://www.christianweigel.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.christianweigel.com/34-upgrading-to-kubuntu-810/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

