<?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>Unwinding the Stack &#187; Desktop</title>
	<atom:link href="http://thestaticvoid.com/category/desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://thestaticvoid.com</link>
	<description>Explorations in Computing</description>
	<lastBuildDate>Wed, 07 Dec 2011 16:15:58 +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>Wireless 802.1X Support in Solaris</title>
		<link>http://thestaticvoid.com/post/2011/06/09/wireless-802-1x-support-in-solaris/</link>
		<comments>http://thestaticvoid.com/post/2011/06/09/wireless-802-1x-support-in-solaris/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 01:53:29 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wpa]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=557</guid>
		<description><![CDATA[The George Washington University (where I work and go to school) has recently implemented 802.1X to secure its wireless networks. 802.1X defines support for EAP over Ethernet (including wireless) and the WPA standards define several modes of EAP that can be used. Solaris (I&#8217;m referring to version 11, OpenSolaris, OpenIndiana, and Illumos) supports WPA. It [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://thestaticvoid.com/wordpress/wp-content/uploads/2011/06/wifi.jpg" alt="" title="WiFi" width="300" height="200" class="alignright size-full wp-image-583" /></p>
<p>The George Washington University (where I work and go to school) has recently implemented <a href="http://en.wikipedia.org/wiki/IEEE_802.1X">802.1X</a> to secure its wireless networks.   802.1X defines support for <a href="http://en.wikipedia.org/wiki/Extensible_Authentication_Protocol">EAP</a> over Ethernet (including wireless) and the <a href="http://en.wikipedia.org/wiki/Wi-Fi_Protected_Access">WPA</a> standards define several modes of EAP that can be used.</p>
<p>Solaris (I&#8217;m referring to version 11, OpenSolaris, OpenIndiana, and Illumos) supports WPA.  It modified an early version of <a href="http://hostap.epitest.fi/wpa_supplicant/">wpa_supplicant</a> and called it &#8220;<a href='http://src.illumos.org/source/xref/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/'>wpad</a>&#8220;.  However, they seemed to make a point of stripping out all EAP support in wpad.</p>
<p>So when my Network Security instructor said we had to do a term project of our choosing relating to network security, I decided I&#8217;d try to get 802.1X working in Solaris.  To do this, I decided I could either add the EAP bits back into wpad, or add the Solaris-specific bits to the latest version of wpa_supplicant.  wpad is based on very old code.  It&#8217;s not even clear which version of wpa_supplicant it is based on, and there is no record of the massive amount of changes they made.  It would be too hard for me to figure out where to plug EAP back in, and who knows how many bugs and security vulnerabilities were fixed upstream that we&#8217;d be missing out on.</p>
<p>Fortunately, wpa_supplicant is very modular, and reasonably <a href="http://hostap.epitest.fi/wpa_supplicant/devel/porting.html">well documented</a>.  I was able to graft the older Solaris code onto the newer interfaces.  The result of my work is currently maintained in my own <a href="https://github.com/MrStaticVoid/hostap/compare/master...solaris">branch</a> at GitHub.  It&#8217;s not perfect, but it works (and I&#8217;ll explain how).  Solaris has a very limited public API for wireless support and my goal was to get wpa_supplicant working without having to modify any system libraries or the kernel.  I struggled to figure out some idiosyncrasies such as:</p>
<ul>
<li>Events (association, disassociation, etc.) are only sent to wpa_supplicant when WPA is <strong>enabled</strong> in the driver.</li>
<li>Full scan results are only available when WPA is <strong>disabled</strong> in the driver.</li>
<li>Scan results don&#8217;t provide nearly as much information as their Linux counterparts do, such as access point capabilities, signal strength, noise levels, etc.  I was very worried I wouldn&#8217;t be able to fill out the <a href="http://hostap.epitest.fi/wpa_supplicant/devel/structwpa__scan__res.html">scan results structure</a> fully and wpa_supplicant would refuse to work without complete information.</li>
</ul>
<p>Here is how you can get 802.1X support working on your Solaris laptop:</p>
<ol>
<li>Install the wpa_supplicant package from my package repository:
<pre class="terminal">
# <kbd>pkg set-publisher -p http://pkg.thestaticvoid.com/</kbd>
# <kbd>pkg install wpa_supplicant</kbd>
</pre>
</li>
<li>
<p>Add the configuration for your protected wireless networks to <tt>/etc/wpa_supplicant.conf</tt>.  Here is mine:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ctrl_interface=/var/run/wpa_supplicant<br />
ctrl_interface_group=0<br />
ap_scan=0<br />
<br />
network={<br />
&nbsp; &nbsp; ssid=&quot;prey&quot;<br />
&nbsp; &nbsp; key_mgmt=WPA-PSK<br />
&nbsp; &nbsp; psk=&quot;&lt;network key&gt;&quot;<br />
}<br />
<br />
network={<br />
&nbsp; &nbsp; ssid=&quot;GW1X&quot;<br />
&nbsp; &nbsp; key_mgmt=WPA-EAP<br />
&nbsp; &nbsp; eap=TTLS<br />
&nbsp; &nbsp; identity=&quot;jameslee&quot;<br />
&nbsp; &nbsp; anonymous_identity=&quot;anonymous&quot;<br />
&nbsp; &nbsp; password=&quot;&lt;personal password&gt;&quot;<br />
&nbsp; &nbsp; phase2=&quot;auth=PAP&quot;<br />
}</div></div>
<p>The most important thing here is <code class="codecolorer text default"><span class="text">ap_scan=0</span></code>.  This tells wpa_supplicant not to do any scanning or association of its own.  Those tasks will be handled by dladm and NWAM.
</li>
<li>
Backup <tt>/usr/lib/inet/wpad</tt> and replace it with this script:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/bin/sh</span><br />
<br />
<span style="color: #007800;">interface</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> $<span style="color: #000000; font-weight: bold;">@</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/.*-i *\([a-z0-9]*\).*/\1/'</span><span style="color: #000000; font-weight: bold;">`</span><br />
<span style="color: #7a0874; font-weight: bold;">exec</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>wpa_supplicant <span style="color: #660033;">-Dsolaris</span> -i<span style="color: #007800;">$interface</span> -c<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>wpa_supplicant.conf <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">&amp;</span></div></div>
</li>
</ol>
<p>Now connect to a wireless network with NWAM or dladm.  When prompted for a network key, enter anything; it won&#8217;t be used.  The actual keys will be looked up in <tt>/etc/wpa_supplicant.conf</tt>.  Here is an example of me connecting to my 802.1X-secured network using dladm:</p>
<pre class="terminal">
# <kbd>dladm connect-wifi -e GW1X -s wpa -k nwam-GW1X iwh0</kbd>
# <kbd>dladm show-wifi</kbd>
LINK       STATUS            ESSID               SEC    STRENGTH   MODE   SPEED
iwh0       connected         GW1X                wpa    excellent  g      54Mb
</pre>
<p>&#8220;<tt>-k nwam-GW1X</tt>&#8221; refers to a dummy key setup by NWAM.  dladm will complain if it&#8217;s not supplied a key.</p>
<p>That should be it!</p>
<h4>Future Directions</h4>
<p>Obviously, the integration of wpa_supplicant and NWAM/dladm leaves a lot to be desired.  If there is sufficient interest, I will start looking into how to modify the dladm security framework in Illumos to include EAP related configurations (keys, certificates, identities; it&#8217;s all much more complicated than the single pre-shared key that dladm supports now).  My hope, though, is that Oracle is already working on this.  <em>Do you hear that Oracle?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2011/06/09/wireless-802-1x-support-in-solaris/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CrashPlan</title>
		<link>http://thestaticvoid.com/post/2010/12/14/crashplan/</link>
		<comments>http://thestaticvoid.com/post/2010/12/14/crashplan/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 21:28:10 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[crashplan]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=400</guid>
		<description><![CDATA[I have a little storage array that I store my life on. Music, movies, photographs, projects, school work&#8212;I&#8217;d be devastated if I lost any of it. And yet, I don&#8217;t have any sort of backup for it. Last year I evaluated various online backup services but concluded that my 5 Mbps (~600 KB/s) upload bandwidth [...]]]></description>
			<content:encoded><![CDATA[<p>I have a little storage array that I store my life on.  Music, movies, photographs, projects, school work&#8212;I&#8217;d be devastated if I lost any of it.  And yet, I don&#8217;t have any sort of backup for it.  Last year I evaluated various online backup services but concluded that my 5 Mbps (~600 KB/s) upload bandwidth was just too slow to feasibly backup all of my data.  Now I have a 25 Mbps (~3 MB/s) symmetric connection, so last week when I got a promotional email from <a href="http://www.crashplan.com/">CrashPlan</a> announcing their new version and prices, I decided to give it another try.</p>
<p>CrashPlan is, as far as I know, the only online backup solution that officially supports Solaris, and it&#8217;s not half-assed either.  The software is delivered as a standard SVR4 package which installs to <tt>/opt/sfw/crashplan</tt> and includes an SMF manifest.  Normally I&#8217;d never trust consumer-oriented proprietary software like this, but their Solaris support instills confidence in me.  I can only hope that they continue to maintain it, despite the uncertainty surrounding Solaris&#8217;s future.</p>
<p>Like I said, installation was a breeze.  Looking back at my shell history, it was as easy as:</p>
<pre class="terminal">
# <kbd>cd /tmp</kbd>
# <kbd>wget http://download.crashplan.com/installs/solaris/install/CrashPlan/CrashPlan_3.0_Solaris.tar.gz</kbd>
# <kbd>tar -xvzf CrashPlan_3.0_Solaris.tar.gz</kbd>
# <kbd>pkgadd -d . CrashPlan</kbd>
# <kbd>svccfg import /opt/sfw/crashplan/bin/crashplan.xml</kbd>
# <kbd>svcadm enable crashplan</kbd>
</pre>
<p>From there the GUI can be launched as a regular user by running <tt>/opt/sfw/crashplan/bin/CrashPlanDesktop</tt>.  The user interface is clean and simple.  On the first run, it walks you through setting up an account.  New users get a 30-day free trial to CrashPlan+, which includes unlimited online backups.  I&#8217;m still on my trial, but as long as it continues to work for me, I expect I&#8217;ll purchase a subscription for $5/month.</p>
<p>First thing I did after registering was to go into the security settings and change the <a href="http://support.crashplan.com/doku.php/articles/encryption_key">archive encryption key type</a> to use a private password.  This encrypts the key which encrypts my data with a separate password so even if someone hijacks my CrashPlan account, they will not be able to restore any of my files.  The other advanced option, supplying your own private data key, I would argue is less secure since the key is stored in-the-clear on the local system and it cannot be changed without invalidating all of your backups.  Security is very important to me, so I am happy to see that they give control over these settings to the user, though I wish the backup agent were open-source to enable more public scrutiny.  At the very least, I&#8217;d like for CrashPlan to provide more details about their encryption methods similar to <a href="https://spideroak.com/engineering_matters#encryption_specifications">SpiderOak</a>.</p>
<p>Next I directed the software to backup my storage array mounted at <tt>/nest</tt> to CrashPlan Central and off it went.  I&#8217;m currently seeing speeds around 6 Mbps (750 KB/s) which is slightly disappointing on my fast connection, but not unacceptable.  They claim that they do not cap or throttle connections, though from what I&#8217;ve read, speed is largely dependent on which of CrashPlan&#8217;s many datacenters you are provisioned to.  They&#8217;ve been experiencing much higher volume than normal with last week&#8217;s release of CrashPlan 3, so I hope to see increased speed when that activity subsides.</p>
<p><a href="http://thestaticvoid.com/wordpress/wp-content/uploads/2010/12/crashplan.png"><img src="http://thestaticvoid.com/wordpress/wp-content/uploads/2010/12/crashplan-300x219.png" alt="" title="CrashPlan" width="300" height="219" class="aligncenter size-medium wp-image-419" /></a></p>
<p>I do like that the backup actually takes place in the background, so the GUI is only ever necessary for changing settings and performing restores.  I tested a restore and saw much better speeds around 16 Mbps (2 MB/s), though still not even close to saturating my internet connection.</p>
<p>My backup should hopefully be done by the new year and then it&#8217;ll just be a matter of performing small nightly incrementals.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2010/12/14/crashplan/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fun With vpnc</title>
		<link>http://thestaticvoid.com/post/2010/07/22/fun-with-vpnc/</link>
		<comments>http://thestaticvoid.com/post/2010/07/22/fun-with-vpnc/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 20:20:20 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[snoop]]></category>
		<category><![CDATA[vpnc]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=337</guid>
		<description><![CDATA[I recently got a new laptop at work and I decided to put OpenSolaris on it. This meant I had to setup vpnc in order to access the server networks and wireless here. I installed my vpnc package, copied the profile from my Ubuntu workstation, and started it up. It connected, but no packets flowed. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a new laptop at work and I decided to put OpenSolaris on it.  This meant I had to setup vpnc in order to access the server networks and wireless here.  I installed <a href="http://thestaticvoid.com/post/2010/02/26/vpnc-for-opensolaris/">my vpnc package</a>, copied the profile from my Ubuntu workstation, and started it up.  It connected, but no packets flowed.  I didn&#8217;t have time to investigate, so I decided to work on it some more at home.</p>
<p>The strange thing is that it connected from home with the very same profile and everything worked fine.  I immediately suspected something was wrong with the routing tables, like maybe some of the routes installed by <tt>vpnc-script</tt> were conflicting with the routes necessary to talk to the VPN concentrator.  I endlessly compared the routing tables between work and home and my working Ubuntu workstation, removing routes, adding routes, and manually constructing the routing table until I was positive it could not be that.</p>
<p>Everything I pinged worked.  I could ping the concentrator.  I could ping the gateway.  I could ping the tunnel device.  I could ping the physical interface&#8212;or so I thought.</p>
<p>As I was preparing to write a message to the <a href="http://news.gmane.org/gmane.network.vpnc.devel">vpnc-devel mailing list</a> requesting help, I did some pings to post the output in the email.  I ran</p>
<pre class="terminal">
$ <kbd>ping &lt;concentrator ip&gt;</kbd>
&lt;concentrator ip&gt; is alive
</pre>
<p>which looked good, but I wanted the full ping output, so I ran</p>
<pre class="terminal">
$ <kbd>ping -s &lt;concentrator ip&gt;</kbd>
PING &lt;concentrator ip&gt;: 56 data bytes
^C
----&lt;concentrator ip&gt; PING Statistics----
4 packets transmitted, 1 packets received, 75% packet loss
round-trip (ms)  min/avg/max/stddev = 9223372036854776.000/0.000/0.000/-NaN
</pre>
<p>For some reason, only the first ping was getting through.  The rest were getting hung up somewhere.  The really strange thing was that I saw the same behavior on the local physical interface:</p>
<pre class="terminal">
$ <kbd>ifconfig bge0</kbd>
bge0: flags=1004843<UP,BROADCAST,RUNNING,MULTICAST,DHCP,IPv4> mtu 1500 index 3
        inet 161.253.143.151 netmask ffffff00 broadcast 161.253.143.255
$ <kbd>ping -s 161.253.143.151</kbd>
PING 161.253.143.151: 56 data bytes
^C
----161.253.143.151 PING Statistics----
5 packets transmitted, 1 packets received, 80% packet loss
round-trip (ms)  min/avg/max/stddev = 9223372036854776.000/0.000/0.000/-NaN
</pre>
<p>I have never seen a situation where you couldn&#8217;t even ping a local physical interface!  I checked and double checked that IPFilter wasn&#8217;t running.  Finally I started a packet capture of the physical interface to see what was happening to my pings:</p>
<pre class="terminal">
# <kbd>snoop -d bge0 icmp</kbd>
Using device bge0 (promiscuous mode)
161.253.143.151 -> &lt;concentrator ip&gt; ICMP Destination unreachable (Bad protocol 50)
161.253.143.151 -> &lt;concentrator ip&gt; ICMP Destination unreachable (Bad protocol 50)
161.253.143.151 -> &lt;concentrator ip&gt; ICMP Destination unreachable (Bad protocol 50)
^C
</pre>
<p>That&#8217;s when by chance I saw messages being sent to the VPN concentrator saying &#8220;bad protocol 50.&#8221;  <a href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xml">IP protocol</a> 50 represents &#8220;ESP&#8221;, commonly used for IPsec.  Apparently Solaris eats these packets.  Haven&#8217;t figured out why.</p>
<p>I remembered seeing something in the vpnc manpage about ESP packets:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">--natt-mode &lt;natt/none/force-natt/cisco-udp&gt;<br />
<br />
&nbsp; &nbsp; &nbsp; Which NAT-Traversal Method to use:<br />
&nbsp; &nbsp; &nbsp; o &nbsp; &nbsp;natt -- NAT-T as defined in RFC3947<br />
&nbsp; &nbsp; &nbsp; o &nbsp; &nbsp;none -- disable use of any NAT-T method<br />
&nbsp; &nbsp; &nbsp; o &nbsp; &nbsp;force-natt -- always use NAT-T encapsulation &nbsp;even<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;without presence of a NAT device (useful if the OS<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;captures all ESP traffic)<br />
&nbsp; &nbsp; &nbsp; o &nbsp; &nbsp;cisco-udp -- Cisco proprietary UDP &nbsp;encapsulation,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;commonly over Port 10000</div></div>
<p>I enabled <tt>force-natt</tt> mode, which encapsulates the ESP packet in a UDP packet, normally to get past NAT, and it started working!  In retrospect, I should have been able to figure that out much easier.  First, it pretty much says it on the <a href="http://www.unix-ag.uni-kl.de/~massar/vpnc/">vpnc homepage</a>: &#8220;Solaris (7 works, 9 only with &#8211;natt-mode forced).&#8221;  I didn&#8217;t even notice that.  Second, I should have realized that I was behind a NAT at home and not at work, so they would be using a different NAT-traversal mode by default.  Oh well, it was a good diagnostic exercise, hence the post to share the experience.</p>
<p>In other vpnc related news, I&#8217;ve ported <a href="http://www.whiteboard.ne.jp/~admin2/tuntap/">Kazuyoshi&#8217;s</a> <a href="http://www.whiteboard.ne.jp/~admin2/tuntap/source/openvpn/patch.openvpn-2.1.1.tun.c">patch</a> to the <tt>open_tun</tt> and <tt>solaris_close_tun</tt> functions of OpenVPN to the <tt>tun_open</tt> and <tt>tun_close</tt> functions of vpnc.  His sets up the tunnel interface a little bit differently and adds TAP support.  It solves the random problems vpnc had with bringing up the tunnel interface such as:</p>
<pre class="terminal">
# <kbd>ifconfig tun0</kbd>
tun0: flags=10010008d0&lt;POINTOPOINT,RUNNING,NOARP,MULTICAST,IPv4,FIXEDMTU&gt; mtu 1412 index 8
        inet 128.164.xxx.yy --> 128.164.xxx.yy netmask ffffffff
        ether f:ea:1:ff:ff:ff
# <kbd>ifconfig tun0 up</kbd>
ifconfig: setifflags: SIOCSLIFFLAGS: tun0: no such interface
# <kbd>dmesg | grep tun0</kbd>
Jul 23 14:56:05 swan ip: [ID 728316 kern.error] tun0: DL_BIND_REQ failed: DL_OUTSTATE
</pre>
<p>The changes are in the latest vpnc package available from my <a href="http://pkg.thestaticvoid.org:10000/">package repository</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2010/07/22/fun-with-vpnc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Professional Photo Workflow for OpenSolaris</title>
		<link>http://thestaticvoid.com/post/2010/05/02/a-professional-photo-workflow-for-opensolaris/</link>
		<comments>http://thestaticvoid.com/post/2010/05/02/a-professional-photo-workflow-for-opensolaris/#comments</comments>
		<pubDate>Sun, 02 May 2010 05:05:17 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[argyll]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[raw]]></category>
		<category><![CDATA[ufraw]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=327</guid>
		<description><![CDATA[I am not a professional by any means, but I like to know I can get the most out of my tools if the need arises. That means shooting in RAW along side JPEG so I can take control of image processing settings or correct little mistakes such as under-exposure or incorrect white balance. RAW [...]]]></description>
			<content:encoded><![CDATA[<p>I am not a professional by any means, but I like to know I can get the most out of my tools if the need arises.  That means shooting in RAW along side JPEG so I can take control of image processing settings or correct little mistakes such as under-exposure or incorrect white balance.  RAW files contain raw sensor data from the camera (duh) and must be processed by special programs before they can be printed or shared.  My camera came with the Canon Digital Photo Professional software which I&#8217;ve heard is pretty good.  There are other (expensive) commercial options such as <a href="http://www.adobe.com/products/photoshoplightroom/">Adobe Lightroom</a>.  Obviously none of these work in Solaris (though they might work in Wine), so I decided to explore the open-source offerings.</p>
<p>Fortunately, this is a good time in the open-source world for RAW processing.  Tools like <a href="http://ufraw.sourceforge.net/">UFRaw</a> and <a href="http://lensfun.berlios.de/">LensFun</a> are maturing rapidly and beginning to give their commercial counterparts a run for their money.  I spent the past week porting them, and the color management software, <a href="http://www.argyllcms.com/">Argyll</a>, to OpenSolaris.</p>
<h3>Argyll</h3>
<p>Argyll is a suite of color management tools for Unix and Windows.  It can be used to calibrate displays, cameras, scanners, and printers.  When all of your equipment is properly calibrated, then colors should appear the same on all devices.  So if I were to photograph a stop sign, it would appear to be the same red on my monitor as in real life.</p>
<div style="text-align: center"><a href="http://www.flickr.com/photos/mrstaticvoid/4570201472/" title="Color Calibration Tools by MrStaticVoid, on Flickr"><img src="http://farm4.static.flickr.com/3439/4570201472_a5e2bdf5ea.jpg" width="500" height="333" alt="Color Calibration Tools" /></a></div>
<p>Color calibration requires special equipment.  For your monitor, you need a colorimeter.  I already had an <a href="http://www.google.com/products/catalog?hl=en&#038;safe=off&#038;client=firefox-a&#038;hs=zt6&#038;rls=org.mozilla:en-US:official&#038;resnum=0&#038;q=x+rite+display+lt&#038;um=1&#038;ie=UTF-8&#038;cid=2978199230474206625&#038;ei=8AHdS5XYCJHU8ASOm6HKBw&#038;sa=X&#038;oi=product_catalog_result&#038;ct=result&#038;resnum=4&#038;ved=0CCsQ8wIwAw#ps-sellers">X-rite i1Display</a> to calibrate my TVs, and it works just fine with Argyll and Solaris (using libusb).  Following <a href="http://www.marcelpatek.com/argyll.html">these instructions</a> I was able to calibrate my monitors in a few minutes.  It was so easy I did my work monitors and laptop too!</p>
<p>Camera calibration was just as easy following <a href="http://blog.pcode.nl/2008/11/15/color-profiling-your-own-dslr-redux/">Pascal de Bruijn&#8217;s instructions</a>.  I picked up a very affordable IT8.7 target from <a href="http://www.targets.coloraid.de/">Wolf Faust</a>.  It arrived from Germany in about a week.</p>
<p>Argyll can be installed from my <a href="http://pkg.thestaticvoid.com/sfe/">software repository</a> by typing <tt>pfexec pkg install SFEargyll</tt>.</p>
<h3>UFRaw</h3>
<div class="text-align: center"><a href="http://www.flickr.com/photos/mrstaticvoid/4570241734/" title="UFRaw by MrStaticVoid, on Flickr"><img src="http://farm5.static.flickr.com/4051/4570241734_1375b53ab0.jpg" width="500" height="285" alt="UFRaw" /></a></div>
<p>UFRaw with lens correction support using LensFun can be installed from my repository by typing <tt>pfexec pkg install ufraw</tt>.  I went through hell trying to port this and its dependencies.  LensFun was particularly terrible with its crazy Makefiles (please use Autotools!) and non-standard C++ which Sun Studio choked on.</p>
<p>I don&#8217;t have much else to say about this yet, I&#8217;m still playing around with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2010/05/02/a-professional-photo-workflow-for-opensolaris/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MusicBrainz Picard</title>
		<link>http://thestaticvoid.com/post/2010/02/14/musicbrainz-picard/</link>
		<comments>http://thestaticvoid.com/post/2010/02/14/musicbrainz-picard/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 09:54:17 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[picard]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=241</guid>
		<description><![CDATA[MusicBrainz along with the Picard tagger is without a doubt the best way to organize and manage large collections of music. The tagger will fingerprint audio files and automatically correct their metadata and filenames. I&#8217;ve been using MusicBrainz since 2005, and even attempted to write my own tagger for it in Java back when Picard [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://musicbrainz.org/">MusicBrainz</a> along with the <a href="http://musicbrainz.org/doc/PicardTagger">Picard tagger</a> is without a doubt the best way to organize and manage large collections of music.  The tagger will fingerprint audio files and automatically correct their metadata and filenames.</p>
<p><a href="http://thestaticvoid.com/wordpress/wp-content/uploads/2010/02/picard.png"><img src="http://thestaticvoid.com/wordpress/wp-content/uploads/2010/02/picard-300x206.png" alt="" title="MusicBrainz Picard" width="300" height="206" class="aligncenter size-medium wp-image-244" /></a></p>
<p>I&#8217;ve been using MusicBrainz since 2005, and even attempted to write <a href="http://thestaticvoid.com/wsvn/junepimp/trunk/">my own tagger</a> for it in Java back when Picard didn&#8217;t exist.  When I switched to OpenSolaris, it was one of the programs I missed the most.  So I went about building a package for it.</p>
<p>Unfortunately, the software has a lot of complicated dependencies such as <a href="http://qt.nokia.com/">Qt</a> and <a href="http://www.ffmpeg.org/">FFmpeg</a> which aren&#8217;t included in OpenSolaris either.  FFmpeg I can understand; it infringes on countless software patents &lt;insert rant here&gt;.  But Qt?  There&#8217;s no reason for that.  It is easily the second most popular graphics toolkit for Unix.  Sure, the <a href="http://techbase.kde.org/Projects/KDE_on_Solaris/OpenSolaris">Solaris KDE</a> guys have a build of it, but it installs to a non-standard prefix and doesn&#8217;t include 64-bit libs.  No thank you.</p>
<p>Anyway, the package and its dependencies are up on my <a href="http://pkg.thestaticvoid.com/">package repository</a> for b132 and later.  You know the deal&#8230;<tt>pfexec pkg install picard</tt>.  Spec files are, as always, available from my <a href="https://github.com/MrStaticVoid/specs">GitHub repository</a>.</p>
<p>Now that I have a good start on the FFmpeg package, I&#8217;m going to keep working on it, adding support for more codecs and eventually build <a href="http://www.mplayerhq.hu/design7/news.html">MPlayer</a> so I can stop using <a href="http://solaris.homeunix.com/?q=node/24">this guy&#8217;s</a> less-than-ideal build.</p>
<p><strong>EDIT:</strong> Just FYI, in order to get nice antialiased fonts in Qt applications, I had to modify the fontconfig settings.  This is not necessary for GTK+ applications because they get their settings from the <tt>gnome-appearance-properties</tt> dialog.  So in <tt>~/.fonts.conf</tt> add:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #00bbdd;">&lt;!DOCTYPE fontconfig SYSTEM &quot;fonts.dtd&quot;&gt;</span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #808080; font-style: italic;">&lt;!-- &nbsp;Use the Antialiasing --&gt;</span> <br />
&nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;match</span> <span style="color: #000066;">target</span>=<span style="color: #ff0000;">&quot;font&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;edit</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;antialias&quot;</span> <span style="color: #000066;">mode</span>=<span style="color: #ff0000;">&quot;assign&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;bool<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bool<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #000000; font-weight: bold;">&lt;/edit<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/match<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/fontconfig<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></div>
<p>Other Qt appearance settings can be changed from the <tt>qtconfig</tt> dialog.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2010/02/14/musicbrainz-picard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Music Player Daemon on OpenSolaris</title>
		<link>http://thestaticvoid.com/post/2009/12/04/music-player-daemon-on-opensolaris/</link>
		<comments>http://thestaticvoid.com/post/2009/12/04/music-player-daemon-on-opensolaris/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 01:44:36 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[mpd]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[packages]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=188</guid>
		<description><![CDATA[MPD is essential software for me. It&#8217;s one of the few music players out there for Unix that does gapless playback and ReplayGain. It&#8217;s also nice that, because it&#8217;s a daemon, I&#8217;m not bound to any particular interface. Fortunately, there is a really good one in the form of Sonata. MPD is not included in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki">MPD</a> is essential software for me.  It&#8217;s one of the few music players out there for Unix that does gapless playback and ReplayGain.  It&#8217;s also nice that, because it&#8217;s a daemon, I&#8217;m not bound to any particular interface.  Fortunately, there is a really good one in the form of <a href="http://sonata.berlios.de/">Sonata</a>.</p>
<p>MPD is not included in OpenSolaris yet, so last weekend I built some packages for it.  The build has been stable for me and I&#8217;m happy with the state of the packages so I thought I&#8217;d share them.  First add my <a href="http://pkg.thestaticvoid.com/">package repository</a>:</p>
<pre class="terminal">
$ <kbd>pfexec pkg set-authority -O http://pkg.thestaticvoid.com/ thestaticvoid</kbd>
</pre>
<h3>MPD</h3>
<p>This package and its dependencies require OpenSolaris 2009.06 or newer.  Install it by typing <tt>pfexec pkg install mpd</tt>.  The following formats are supported:</p>
<pre class="terminal">
$ <kbd>mpd -V</kbd>
...
Supported decoders:
[mad] mp3 mp2
[vorbis] ogg oga
[oggflac] ogg oga
[flac] flac
[audiofile] wav au aiff aif
[faad] aac
[mp4] m4a mp4
[mpcdec] mpc
[wavpack] wv

Supported outputs:
shout null fifo ao solaris httpd 

Supported protocols:
file:// http://
</pre>
<p>I plan on adding ffmpeg support soon which will add support for even more codecs.</p>
<p>To run MPD, create a configuration file in your home directory like</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">port&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;6600&quot;<br />
music_directory &nbsp; &nbsp; &nbsp; &nbsp; &quot;~/music&quot;<br />
playlist_directory &nbsp; &nbsp; &nbsp;&quot;~/.mpd/playlists&quot;<br />
db_file &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;~/.mpd/mpd.db&quot;<br />
log_file &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;~/.mpd/mpd.log&quot;</div></div>
<p>Create any directories from the configuration file that don&#8217;t exist, such as <tt>~/.mpd/playlists</tt> and start the daemon by running <tt>mpd ~/.mpdconf</tt> as your user.  It will immediately build a library of your music.</p>
<p>Alternatively, mpd can be run system-wide, which just seems more appropriate to me for whatever reason.  The only complicated part about this is that you have to give MPD permission to write to the audio device.  Edit <tt>/etc/logindevperms</tt>, find the <tt>/dev/sound/*</tt> lines and change the mode to 0666 so that they look like:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">/dev/console&nbsp; &nbsp; 0666&nbsp; &nbsp; /dev/sound/*&nbsp; &nbsp; &nbsp; &nbsp; # audio devices<br />
/dev/vt/active&nbsp; 0666&nbsp; &nbsp; /dev/sound/*&nbsp; &nbsp; &nbsp; &nbsp; # audio devices</div></div>
<p>Logout and log back in for the settings to take effect.  Then modify <tt>/etc/mpd.conf</tt> to your liking and start the daemon by typing <tt>svcadm enable mpd</tt>.  You may have to <tt>svcadm refresh manifest-import</tt> for SMF to load the mpd manifest.</p>
<h3>mpdscribble</h3>
<p>I also built a package for <a href="http://mpd.wikia.com/wiki/Client:Mpdscribble">mpdscribble</a> which is a mature, well-maintained scrobbler for <a href="http://www.last.fm/">Last.fm</a>.  Install it by typing <tt>pfexec pkg install mpdscribble</tt>.  Set your Last.fm or Libre.fm username and password in <tt>/etc/mpdscribble.conf</tt> and start the daemon with <tt>svcadm enable mpdscribble</tt>.  That&#8217;s all there is to it.</p>
<h3>Sonata</h3>
<p>Sonata is a lightweight cilent for MPD.  Looks pretty nice too:</p>
<p><img src="http://thestaticvoid.com/wordpress/wp-content/uploads/2009/12/sonata.png" alt="Sonata" title="Sonata" width="408" height="326" class="aligncenter size-full wp-image-201" /></p>
<p>Because Sonata requires Python 2.5, and OpenSolaris 2009.06 only really supports Python 2.3, this package requires build 127 or newer.  Install it by typing <tt>pfexec pkg install sonata</tt>.  It can be launched from the Applications->Sound &#038; Video menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2009/12/04/music-player-daemon-on-opensolaris/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mixer State in OpenSolaris</title>
		<link>http://thestaticvoid.com/post/2009/11/25/mixer-state-in-opensolaris/</link>
		<comments>http://thestaticvoid.com/post/2009/11/25/mixer-state-in-opensolaris/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 18:32:48 +0000</pubDate>
		<dc:creator>James Lee</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[mixer]]></category>
		<category><![CDATA[opensolaris]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[smf]]></category>

		<guid isPermaLink="false">http://thestaticvoid.com/?p=174</guid>
		<description><![CDATA[I&#8217;ve recently installed OpenSolaris on my desktop and noticed that my volume settings do not persist between reboots. A quick search revealed that that functionality hasn&#8217;t been implemented yet. The thread suggested using the mixerctl command to save and restore the mixer state so I&#8217;ve thrown together an SMF service to do it automatically on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently installed OpenSolaris on my desktop and noticed that my volume settings do not persist between reboots.  A quick search revealed that <a href="http://opensolaris.org/jive/thread.jspa?threadID=118058&#038;tstart=0">that functionality hasn&#8217;t been implemented yet</a>.  The thread suggested using the <tt>mixerctl</tt> command to save and restore the mixer state so I&#8217;ve thrown together an SMF service to do it automatically on boot and shutdown.</p>
<p>First, the script which should go into <tt>/lib/svc/method/sound-mixer</tt>:</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#!/sbin/sh</span><br />
<br />
. <span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>svc<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>smf_include.sh<br />
smf_is_globalzone <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_OK</span><br />
<br />
<span style="color: #007800;">ctl_file</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span>svcprop <span style="color: #660033;">-p</span> options<span style="color: #000000; font-weight: bold;">/</span>ctl_file <span style="color: #007800;">$SMF_FMRI</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span><br />
<span style="color: #ff0000;">'start'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &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: #660033;">-f</span> <span style="color: #007800;">$ctl_file</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Mixer control file <span style="color: #007800;">$ctl_file</span> does not exist.&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_OK</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">fi</span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>mixerctl <span style="color: #660033;">-r</span> <span style="color: #007800;">$ctl_file</span>; <span style="color: #000000; font-weight: bold;">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Error restoring mixer state.&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_OK</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">fi</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">;;</span><br />
<br />
<span style="color: #ff0000;">'stop'</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>mixerctl <span style="color: #660033;">-f</span> <span style="color: #660033;">-s</span> <span style="color: #007800;">$ctl_file</span>; <span style="color: #000000; font-weight: bold;">then</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Error saving mixer state.&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_OK</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">fi</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">;;</span><br />
<br />
<span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $0 { start | stop }&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_ERR_CONFIG</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">;;</span><br />
<span style="color: #000000; font-weight: bold;">esac</span><br />
<br />
<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #007800;">$SMF_EXIT_OK</span></div></div>
<p>Second, the manifest which can be saved anywhere and loaded with <tt>svccfg -v import &lt;manifest&gt;</tt>:</p>
<div class="codecolorer-container xml default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="xml codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span><br />
<span style="color: #00bbdd;">&lt;!DOCTYPE service_bundle SYSTEM &quot;/usr/share/lib/xml/dtd/service_bundle.dtd.1&quot;&gt;</span><br />
<br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service_bundle</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">'manifest'</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">'mixer'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
<br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">name</span>=<span style="color: #ff0000;">'system/sound/mixer'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">'service'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">version</span>=<span style="color: #ff0000;">'1'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;create_default_instance</span> <span style="color: #000066;">enabled</span>=<span style="color: #ff0000;">'true'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;single_instance</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;dependency</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">name</span>=<span style="color: #ff0000;">'fs-local'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">grouping</span>=<span style="color: #ff0000;">'require_all'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">restart_on</span>=<span style="color: #ff0000;">'none'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">'service'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service_fmri</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">'svc:/system/filesystem/local'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/dependency<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;dependency</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">name</span>=<span style="color: #ff0000;">'device-audio'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">grouping</span>=<span style="color: #ff0000;">'require_all'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">restart_on</span>=<span style="color: #ff0000;">'none'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">'service'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;service_fmri</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">'svc:/system/device/audio'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/dependency<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;exec_method</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">'method'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">name</span>=<span style="color: #ff0000;">'start'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">exec</span>=<span style="color: #ff0000;">'/lib/svc/method/sound-mixer start'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">timeout_seconds</span>=<span style="color: #ff0000;">'60'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;exec_method</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">type</span>=<span style="color: #ff0000;">'method'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">name</span>=<span style="color: #ff0000;">'stop'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">exec</span>=<span style="color: #ff0000;">'/lib/svc/method/sound-mixer stop'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">timeout_seconds</span>=<span style="color: #ff0000;">'60'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property_group</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">'options'</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">'application'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;propval</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">'ctl_file'</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">'astring'</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">'/etc/sound/mixer.state'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/property_group<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;property_group</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">'startd'</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">'framework'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;propval</span> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">'duration'</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">'astring'</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">'transient'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/property_group<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;stability</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">'Unstable'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;common_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;loctext</span> <span style="color: #000066;">xml:lang</span>=<span style="color: #ff0000;">'C'</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>Mixer State Saver<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/loctext<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/common_name<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;documentation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;manpage</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">'mixerctl'</span> <span style="color: #000066;">section</span>=<span style="color: #ff0000;">'1M'</span></span><br />
<span style="color: #009900;"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #000066;">manpath</span>=<span style="color: #ff0000;">'/usr/share/man'</span> <span style="color: #000000; font-weight: bold;">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/documentation<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/template<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service<span style="color: #000000; font-weight: bold;">&gt;</span></span></span><br />
<br />
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/service_bundle<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></div></div>
<p><strong>UPDATE:</strong> In b130, the <tt>audioctl</tt> command replaces <tt>mixerctl</tt>.  In the <tt>sound-mixer</tt> script above, change <tt>/usr/sbin/mixerctl -r $ctl_file</tt> to <tt>/usr/bin/audioctl load-controls $ctl_file</tt> and <tt>/usr/sbin/mixerctl -f -s $ctl_file</tt> to <tt>/usr/bin/audioctl save-controls -f $ctl_file</tt>.</p>
]]></content:encoded>
			<wfw:commentRss>http://thestaticvoid.com/post/2009/11/25/mixer-state-in-opensolaris/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

