<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">

<channel>
	<title>Planet Red Hat</title>
	<link>http://blogs.redhat.com/red_hat_blogs/red_hat_blogs.html</link>
	<language>en</language>
	<description>Planet Red Hat - http://blogs.redhat.com/red_hat_blogs/red_hat_blogs.html</description>

<item>
	<title>Richard Li: Open Source and Healthcare</title>
	<guid>http://www.press.redhat.com/2007/11/12/open-source-and-healthcare/</guid>
	<link>http://www.press.redhat.com/2007/11/12/open-source-and-healthcare/</link>
	<description>There's growing interest in open source and healthcare IT. Why are people interested? One, the problem space is hard. Clinical data is complex. There are technical issues -- but equally complex legal and business issues. No one company or person has all the answers. A collaborative model lets everyone contribute ...</description>
	<pubDate>Thu, 04 Sep 2008 22:15:51 +0000</pubDate>
</item>
<item>
	<title>Pete Muir: [Comment] Please stand clear of the closing doors, this train is ready to depart - Seam 2.1.0.BETA1 released!</title>
	<guid>http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released#comment9359</guid>
	<link>http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released#comment9359</link>
	<description>This is a comment written in reply to&amp;#160;&lt;a href=&quot;http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released&quot;&gt;'Please stand clear of the closing doors, this train is ready to depart - Seam 2.1.0.BETA1 released!'&lt;/a&gt;.&lt;hr /&gt;&lt;p class=&quot;wikiPara&quot;&gt;
The features are getting better!!! Identity management (JPA/LDAP) and RESTful support are great for web applications.
&lt;/p&gt;

&lt;p class=&quot;wikiPara&quot;&gt;
JBoss Seam rocks!&lt;/p&gt;</description>
	<pubDate>Thu, 04 Sep 2008 20:56:50 +0000</pubDate>
	<dc:creator>Antonio Carlos da Silva dos Santos</dc:creator>
</item>
<item>
	<title>Pete Muir: [Comment] Please stand clear of the closing doors, this train is ready to depart - Seam 2.1.0.BETA1 released!</title>
	<guid>http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released#comment9357</guid>
	<link>http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released#comment9357</link>
	<description>This is a comment written in reply to&amp;#160;&lt;a href=&quot;http://in.relation.to/Bloggers/PleaseStandClearOfTheClosingDoorsThisTrainIsReadyToDepartSeam210BETA1Released&quot;&gt;'Please stand clear of the closing doors, this train is ready to depart - Seam 2.1.0.BETA1 released!'&lt;/a&gt;.&lt;hr /&gt;The features are getting better!!! Identity management (JPA/LDAP) and RESTful support are great for web applications.&lt;br /&gt;&lt;br /&gt;JBoss Seam rocks!</description>
	<pubDate>Thu, 04 Sep 2008 20:51:21 +0000</pubDate>
	<dc:creator>Antonio Carlos da Silva dos Santos</dc:creator>
</item>
<item>
	<title>Dan Walsh: SELinux and Chrome</title>
	<guid>http://danwalsh.livejournal.com/23118.html</guid>
	<link>http://danwalsh.livejournal.com/23118.html</link>
	<description>After reading the &lt;a href=&quot;http://www.google.com/googlebooks/chrome/&quot;&gt;Google Chrome announcement/comic book&lt;/a&gt;, I&amp;nbsp;got to thinking &lt;br /&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;strong&gt;&lt;em&gt;How could SELinux and Chrome work together?&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;The comic book says that Chrome can run each tab in a different processes, allowing you to isolate processes from each other.&amp;nbsp; If a tab processes crashes because of a bug it will only bring down that tab, not the entire web browser.&amp;nbsp; We have this in Fedora 9, in that we can run most of the plug-ins in a separate processes from Firefox, nsplugin.&amp;nbsp; If a plug-in causes the process to crash, the nsplugin program crashes not Firefox.&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://danwalsh.livejournal.com/15700.html&quot;&gt;You can use SELinux to lock  down the nsplugin process to prevent it from attacking our system.&amp;nbsp; &lt;/a&gt; The nice thing from an SELinux point of view is that we did not need to change Firefox to make this happen.&amp;nbsp; Since Firefox executed nsplugin (npviewer.bin), we can write policy that says when a user (unconfined_t) execs an executable labeled nsplugin_exec_t, SELinux will transition to process labeled nsplugin_t.&lt;br /&gt;&lt;br /&gt;With Chrome we might be able to take this further.&amp;nbsp; Imagine Chrome could differentiate between external and internal web sites, then the main Chrome processes could create two tabs running under different SELinux contexts.&amp;nbsp; Say chrome_trusted_t and chrome_untrusted_t,&amp;nbsp; You could isolate these processes from each other and maybe allow chrome_trusted_t to read and write anywhere on the file system while chrome_untrusted_t could only read/write the ~/untrusted directory, labeled untrusted_content_home_t.&amp;nbsp;&amp;nbsp; With labeled networking you could set up a proxy server that would only accept connections from processes labeled chrome_untrusted_t.&amp;nbsp; If a user is reading a Company Confidential web site in one tab, and connected to www.espn.com on another tab, SELinux would prevent the untrusted tab from reading the trusted tabs content.&lt;br /&gt;&lt;br /&gt;This would require changes to Chrome code, but the SELinux code to do this is fairly simple.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Pseudo Code&lt;br /&gt;&lt;br /&gt;Depending on how Chrome works.&lt;br /&gt;&lt;br /&gt;User enters an external web site:&lt;br /&gt;&lt;br /&gt;If chrome just forks a new process it would:&lt;br /&gt;&lt;br /&gt;child = fork();&lt;br /&gt;if (Child) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (selinux_is_enabled()) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setcontext(&amp;quot;user_u:user_r:chrome_untrusted_t&amp;quot;); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ... /*&amp;nbsp;Run the tab process */&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;or &lt;br /&gt;&lt;br /&gt;if chrome forks and execs a new process.&lt;br /&gt;&lt;br /&gt;child = fork();&lt;br /&gt;if (Child) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (selinux_is_enabled()) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setexeccon(&amp;quot;user_u:user_r:chrome_untrusted_t&amp;quot;); &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exec()&amp;nbsp; /* exec the tab process */&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setexeccon(NULL);&amp;nbsp; /*&amp;nbsp;This sets that system back to default behaviour, if exec failed */&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Policy would have to be written to allow a transition from unconfined_t to chrome_untrusted_t, since the kernel will verify all transitions.&lt;br /&gt;&lt;br /&gt;Any enterprising grad students looking for a project?&lt;br /&gt;&lt;br /&gt;I&amp;nbsp;could imagine similar changes could be done in Apache (mod_*), sshd, Samba.&lt;br /&gt;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
	<pubDate>Thu, 04 Sep 2008 18:50:05 +0000</pubDate>
	<dc:creator>dwalsh@redhat.com</dc:creator>
