<?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>occasionally useful &#187; Ubuntu</title>
	<atom:link href="http://blog.maxaller.name/tag/ubuntu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.maxaller.name</link>
	<description>ruby, ubuntu, etc</description>
	<lastBuildDate>Thu, 02 Sep 2010 07:00:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Vostro (1400) + Ubuntu 9.04 + sound issues</title>
		<link>http://blog.maxaller.name/2009/04/vostro-1400-ubuntu-904-sound-issues/</link>
		<comments>http://blog.maxaller.name/2009/04/vostro-1400-ubuntu-904-sound-issues/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 17:41:42 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[9.04]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jaunty]]></category>
		<category><![CDATA[jaunty jackalope]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[vostro]]></category>
		<category><![CDATA[vostro 1400]]></category>

		<guid isPermaLink="false">http://blog.maxaller.name/?p=142</guid>
		<description><![CDATA[Another Ubuntu upgrade, another sound configuration that doesn't work out of the box.  This is what I had to do for Ubuntu 8.10, that also worked for this version: $ sudo vim /etc/init.d/alsa-utils Around line 364, replace this [ "$TARGET_CARD" = "all" ] &#38;&#38; log_action_end_msg_and_exit "$EXITSTATUS" exit $EXITSTATUS ;; stop) EXITSTATUS=0 TARGET_CARD="$2" with [ "$TARGET_CARD" [...]]]></description>
			<content:encoded><![CDATA[<p>Another Ubuntu upgrade, another sound configuration that doesn't work out of the box.  This is what I had to do for Ubuntu 8.10, that also worked for this version:</p>
<p>$ sudo vim /etc/init.d/alsa-utils</p>
<p>Around line 364, replace this</p>
<pre>
[ "$TARGET_CARD" = "all" ] &amp;&amp; log_action_end_msg_and_exit "$EXITSTATUS"
exit $EXITSTATUS
;;
stop)

EXITSTATUS=0
TARGET_CARD="$2"
</pre>
<p>with</p>
<pre>
[ "$TARGET_CARD" = "all" ] &amp;&amp; log_action_end_msg_and_exit "$EXITSTATUS"
exit $EXITSTATUS
;;
stop)
<strong> ifconfig wlan0 down
ifconfig eth0 down
</strong> EXITSTATUS=0
TARGET_CARD="$2"
</pre>
<p>Then restart.  In 9.04 I also had to go through my volume control panel and make sure nothing was turned all the way down or muted.  I think I had to unmute the master volume and turn PCM Playback (under HDA Intel) up.</p>
<p>Please comment if this helps you!</p>
<p>UPDATE April 29th, 2009: I also had to reinstall flash in order to get sound working in Firefox again.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxaller.name/2009/04/vostro-1400-ubuntu-904-sound-issues/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Ruby 1.9 and OpenSSL on Ubuntu</title>
		<link>http://blog.maxaller.name/2009/02/ruby-19-and-openssl-on-ubuntu/</link>
		<comments>http://blog.maxaller.name/2009/02/ruby-19-and-openssl-on-ubuntu/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 02:45:12 +0000</pubDate>
		<dc:creator>Max</dc:creator>
				<category><![CDATA[ruby]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[ruby 1.9]]></category>
		<category><![CDATA[ruby 1.9.1]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.maxaller.name/?p=70</guid>
		<description><![CDATA[Having trouble getting openssl working on your Linux box and Ruby 1.9 (or 1.9.1, specifically)? Here's something to give a try... If you got your Ruby from a package manager, you have to get an extra package before reinstalling Ruby. If you built from source (as is currently the only way to get Ruby 1.9.1 [...]]]></description>
			<content:encoded><![CDATA[<p>Having trouble getting openssl working on your Linux box and Ruby 1.9 (or 1.9.1, specifically)?  Here's something to give a try...<br />
<span id="more-70"></span><br />
If you got your Ruby from a package manager, you have to get an extra package before reinstalling Ruby.  If you built from source (as is currently the only way to get Ruby 1.9.1 on Ubuntu) then you still have to get the extra package, but you don't have to reinstall Ruby.</p>
<h1>From the repository</h1>
<ol>
<li>sudo aptitude install libopenssl-ruby1.9</li>
<li>sudo aptitude install ruby1.9</li>
</ol>
<h1>From source</h1>
<ol>
<li>sudo aptitude install libopenssl-ruby1.9</li>
<li>cd ~/Downloads/ruby-1.9.1-p0/ext/openssl</li>
<li>ruby extconf.rb &#038;& make &#038;& sudo make install</li>
</ol>
<p>Note that if you haven't installed Ruby yet, you don't need to build the openssl gem manually -- I believe it will automatically get picked up during the regular Ruby 1.9.1 build process if all the dependencies are already there.</p>
<h1>Disclaimer...</h1>
<p>I'm not 100% sure these steps are accurate, so if they're not, please leave angry messages and I'll try to fix the directions.  Otherwise, hope they help!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.maxaller.name/2009/02/ruby-19-and-openssl-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