</item>
<item>
	<title>Max Spevack: fudcon brno, day 0</title>
	<guid>http://spevack.livejournal.com/63492.html</guid>
	<link>http://spevack.livejournal.com/63492.html</link>
	<description>Greg and I traveled from Amsterdam to Brno today, flying to Prague and then taking the bus down to Brno.  Pretty uneventful, though we got ourselves a bit mixed up with the bus schedule.  We purchased a ticket leaving from Prague's central bus station at noon, but we *thought* that the ticket's origin was the bus station at Prague's airport.  As such, by the time we got to the central bus station, we had long-missed our bus and had to purchase new tickets for a bus leaving at 2:30.  No big deal.&lt;br /&gt;&lt;br /&gt;We bumped into Cliff Perry, one of our old Red Hat Network compatriots, in the Prague airport.  He is spending the week in Brno for other Red Hat business, but he'll be hanging around at FUDCon a bit as well.  Also at the Prague airport, we bumped into a flight attendant who works for Delta.  She struck up a conversation with Greg when she saw his Carolina Hurricanes t-shirt, since she lives in Chapel Hill.  We mentioned that Jim Whitehurst (formerly Delta's COO) is now Red Hat's CEO, and she spoke in glowing terms of him and his tenure at Delta.&lt;br /&gt;&lt;br /&gt;Just looking around, Prague seems like an awesome city -- the next time I'm heading to Brno, I'm going to spend an extra few days in Prague and re-enact my favorite scenes from Mission: Impossible.&lt;br /&gt;&lt;br /&gt;The bus ride from Brno to Prague was pretty long, but the laptop battery made it most of the way and I had a bunch of emails queued up to send upon arrival.  Radek Vokal met Greg and I at the train station, brought us to the hotel, and then dropped us off at the Red Hat office, where we found a room of FUDConners (Dimitris Glezos, Diego Búrigo Zacarão, David Cantrell, Hans de Goede) already hacking.  We're waiting for Jeroen van Meeuwen, Jonathan Roberts, and Pawel Sadowski to join us, and then we'll head out for dinner.&lt;br /&gt;&lt;br /&gt;My next update will be sometime on Friday, during the first official day of FUDCon.</description>
	<pubDate>Thu, 04 Sep 2008 16:54:49 +0000</pubDate>
</item>
<item>
	<title>James Morris: SELinux memory protections are your friend</title>
	<guid>http://james-morris.livejournal.com/33622.html</guid>
	<link>http://james-morris.livejournal.com/33622.html</link>
	<description>I don't know what a Zend Optimizer is, but it apparently does not play well with SELinux.  I've encountered a &lt;a href=&quot;http://codepoets.co.uk/joys-selinux-server&quot;&gt;blog entry&lt;/a&gt; by someone who has tried to do the right thing and keep SELinux enabled, after finding the code for a policy module which makes this stuff work.&lt;br /&gt;&lt;br /&gt;I was surprised when I saw the &lt;a href=&quot;https://akela.mendelu.cz/~ruprich/tlachy/zend_selinux.html&quot;&gt;source of the module&lt;/a&gt;, which includes:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;allow httpd_t self:process execstack;&lt;br /&gt;allow httpd_t self:process execmem;&lt;br /&gt;allow httpd_t self:process execheap;&lt;br /&gt;allow httpd_t usr_t:file execute;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;When loaded, this will enable the web server to execute memory on its heap, stack or certain types of executable memory allocated via mmap(2).  These are well-known attack vectors and disable some very important memory protection mechanisms.  See Ulrich Drepper's &lt;a href=&quot;http://people.redhat.com/drepper/selinux-mem.html&quot;&gt;SELinux Memory Protection Tests&lt;/a&gt; for details.&lt;br /&gt;&lt;br /&gt;The file execute permission is also very concerning, as it allows the web server to execute generically labeled user files.  Combined with disabled memory protections, and third-party software using unsafe memory execution techniques, I'd recommend being cautious about deploying this solution.&lt;br /&gt;&lt;br /&gt;What I would suggest, if you don't understand the security policy, is to run it by your nearest SELinux community.  Many mailing lists and IRC channels exist where people will be able to help: see &lt;a href=&quot;http://selinuxproject.org/page/User_Resources&quot;&gt;User Resources&lt;/a&gt; from the SELinux Project Wiki.&lt;br /&gt;&lt;br /&gt;It's important to note that whatever this code is supposed to be doing (apparently, dealing with some form of source code obfuscation), techniques such as making a stack executable are inherently insecure and should &lt;b&gt;never&lt;/b&gt; be necessary.&lt;br /&gt;&lt;br /&gt;SELinux really is trying to help you here, and free expert advice is merely an email away.  At the very least, someone will be able to explain what the risks are, and help you make an informed decision on how to proceed: perhaps it will be better for your particular requirements to allow certain accesses rather than disabling SELinux for the entire system.  And if the code is not trying to do something dangerous, an SELinux developer may write a simple module for you to load to work around the issue.</description>
	<pubDate>Thu, 04 Sep 2008 14:54:24 +0000</pubDate>
</item>
<item>
	<title>Sacha Labourey: slaboure</title>
	<guid>http://labourey.wordpress.com/?p=158</guid>
	<link>http://sacha.labourey.com/2008/09/04/phase-2-rht-acquires-qumranet/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://labourey.files.wordpress.com/2008/09/qumranet-logo.jpg&quot;&gt;&lt;img class=&quot;alignright size-thumbnail wp-image-159&quot; src=&quot;http://labourey.files.wordpress.com/2008/09/qumranet-logo.jpg?w=128&amp;#038;h=40&quot; alt=&quot;&quot; width=&quot;128&quot; height=&quot;40&quot; /&gt;&lt;/a&gt;Today RHT made an aggressive move into the virtualization market.&lt;/p&gt;
&lt;p&gt;Let me explain what it means.&lt;/p&gt;
&lt;p&gt;One of the key strengths of OS vendors is the size of the their ecosystem. The more IHV (Independent Hardware Vendors) and ISV (Independent Software Vendors) certify on your OS, the more chances you have to be successful. Or to put it differently, with no or little ecosystem (read: VMWare), a company has very little chance of success. And on the OS market, the landscape has become pretty simple: MSFT and RHT are kings next to a handful of dying Unix flavors. And this is not likely to change anytime soon: for an IHV or ISV to support a new OS requires considerable engineering investment. Lesson 1: The OS game is over. MSFT and RHT will fight the market share, while &amp;#8220;would-be&amp;#8221; new entrants will watch the game.&lt;/p&gt;
&lt;p&gt;Recently, &lt;a href=&quot;http://sacha.labourey.com/2007/11/14/rhel-just-tripled-the-size-of-its-isv-ecosystem/&quot;&gt;the market has been aggressively shifting towards virtualized environments&lt;/a&gt; and in order to provide a cost-efficient solution to those users, you cannot simply &amp;#8220;reset the OS ecosystem&amp;#8221; and restart from scratch: you &lt;strong&gt;must&lt;/strong&gt; leverage the existing OS ecosystem. Lesson 2: The two leading OS vendors are the only able to sustain on the virtualized market in the long run. This is exactly what KVM provides (and XEN does not): KVM can fully leverage the existing IHV and ISV ecosystem earned over time by RHT.&lt;/p&gt;
&lt;p&gt;For sure, in the short run (i.e. before the virtualization market gets under pricing pressure) companies like VMWare will be able to sell a virtualized environment as a (very costly) side dish to the OS, but in the long run, core OS and hypervisors will just be one. As an example, if you are paying for RHEL Enterprise today, let&amp;#8217;s say for 32 CPUs, this gives you the right not only two run the core RHEL OS on 32 CPUs, but also gives you access to:&lt;br /&gt;
- unlimited virtualized environments running on top of these 32 physical CPUs (this is what VMWare will sell you)&lt;br /&gt;
- unlimited virtual RHEL guests running on top of those 32 physical CPUs&lt;/p&gt;
&lt;p&gt;Lesson 3: price pressure will slowly get rid of the virtualization-only vendors (36 months).&lt;/p&gt;
&lt;p&gt;Morale of the story: the virtualization market is entering into Phase II, when only OS vendors could sustain the pressure required to remain in the virtualization market.&lt;/p&gt;
&lt;p&gt;Onward,&lt;/p&gt;
&lt;p&gt;Sacha&lt;/p&gt;
&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/categories/labourey.wordpress.com/158/&quot; /&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/tags/labourey.wordpress.com/158/&quot; /&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/labourey.wordpress.com/158/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/labourey.wordpress.com/158/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/labourey.wordpress.com/158/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/labourey.wordpress.com/158/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/labourey.wordpress.com/158/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/labourey.wordpress.com/158/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/labourey.wordpress.com/158/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/labourey.wordpress.com/158/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/labourey.wordpress.com/158/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/labourey.wordpress.com/158/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=sacha.labourey.com&amp;amp;blog=1599495&amp;amp;post=158&amp;amp;subd=labourey&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Thu, 04 Sep 2008 13:10:04 +0000</pubDate>
	<dc:creator>Sacha</dc:creator>
</item>
<item>
	<title>Harish Pillay: What a way forward for virtualisation!</title>
	<guid>http://harishpillay.livejournal.com/115793.html</guid>
	<link>http://harishpillay.livejournal.com/115793.html</link>
	<description>I am really thrilled that &lt;a href=&quot;http://www.qumranet.com/&quot;&gt;Qumranet&lt;/a&gt; is now &lt;a href=&quot;http://www.redhat.com/promo/qumranet/&quot;&gt;part&lt;/a&gt; of &lt;a href=&quot;http://www.redhat.com&quot;&gt;Red Hat&lt;/a&gt;.  The ONLY way to do virtualization is through fully GPLed and open source technologies - no hidden, proprietary, closed source stuff.  Enough said.  Really pleased.&lt;br /&gt;&lt;br /&gt;side note: posting this from behind the Great Firewall of China is really annoying.  Had to turn on my personal proxy server to by pass the local network is really a waste of time!</description>
	<pubDate>Thu, 04 Sep 2008 12:59:53 +0000</pubDate>
	<dc:creator>h.pillay@ieee.org</dc:creator>
</item>
<item>
	<title>Max Spevack: new fedora tshirts for emea</title>
	<guid>http://spevack.livejournal.com/63469.html</guid>
	<link>http://spevack.livejournal.com/63469.html</link>
	<description>Just in from the manufacturer.  Thanks to &lt;a href=&quot;http://fedoraproject.org/wiki/JoergSimon&quot;&gt;Joerg Simon&lt;/a&gt; for handling the details and &lt;a href=&quot;http://fedoraproject.org/wiki/NicuBuculei&quot;&gt;Nicu Buculei&lt;/a&gt; for the design.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;br /&gt;&lt;img src=&quot;http://mspevack.fedorapeople.org/heart-front.png&quot; /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src=&quot;http://mspevack.fedorapeople.org/heart-back.png&quot; /&gt;&lt;br /&gt;&lt;/center&gt;</description>
	<pubDate>Wed, 03 Sep 2008 16:43:13 +0000</pubDate>
</item>
<item>
	<title>Dan Walsh: Nasty SELinux redirection AVC's</title>
	<guid>http://danwalsh.livejournal.com/22860.html</guid>
	<link>http://danwalsh.livejournal.com/22860.html</link>
	<description>One of the things that makes SELinux hard to understand is it's handling of shell redirection.&amp;nbsp; A query on the Fedora SELinux list by Richard Johnson asks about how to handle SELinux avc's when redirection rpm output.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;When installing a policy rpm, one cannot log the install activity w/o&amp;nbsp; generating avc errors.&amp;nbsp; For example:&lt;br /&gt;&amp;nbsp;&lt;br /&gt;rpm -i lsb-ft-asn-selinux &amp;gt; /var/log/rpm-update.log&lt;br /&gt;&amp;nbsp;&lt;br /&gt;produces the following violation:&lt;br /&gt;&amp;nbsp;&lt;br /&gt;type=SYSCALL msg=audit(1219774608.030:789): arch=c000003e syscall=59 success=yes exit=0 a0=be952e0 a1=be93390 a2=be958f0 a3=8 items=0 ppid=2848 pid=2875 auid=0 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=ttyS1 ses=2 comm=&amp;quot;restorecon&amp;quot; exe=&amp;quot;/sbin/restorecon&amp;quot; subj=root:system_r:restorecon_t:s0-s0:c0.c1023 key=(null)&lt;br /&gt;type=AVC msg=audit(1219774608.030:789): avc:&amp;nbsp; denied&amp;nbsp; { write } for pid=2875 comm=&amp;quot;restorecon&amp;quot; path=&amp;quot;/var/log/rpm-update.log&amp;quot; dev=md2 ino=2694055 scontext=root:system_r:restorecon_t:s0-s0:c0.c1023 tcontext=root:object_r:var_log_t:s0 tclass=file&lt;br /&gt;&lt;br /&gt;The problems seems to stem from recording the %post script's attempts to relabel files affected by the policy, specifically:&lt;br /&gt;&lt;br /&gt; /sbin/restorecon -F -R -v /opt/ft/sbin/sra_alarm;&lt;br /&gt;/sbin/restorecon -F -R -v /etc/opt/ft/asn;&lt;br /&gt;/sbin/restorecon -F -R -v /var/opt/ft/asn;&lt;br /&gt;/sbin/restorecon -F -R -v /var/opt/ft/log;&lt;br /&gt;&lt;br /&gt;So what is going on here?&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;The shell is creating a /var/log/rpm-update.log. Most likely the process that is running the shell is running as unconfined_t, and unconfined_t does not have a transition rule for files in var_log_t directories.&amp;nbsp; (var_log_t is the label of the /var/log directory)&amp;nbsp; The rpm-update.log file gets created with the var_log_t label.&amp;nbsp; The shell&amp;nbsp; opens the file for write and redirects the stdout of rpm and all of its children process to this file.&lt;br /&gt;&lt;br /&gt;When rpm is started it transitions to rpm_t and the SELinux kernel checks if rpm_t is able to write to files labeled var_log_t, since rpm_t is an unconfined domain it is allowed.&amp;nbsp; rpm will hand the open file descriptor to all of its decendants. rpm executes it's scripts as rpm_script_t (Also unconfined).&amp;nbsp; When rpm_script_t executes an application with a transition rule define, the SELinux kernel checks to see if the new domain is allowed to write to var_log_t.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;In the case above rpm_script_t transitions to restorecon_t when it execs files labeled restorecon_exec_t.&amp;nbsp; The SELinux kernel checks if restorecon_t is allowed to write to a file labeled var_log_t, restorecon_t is not allowed so the kernel reports the AVC.&amp;nbsp; It also closes the open file descriptor and replaces it with a file descriptor to /dev/null.&amp;nbsp; restorecon is then started and actually runs to a successfull completion,&amp;nbsp; however no output with go to rpm-update.log.&lt;span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;So what should the admin do about this?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;I can think of a few choices.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;He can ignore it.&amp;nbsp; Since the restorecon does not need to output anything, the installation completed and the AVC's are basically meaningless.&amp;nbsp; He can even tell setroubleshoot to not show the AVC's/&lt;/li&gt;&lt;li&gt;He can add a local custom policy module, to allow domains to output to var_log_t, Using audit2allow -M&amp;nbsp;mypol&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;rpm -i lsb-ft-asn-selinux &amp;gt;&amp;gt; /var/log/rpm-update.log&lt;/span&gt;&lt;/li&gt;&lt;li&gt;would be better since it will only add append.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;He attempt to find a label for file and label it correctly such that all domains can append to it.&amp;nbsp; rpm_log_t might work.&lt;/li&gt;&lt;li&gt;He can stick a cat in the middle of the command&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;&lt;span&gt;rpm -i lsb-ft-asn-selinux&amp;nbsp; | cat &amp;gt; /var/log/rpm-update.log&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;In this case bash opens the file as var_log_t and hands the open descriptor to cat which is also running as unconfined_t, but in this case bash sets the commands stdout to be a open fd descriptor to a unconfined_t.&amp;nbsp; Most domains can &amp;quot;use&amp;quot; unconfined_t fd, so the AVC dissapears.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;Fedora 10 - OPEN access check to the rescue:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This is a difficult thing to comprehend and we are trying to eliminate some of these AVC's.&amp;nbsp; SELinux in Fedora 10 has added an OPEN check.&amp;nbsp; This checks whether an application actually attempts to open a file rather then just tries to read/write the file.&amp;nbsp; Before the OPEN check policy writers were not able to differentiate between an application actually actively going out and opening files versus being handed open file descriptors from processes like the shell.&lt;br /&gt;&lt;br /&gt;So in Fedora 10 we will allow confined applications to read/write files in places users commonly redirect output.&amp;nbsp; (user_home_t, user_tmp_t, logfiles).&amp;nbsp; While denying the &amp;quot;open&amp;quot; access.&amp;nbsp;&amp;nbsp; If you see an OPEN access being denied, you should be very wary of this access and really investigate what is going on.&amp;nbsp; If a cracker broke into a confined domain and got to a shell, he would probably be actively attempting to OPEN files.&lt;/span&gt;</description>
	<pubDate>Wed, 03 Sep 2008 16:22:01 +0000</pubDate>
	<dc:creator>dwalsh@redhat.com</dc:creator>
</item>
<item>
	<title>Rich Sharples: Tab Sweep</title>
	<guid>http://blog.softwhere.org/?p=304</guid>
	<link>http://blog.softwhere.org/archives/304</link>
	<description>&lt;p&gt;Red Hat&amp;#8217;s Spacewalk (the upstream OSS project for RHN Satellite) &lt;a href=&quot;http://www.press.redhat.com/2008/08/26/checking-in-on-project-spacewalk/&quot;&gt;seems to be doing pretty well&lt;/a&gt; - they have a very active mailing list and are already getting external contributions. Mat Asay casts his &lt;a href=&quot;http://news.cnet.com/8301-13505_3-10030196-16.html?tag=mncol;title&quot;&gt;perspective over on c-net&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Talking of growing communities - interest in JBoss in China is really picking up - there&amp;#8217;s a &lt;a href=&quot;http://www.kava.org.cn/clearspacex/index.jspa&quot;&gt;new site dedicated to JBoss - Kava&lt;/a&gt; which contains translations of many JBoss related blogs and articles you&amp;#8217;d find in North America and Europe.&lt;/p&gt;
&lt;p&gt;GNU is twenty five years old this month - and &lt;a href=&quot;http://en.wikipedia.org/wiki/Stephen_Fry&quot;&gt;Stephen Fry&lt;/a&gt; (English comedian, author, actor, columnist and tech. blogger) has a &lt;a href=&quot;http://stephenfry.com/blog/?p=52&quot;&gt;short video celebrating the event&lt;/a&gt; and introducing free software. btw. his &lt;a href=&quot;http://stephenfry.com/podcasts/index.html&quot;&gt;podcasts&lt;/a&gt; are pretty good as well; if you&amp;#8217;re a Stephen Fry fan and enjoy a light-hearted perspective on technology.&lt;/p&gt;
&lt;p&gt;This week the Web is aflutter with the launch of Google&amp;#8217;s browser - &lt;a href=&quot;http://blog.softwhere.org/archives/301&quot;&gt;Chrome&lt;/a&gt;. Just for the record - I don&amp;#8217;t think that Microsoft will win this browser war - give it 3-5 years and IE users will be in the minority - they&amp;#8217;ve failed to innovate at the pace of the competition (Firefox) and haven&amp;#8217;t established a Mobile Web foothold; and their desktop monopoly is finally being challenged (by OS/X, Linux and the mobile web). The thing is - IE won&amp;#8217;t be the only victim in this war - other&amp;#8217;s will get caught in the cross-fire - I think Safari will go down pretty quickly - probably within a year of Chrome being ported to the iPhone. Firefox (the only browser I&amp;#8217;ve used for as long as I can remember) will be next. That bothers me - but only a little - that&amp;#8217;s techology evolution - survival of the fittest (despite illegal monopolies). I&amp;#8217;m happy for *any* free, multi-platform alternative to IE.&lt;/p&gt;
&lt;p&gt;Finally, I think I pissed off a few ex-colleagues at Sun with &lt;a href=&quot;http://blog.softwhere.org/archives/287&quot;&gt;my recent post&lt;/a&gt;. Thing is, I&amp;#8217;m right. If you thought my post was overly critical (or wrong) - read this &lt;a href=&quot;http://www.forbes.com/technology/2008/09/01/sun-fujitsu-hp-tch-enter-cz_rb_0902sun.html&quot;&gt;analysis on Forbes.com&lt;/a&gt; and try and argue against the fundamental arithmetic. It&amp;#8217;s worth repeating my position - I&amp;#8217;m not saying that Sun&amp;#8217;s OSS efforts are wasted - I&amp;#8217;m just saying they won&amp;#8217;t save Sun. The projects and the people who&amp;#8217;ve pushed them so hard will continue to flourish long after Sun has been dismantled and sold off.&lt;/p&gt;</description>
	<pubDate>Wed, 03 Sep 2008 12:35:32 +0000</pubDate>
	<dc:creator>sharps</dc:creator>
</item>
<item>
	<title>Caolan McNamara: DEV300_m30</title>
	<guid>http://blogs.linux.ie/caolan/?p=166</guid>
	<link>http://blogs.linux.ie/caolan/2008/09/03/dev300_m30/</link>
	<description>&lt;p&gt;The unused method listings are updated for every release, i.e. the latest &lt;a href=&quot;http://people.redhat.com/caolanm/callcatcher/DEV300_m30/&quot;&gt;DEV300_m30&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;The current un-integrated patches are listed &lt;a href=&quot;http://tinyurl.com/ooo-unused&quot;&gt;here&lt;/a&gt;, with the largest set of unused code in sc scheduled for removal in workspace &lt;a href=&quot;http://eis.services.openoffice.org/EIS2/cws.ShowCWS?Path=DEV300%2Fkoheicoderemoval&quot;&gt;koheicoderemoval&lt;/a&gt;&lt;/p&gt;</description>
	<pubDate>Wed, 03 Sep 2008 08:29:09 +0000</pubDate>
	<dc:creator>Caolan</dc:creator>
</item>
<item>
	<title>Sankarshan Mukhopadhyay: What a waste of talent and money…</title>
	<guid>http://sankarshan.randomink.org/blog/2008/09/03/what-a-waste-of-talent-and-money/</guid>
	<link>http://sankarshan.randomink.org/blog/2008/09/03/what-a-waste-of-talent-and-money/</link>
	<description>&lt;p&gt;These days I am generally averse to government sponsorship of (aka investment in) Open Source, especially if the government in question happens to be the Government of India.&lt;/p&gt;
&lt;p&gt;I had &lt;a target=&quot;_blank&quot; href=&quot;http://sankarshan.randomink.org/blog/2007/10/01/a-wishlist/&quot;&gt;earlier&lt;/a&gt; &lt;a target=&quot;_blank&quot; href=&quot;http://sankarshan.randomink.org/blog/2007/01/16/why-i-think-boss-is-not-a-good-business-model/&quot;&gt;blogged&lt;/a&gt; about &lt;a target=&quot;_blank&quot; href=&quot;http://sankarshan.randomink.org/blog/?s=BOSS&quot;&gt;BOSSLinux&lt;/a&gt; and in recent times I tend to abhor politically motivated over-the-wall Open Source on taxpayer money. For example, take a look at this &lt;a target=&quot;_blank&quot; href=&quot;http://downloads.bosslinux.in/Translated_Po_files/&quot;&gt;cache&lt;/a&gt;.This is the collection of over-the-wall translations of GNOME files. The fun part is that language teams exist for a significant number of the languages that are part of the collection. And yet, the files have the curious header: &amp;#8220;&lt;strong&gt;Language-Team: Bangla (INDIA) (info.gist@cdac.in) &lt;/strong&gt;&lt;strong&gt;\n&lt;/strong&gt;&amp;#8221; for bn_IN example. I don&amp;#8217;t recall anyone contacting the group working on bn_IN for this and coordinating the work in that community. The discussion over the past few days on #indlinux also shows that the ml_IN community has not been contacted, neither the or_IN.&lt;/p&gt;
&lt;p&gt;The reason why C-DAC desires to undertake this nonsense is fairly clear. Currying political favor with the incumbents at ministries, re-inventing already undertaken tasks is something that the stellar agency is becoming excellent at in recent times. Language computing in India is a big ticket item. Various e-Governance projects are looking towards reaching out to various language communities for greater outreach. There is work going on in standardization and so it is a good time to start acting silly. For a few languages that don&amp;#8217;t have all the Unicode issues resolved, there seem to exist translations. Amazing is what it can be called. Why would working with the communities in the form of collaborating be something that is beyond the intelligent folks at C-DAC is what bothers me. These folks have been around for a while ie. they are not newbies starting up a project, they are smart. So, if they are upto such stupidity, there has to be a reason to this madness. Trying to fork translation communities instead of collaborating is a sad way to move forward.&lt;/p&gt;
&lt;p&gt;Moving on, let&amp;#8217;s take another piece of oddity. &lt;a target=&quot;_blank&quot; href=&quot;http://www.nltr.org/SNLTR/&quot;&gt;Baishakhi Linux&lt;/a&gt; which says:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Society for Natural Language Technology Research (SNLTR) developed &lt;a target=&quot;_blank&quot; href=&quot;http://www.nltr.org/download/About_Baishakhi_Linux_en.pdf&quot;&gt;Baishakhi Linux 1.0&lt;/a&gt; (pdf link) in collaboration with MAT3 Impex and IIT Kharagpur. This is a free Bangla Linux that has been built over Ubuntu 8.04 distribution.  All computer related decision making and office activities, such as document writing, preparing presentations, web browsing, sending and receiving emails as well as spreadsheet calculations can be carried out in Bangla using this distribution. All Bangla compound words can be viewed and written in Baishakhi Linux, and this special feature distinguishes it from the other localized Linux distributions. Even in spreadsheet application (an office suite for calculation) all types of mathematical calculations (addition, subtraction, multiplication, division etc.) can be done in Bangla including fraction number, which is also a unique feature of this distribution.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;The bits that are termed as &amp;#8217;salient features&amp;#8217; have not been contributed upstream. What a waste.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;ps&lt;/strong&gt;: If &lt;a target=&quot;_blank&quot; href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=427584&quot;&gt;this bug&lt;/a&gt; gets closure, a lot of issues would be resolved.
&lt;/p&gt;</description>
	<pubDate>Wed, 03 Sep 2008 06:20:12 +0000</pubDate>
	<dc:creator>sankarshan</dc:creator>
</item>
<item>
	<title>Dave Jones: lockdep lolz.</title>
	<guid>http://kernelslacker.livejournal.com/129541.html</guid>
	<link>http://kernelslacker.livejournal.com/129541.html</link>
	<description>&lt;a href=&quot;http://www.codemonkey.org.uk/junk/lockdep.txt&quot;&gt;My entry&lt;/a&gt; for the &quot;most extensive debug output from a single event&quot; world record.&lt;br /&gt;&lt;br /&gt;.. and with that, I'm off on vacation for a week.</description>
	<pubDate>Wed, 03 Sep 2008 00:37:01 +0000</pubDate>
</item>
<item>
	<title>Dan Walsh: I am backup on  planet.fedoraproject.org</title>
	<guid>http://danwalsh.livejournal.com/22627.html</guid>
	<link>http://danwalsh.livejournal.com/22627.html</link>
	<description>When fedoraproject.org site was rebuilt in the last couple of weeks, I&amp;nbsp;guess I&amp;nbsp;missed the message that you needed to put a .planet file in your people.fedoraproject.org home dir in order to have the planet see your blogs, sorry about that.&amp;nbsp; Well I&amp;nbsp;have fixed this.&amp;nbsp; But you might have missed some of my blogs.&amp;nbsp; The best one, IMHO, was:&lt;br /&gt;&lt;a href=&quot;http://danwalsh.livejournal.com/22347.html&quot;&gt;&lt;br /&gt;&lt;font color=&quot;#c00000&quot;&gt;&lt;i&gt;&lt;b&gt;Top three things to understand in fixing SELinux problems&lt;/b&gt;&lt;/i&gt;&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So here is a link to it.&lt;br /&gt;&lt;br /&gt;Back to Bugzilla.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description>
	<pubDate>Tue, 02 Sep 2008 19:16:13 +0000</pubDate>
	<dc:creator>dwalsh@redhat.com</dc:creator>
</item>
<item>
	<title>Max Spevack: (virtual) fudcon brno</title>
	<guid>http://spevack.livejournal.com/63008.html</guid>
	<link>http://spevack.livejournal.com/63008.html</link>
	<description>For those of you who want to follow-along this coming weekend as &lt;a href=&quot;https://fedoraproject.org/wiki/FUDCon/FUDConBrno2008&quot;&gt;FUDCon Brno&lt;/a&gt; gets underway, I encourage you to join #fudcon on freenode.  That will be our official meeting place for the duration of the event.&lt;br /&gt;&lt;br /&gt;Brno is in the UTC +2 time zone.  We start at 10:00 local time every day, which means 08:00 UTC.  We'll often update on IRC, the FUDCon wiki page, and also on planet with the hackfests or sessions that are currently happening, and especially on the hackfest days, make every attempt to do a good job including both local people and remote people in various sessions.</description>
	<pubDate>Tue, 02 Sep 2008 16:26:54 +0000</pubDate>
</item>
<item>
	<title>Gary Benson: Shark, now with 100% bytecode coverage</title>
	<guid>http://gbenson.net/?p=104</guid>
	<link>http://gbenson.net/?p=104</link>
	<description>&lt;p&gt;I did &lt;code&gt;jsr&lt;/code&gt;, &lt;code&gt;ret&lt;/code&gt; and &lt;code&gt;multianewarray&lt;/code&gt; today; Shark now has 100% bytecode coverage.&lt;/p&gt;</description>
	<pubDate>Tue, 02 Sep 2008 14:29:51 +0000</pubDate>
	<dc:creator>gbenson</dc:creator>
</item>
<item>
	<title>Tom "Spot" Callaway: it is always a good time for a 5 minute guitar solo</title>
	<guid>http://spot.livejournal.com/298857.html</guid>
	<link>http://spot.livejournal.com/298857.html</link>
	<description>I had a pretty darned good weekend. My brother and his wife (who is quite pregnant, due in October) came up for a visit, and since Pam wasn't quite up for it, I was tapped to play tour guide. We had things pretty much planned in advance, Saturday was car day.&lt;br /&gt;&lt;br /&gt;You see, my car has been... non-functional for a while. However, I've known what's wrong with it for almost as long; the alternator is dead. The most complicated thing I've ever changed in my car has been a cassette tape, so I really did need my brother's help. We went to AutoZone (after attempting to go to the Arlington Napa, which was CLOSED when they were supposed to be OPEN) and bought a new alternator, then spent the next several hours trying to get the old one out. Despite our best efforts, we were unsuccessful at this, so we put the car back together (we had to pull one of the front wheels off just to get to the alternator). He also showed me how to change the oil on my car, so now I can perform that service in the comfort of my own driveway. &lt;br /&gt;&lt;br /&gt;Saturday night, we went to Za for dinner (delicious pizza), and ran into Jeremy and Kara. On Sunday (after everyone but me went to Catholic Mass) we headed into Boston proper for some tourism. Pam wasn't up for it, so she stayed at home and relaxed. We started at the Common, then walked the freedom trail to Faneuil Hall. After lunch at Quincy Market, it was time for the Red Sox game!&lt;br /&gt;&lt;br /&gt;Now, you may have read some things that I have written about the Red Sox here, and be thinking, doesn't he hate the Red Sox? No, of course not. I am rather perplexed by Red Sox Nation, but I've got nothing against them. Really, my stance on baseball can be boiled down to &quot;I support the Cubs, the local team, and anyone who beats the White Sox&quot;. Since the Red Sox were playing the White Sox on Sunday, I was cheering for Boston twice as hard. We got three tickets for the game through stubhub, and sat almost at the top of the bleachers in Center field, but we could see everything (except for the big fancy tv screen). Aside from some general confusion with finding our correct seats (the sections are marked about as well as the streets are in this town), we had a great time. Three rows behind us, about 6 drunken female White Sox fans made for an amusing spectacle until they started trying to fight people and were ejected. (These ladies were classy. They were wearing matching hats that said &quot;I HEART BEER&quot; and White Sox t-shirts thoroughly soaked in beer. Oh yes, they were also repeatedly flashing the crowd.) Unfortunately, the Red Sox lost, but they put up a good fight, especially towards the end. &lt;br /&gt;&lt;br /&gt;It is worth pointing out at this point that I forgot to put on sunscreen, so I was now properly Red and burned on my arms, legs, face and ears.&lt;br /&gt;&lt;br /&gt;After the game, we briefly considered getting on the T at Kenmore, but it was absurdly overwhelmed with people, so we decided to walk part of the way home. We walked over the Harvard Bridge (and counted the Smoots!), then walked around MIT towards the Kenmore T stop. As we rounded the corner onto Main St, Richard Stallman passed us, but we didn't stop him or anything. I figured he probably wants to talk licensing on the weekend about as much as I do, and also, we were running late to meet Pam for dinner. We got on the T and met Pam in Harvard Square at Legal Seafood, where Bob &amp;amp; Gina got to experience a LOBSTA ROLL. After dinner, Pam showed them the Harvard boathouse, then we headed home. Bob played GTA4 until we went to bed (unsurprisingly, he is much better at it than I am).&lt;br /&gt;&lt;br /&gt;On Monday, I suggested that we limit our time in the sun (as a result of looking like a LOBSTA), so Bob, Gina, and I drove down Mass Ave into Lexington and the Minuteman National Park. We toured around the area, through Concord and over by Walden Pond, before coming back into Arlington to meet Pam for lunch at Not Your Average Joe's. After lunch, I took Bob &amp;amp; Gina back to the airport.&lt;br /&gt;&lt;br /&gt;When I got home, I played GTA4 for a bit, then Pam and I decided to see a movie. We drove to Burlington and watched Babylon AD (with the 7 other people in the theatre). It was very pretty, and I was actually following it until about halfway through, when it started to just randomly dissolve. It felt very much like a Neal Stevenson ending, where they realized they couldn't keep telling the story forever, so they haphazardly scripted the end, then drew dotted lines from where they were to the end. In short, don't waste your money, netflix it.&lt;br /&gt;&lt;br /&gt;Then we went home and were lazy for the rest of the evening. We've been working our way through old Doctor Who, so we watched an episode of that and the &quot;new&quot; Top Gear on BBC America.&lt;br /&gt;&lt;br /&gt;Pam went back to work today (I drove her), so she is making steady progress! On my way home, I stopped at the local garage and got a quote on how much it would be to fix the car (about 150.00), so I'm going to get AAA today and have it towed over there.&lt;br /&gt;&lt;br /&gt;(Pictures from this weekend and more specifics can be found in &lt;a href=&quot;http://bassetandbaby.blogspot.com/2008/09/boston-2008.html&quot;&gt;Bob &amp;amp; Gina's Blog&lt;/a&gt;)</description>
	<pubDate>Tue, 02 Sep 2008 14:00:06 +0000</pubDate>
	<dc:creator>spot@livejournal.com</dc:creator>
</item>
<item>
	<title>Red Hat News: Where’s Red Hat This September?</title>
	<guid>http://www.press.redhat.com/2008/09/02/wheres-red-hat-this-september-2/</guid>
	<link>http://feeds.press.redhat.com/~r/redhat/press/~3/381344786/</link>
	<description>&lt;h2&gt;North America&lt;/h2&gt;
&lt;p&gt;Red Hat hits the road this September for our &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 North American Red Hat Road Tour&lt;/a&gt;.  We&amp;#8217;ll be visiting 16 cities this fall to share more about open source and its future direction and help attendees shift their open source strategies into full gear. Tracks will focus on Red Hat’s infrastructure and middleware offerings, taking a close look at open source tools to help build enterprise solutions. There will also be opportunities to hear about proven best practices from Red Hat customers.  Attendees can network with experts in the industry and participate in round-table discussions to exchange experiences regarding today’s pressing IT challenges. &lt;/p&gt;
&lt;p&gt;The Red Hat Road Tour is targeting specific cities seeking professionals responsible for enterprise architecture management, IT operations and standards, system security and management, application development tools and platforms and service oriented architecture (SOA).  The 2008 Road Tour kicks off on September 9th in Atlanta. For more information and to see if we&amp;#8217;re coming to a city near you, click &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;a id=&quot;more-463&quot;&gt;&lt;/a&gt;&lt;br /&gt;
Red Hat will also be attending the 2008 &lt;a href=&quot;http://www.oracle.com/openworld/2008/index.html&quot;&gt;Oracle Open World&lt;/a&gt; event in San Francisco from September 21-25. We&amp;#8217;ll be in booth #622 hosting a series of mini theater sessions each day for attendees to learn from Red Hat representatives as well as partners as they share success stories on the integration of Red Hat enterprise solutions. &lt;/p&gt;
&lt;p&gt;At &lt;a href=&quot;http://www.highperformanceonwallstreet.com/&quot;&gt;High Performance on Wall Street&lt;/a&gt; on September 22 in New York, Bryan Che, Red Hat product manager, will participate on a panel entitled &amp;#8220;Building The Perfect Financial Services Data Center.&amp;#8221; Attendees can also stop by Red Hat&amp;#8217;s booth during the event.&lt;/p&gt;
&lt;p&gt;September marks a busy month for Red Hat as we&amp;#8217;ll also be at the &lt;a href=&quot;http://www.icesummit.com/na/2008/&quot;&gt;451 Group Infrastructure Computing for the Enterprise (ICE) Summit&lt;/a&gt; hosted in Las Vegas. Come hear Katrinka McCallum, vice president, Management Solutions Business, and Benny Schnaider, CEO and Co-Founder of Qumranet, as they deliver the keynote address on September 18. The ICE Summit is a forum for executives in the virtualization, systems management and cloud computing sectors and brings together industry leaders to learn, network and develop strategies for today’s marketplace.&lt;/p&gt;
&lt;p&gt;Here are all of the North American events where Red Hat will be present this month:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;September 9, 2008  &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 Red Hat Road Tour&lt;/a&gt;, Atlanta, GA
&lt;li&gt;September 9-10, 2008 &lt;a href=&quot;http://1105govinfoevents.com/enterprisearchitectureevent/public/enter.aspx&quot;&gt;Enterprise Architecture 2008 Conference &amp;#038; Exhibition&lt;/a&gt;, Washington, D.C.
&lt;li&gt;September 10, 2008 &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 Red Hat Road Tour&lt;/a&gt;, Columbus, OH
&lt;li&gt;September 15-16, 2008&lt;a href=&quot;http://www.govtech.com/events/illinoisdgs2008&quot;&gt; Illinois Digital Government Summit&lt;/a&gt;, Springfield, IL
&lt;li&gt;September 15-18, 2008 &lt;a href=&quot;http://www.vmworld.com/conferences/2008/?urlcode=PaidSearch_Google_AMER-US_AMER-US_VI_Events_VMworldEvents_Search_WWW_vmworld08&amp;#038;src=PaidSearch_Google_AMER-US_AMER-US_VI_Events_VMworldEvents_Search_WWW_vmworld08&amp;#038;ossrc=PaidSearch_Google_AMER-US_AMER-US_VI_Events_VMworldEvents_Search_WWW_vmworld08&amp;#038;CMP=KNC-google&amp;#038;HBX_OU=50&amp;#038;HBX_PK=WWW_vmworld08&amp;#038;gclid=CK2W06eisZUCFQKNxwodbH8B-w&quot;&gt;VMworld&lt;/a&gt;, Las Vegas, NV
&lt;li&gt;September 18, 2008 &lt;a href=&quot;http://www.icesummit.com/na/2008/&quot;&gt;Group ICE Summit&lt;/a&gt;, Las Vegas, NV
&lt;li&gt;September 16, 2008 &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 Red Hat Road Tour&lt;/a&gt;, Parsippany, NJ
&lt;li&gt;September 17, 2008 &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 Red Hat Road Tour&lt;/a&gt;, Fairfield, CT
&lt;li&gt;September 21-24, 2008 &lt;a href=&quot;http://www.nascio.org/events/2008Annual/&quot;&gt;NASCIO Annual Conference&lt;/a&gt;, Milwaukee, WI
&lt;li&gt;September 21-25, 2008 &lt;a href=&quot;http://www.oracle.com/openworld/2008/index.html&quot;&gt;Oracle OpenWorld&lt;/a&gt;, San Francisco, CA
&lt;li&gt;September 22, 2008 &lt;a href=&quot;http://www.highperformanceonwallstreet.com/&quot;&gt;High Performance on Wall Street&lt;/a&gt;, New York, NY
&lt;li&gt;September 23, 2008 &lt;a href=&quot;http://www.idc.com/getdoc.jsp?containerId=IDC_P17224&quot;&gt;IDC Virtualization Forum&lt;/a&gt;, Chicago, IL
&lt;li&gt;September 22-25 &lt;a href=&quot;http://www.govtech.com/events/219679&quot;&gt;GTC East 2008&lt;/a&gt;, Albany, NY
&lt;li&gt;September 22, 2008 &lt;a href=&quot;http://www.premiertce.com/2007/index.html&quot;&gt;CIO Forum&lt;/a&gt;, Pittsburgh, PA
&lt;li&gt;September 24-27, 2008 &lt;a href=&quot;http://www.insight-net.org/Home/tabid/36/Default.aspx&quot;&gt;InSight 2008 Annual Conference&lt;/a&gt;, Grapevine, TX
&lt;li&gt;September 30, 2008 &lt;a href=&quot;http://www.redhat.com/roadtour08/&quot;&gt;2008 Red Hat Road Tour&lt;/a&gt;, Minneapolis, MN
&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;For more information on North American events, visit &lt;a href=&quot;http://www.redhat.com/about/news/schedule/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Please save the date for the &lt;a href=&quot;http://www.carahsoft.com/rhgudc/&quot;&gt;Red Hat Govenment Users &amp;#038; Developers Conference&lt;/a&gt; coming up next month. &lt;/p&gt;
&lt;p&gt;When: October 7, 2008&lt;br /&gt;
Where: Ronald Reagan Building, Washington, D.C.&lt;/p&gt;
&lt;h2&gt;EMEA&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;September 5-7, 2008 &lt;a href=&quot;http://fedoraproject.org/wiki/FUDCon/FUDConPrague2008&quot;&gt;The Fedora Users and Developers Conference (FUDCon)&lt;/a&gt;, Brno, Czech Republic
&lt;li&gt;September 10, 2008  &lt;a href=&quot;http://www.redhat.it/events/rh-breakfast/&quot;&gt;Colazione da Red Hat&lt;/a&gt;, Rome, Italy
&lt;li&gt;September 16, 2008  &lt;a href=&quot;http://www.redhat.it/events/happy-hour/&quot;&gt;Aperitivo con Red Hat&lt;/a&gt;, Rome Italy
&lt;li&gt;September 17, 2008 &lt;a href=&quot;http://www.redhat.it/events/rh-breakfast/&quot;&gt; Colazione da Red Hat&lt;/a&gt;, Milan, Italy
&lt;li&gt;September 23, 2008 &lt;a href=&quot;http://www.europe.redhat.com/events/&quot;&gt; Un viaggio&amp;#8230; un assaggio&lt;/a&gt;, Milan, Italy
&lt;li&gt;September 24, 2008  &lt;a href=&quot;http://www.itwayvad.com/ItwayVad/index.cfm?set_lingua=IT&quot;&gt;Virtualizaton Forum&lt;/a&gt;, Milan Italy
&lt;li&gt;September 30, 2008  &lt;a href=&quot;http://www.redhat.de/mktg/partnertraining/index.php&quot;&gt;Business Partners Sales Training&lt;/a&gt;, Frankfurt, Germany
&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;To see more upcoming Red Hat EMEA events, click &lt;a href=&quot;http://www.europe.redhat.com/events/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;APAC&lt;/h2&gt;
&lt;p&gt;For information on Red Hat&amp;#8217;s APAC events, visit &lt;a href=&quot;http://www.apac.redhat.com/events/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Latin America&lt;/h2&gt;
&lt;p&gt;For information on Red Hat&amp;#8217;s events in Latin America, visit &lt;a href=&quot;http://www.latam.redhat.com/events/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Interested in speaking to Red Hat at or about one of these events? Email press@redhat.com.&lt;/p&gt;
&lt;img src=&quot;http://feeds.press.redhat.com/~r/redhat/press/~4/381344786&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</description>
	<pubDate>Tue, 02 Sep 2008 12:52:10 +0000</pubDate>
	<dc:creator>Events Team</dc:creator>
</item>
<item>
	<title>Sacha Labourey: slaboure</title>
	<guid>http://labourey.wordpress.com/?p=153</guid>
	<link>http://sacha.labourey.com/2008/09/02/kava-jboss-community-in-china-is-growing/</link>
	<description>&lt;div class=&quot;snap_preview&quot;&gt;&lt;br /&gt;&lt;p&gt;&lt;a href=&quot;http://labourey.files.wordpress.com/2008/09/kava-logo.png&quot;&gt;&lt;img class=&quot;alignright size-thumbnail wp-image-154&quot; src=&quot;http://labourey.files.wordpress.com/2008/09/kava-logo.png?w=128&amp;#038;h=57&quot; alt=&quot;&quot; width=&quot;128&quot; height=&quot;57&quot; /&gt;&lt;/a&gt;I was discussing with Bruno Georges this morning about the APAC market and he pointed me at the &lt;a href=&quot;http://www.kava.org.cn/&quot;&gt;Kava Community&lt;/a&gt; web site and it is pretty impressive! The Kava community is writing blog entries in Chinese, reporting on JBoss activities and more importantly translating the JBoss.org documentation into Chinese! Our growth in China is very good and I am happy to see such communities emerge, that&amp;#8217;s a great signal.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;d like to take that opportunity to mention the growing number of JBoss-related articled published at DZone. If you haven&amp;#8217;t done so yet, please visit the &lt;a href=&quot;http://www.dzone.com/mz/jboss&quot;&gt;JBoss homepage at DZone&lt;/a&gt;. Recent entries include introductions to JBoss AOP, introductions to JBoss RichFaces, to REST, etc.&lt;/p&gt;
&lt;p&gt;Onward,&lt;/p&gt;
&lt;p&gt;Sacha&lt;/p&gt;
&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/categories/labourey.wordpress.com/153/&quot; /&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/tags/labourey.wordpress.com/153/&quot; /&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gocomments/labourey.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/comments/labourey.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godelicious/labourey.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/delicious/labourey.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/gostumble/labourey.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/stumble/labourey.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/godigg/labourey.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/digg/labourey.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;a rel=&quot;nofollow&quot; href=&quot;http://feeds.wordpress.com/1.0/goreddit/labourey.wordpress.com/153/&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://feeds.wordpress.com/1.0/reddit/labourey.wordpress.com/153/&quot; /&gt;&lt;/a&gt; &lt;img alt=&quot;&quot; border=&quot;0&quot; src=&quot;http://stats.wordpress.com/b.gif?host=sacha.labourey.com&amp;amp;blog=1599495&amp;amp;post=153&amp;amp;subd=labourey&amp;amp;ref=&amp;amp;feed=1&quot; /&gt;&lt;/div&gt;</description>
	<pubDate>Tue, 02 Sep 2008 12:00:41 +0000</pubDate>
	<dc:creator>Sacha</dc:creator>
</item>

</channel>
</rss>
