<?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>Nighttime Cold/Flu Relief</title>
	<atom:link href="http://www.baroti.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.baroti.com</link>
	<description>One may exist browsing the Internet.</description>
	<lastBuildDate>Fri, 24 Jul 2009 20:19:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Kaltura CE v.1.5 Linux i386 on Fedora 11 &amp; Selinux (execstack, execmem)</title>
		<link>http://www.baroti.com/2009/07/24/kaltura-ce-v-1-5-linux-i386-on-fedora-11-selinux-execstack-execmem</link>
		<comments>http://www.baroti.com/2009/07/24/kaltura-ce-v-1-5-linux-i386-on-fedora-11-selinux-execstack-execmem#comments</comments>
		<pubDate>Fri, 24 Jul 2009 20:19:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.baroti.com/?p=23</guid>
		<description><![CDATA[Installing Kaltura CE 1.5 on Fedora 11 (i386) with a &#8220;trick&#8221; to point to the system&#8217;s ffmpeg, the below selinux error messages showed up:
type=AVC msg=audit(1248459483.954:30685): avc:  denied  { execstack } for  pid=8515 comm=&#8221;ffmpeg&#8221; scontext=unconfined_u:system_r:httpd_t:s0 tcontext=unconfined_u:system_r:httpd_t:s0 tclass=process
type=SYSCALL msg=audit(1248459483.954:30685): arch=40000003 syscall=125 success=no exit=-13 a0=bfc28000 a1=1000 a2=1000007 a3=bfc280ac items=0 ppid=8482 pid=8515 auid=0 uid=48 gid=48 euid=48 suid=48 fsuid=48 egid=48 [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Kaltura CE 1.5 on Fedora 11 (i386) with a &#8220;trick&#8221; to point to the system&#8217;s ffmpeg, the below selinux error messages showed up:</p>
<p>type=AVC msg=audit(1248459483.954:30685): avc:  denied  { execstack } for  pid=8515 comm=&#8221;ffmpeg&#8221; scontext=unconfined_u:system_r:httpd_t:s0 tcontext=unconfined_u:system_r:httpd_t:s0 tclass=process<br />
type=SYSCALL msg=audit(1248459483.954:30685): arch=40000003 syscall=125 success=no exit=-13 a0=bfc28000 a1=1000 a2=1000007 a3=bfc280ac items=0 ppid=8482 pid=8515 auid=0 uid=48 gid=48 euid=48 suid=48 fsuid=48 egid=48 sgid=48 fsgid=48 tty=(none) ses=13 comm=&#8221;ffmpeg&#8221; exe=&#8221;/usr/bin/ffmpeg&#8221; subj=unconfined_u:system_r:httpd_t:s0 key=(null)</p>
<p>type=AVC msg=audit(1248462183.935:30734): avc:  denied  { execmem } for  pid=8758 comm=&#8221;ffmpeg&#8221; scontext=unconfined_u:system_r:httpd_t:s0 tcontext=unconfined_u:system_r:httpd_t:s0 tclass=process<br />
type=SYSCALL msg=audit(1248462183.935:30734): arch=40000003 syscall=125 success=no exit=-13 a0=bffea000 a1=1000 a2=1000007 a3=bffe994c items=0 ppid=8744 pid=8758 auid=0 uid=48 gid=48 euid=48 suid=48 fsuid=48 egid=48 sgid=48 fsgid=48 tty=(none) ses=1255 comm=&#8221;ffmpeg&#8221; exe=&#8221;/usr/bin/ffmpeg&#8221; subj=unconfined_u:system_r:httpd_t:s0 key=(null)</p>
<p>they were domesticated using <a href="http://akela.mendelu.cz/~ruprich/">Tomáš &#8220;Tomyk&#8221; Ruprich</a> hint from:</p>
<p><a href="https://akela.mendelu.cz/~ruprich/tlachy/zend_selinux.html">https://akela.mendelu.cz/~ruprich/tlachy/zend_selinux.html</a></p>
<p>as bellow:</p>
<p>[root@localhost selinux]# more local.te<br />
module local 1.1;</p>
<p>require {<br />
type httpd_t;<br />
#type usr_t;<br />
class file execute;<br />
#class process { execstack execmem execheap };<br />
class process { execstack execmem };<br />
}</p>
<p>#============= httpd_t ==============<br />
allow httpd_t self:process execstack;<br />
allow httpd_t self:process execmem;<br />
#allow httpd_t self:process execheap;<br />
#allow httpd_t usr_t:file execute;</p>
<p>[root@localhost selinux]# checkmodule -M -m -o local.mod local.te<br />
checkmodule:  loading policy configuration from local.te<br />
checkmodule:  policy configuration loaded<br />
checkmodule:  writing binary representation (version 10) to local.mod</p>
<p>[root@localhost selinux]# semodule_package -o local.pp -m local.mod</p>
<p>[root@localhost selinux]# semodule -i ./local.pp</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baroti.com/2009/07/24/kaltura-ce-v-1-5-linux-i386-on-fedora-11-selinux-execstack-execmem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>International Music Day, October 1st 2008</title>
		<link>http://www.baroti.com/2008/10/01/international-music-day</link>
		<comments>http://www.baroti.com/2008/10/01/international-music-day#comments</comments>
		<pubDate>Wed, 01 Oct 2008 04:42:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.baroti.com/?p=8</guid>
		<description><![CDATA[We will celebrate today &#8220;1er octobre, journée internationale de la musique&#8221; together with Prof. Palcu Adrian, Ph.D. and Iosif Sava (RIP) &#8211; Invitatiile Euterpei. International Music Day was initiated in 1975 by Yehudi Menuhin.
]]></description>
			<content:encoded><![CDATA[<p>We will celebrate today &#8220;1er octobre, journée internationale de la musique&#8221; together with Prof. Palcu Adrian, Ph.D. and Iosif Sava (RIP) &#8211; Invitatiile Euterpei. International Music Day was initiated in 1975 by Yehudi Menuhin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baroti.com/2008/10/01/international-music-day/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Gypsies, by Jean-Paul Clebert (1961)</title>
		<link>http://www.baroti.com/2007/09/06/the-gypsies-by-jean-paul-clebert-1961</link>
		<comments>http://www.baroti.com/2007/09/06/the-gypsies-by-jean-paul-clebert-1961#comments</comments>
		<pubDate>Thu, 06 Sep 2007 21:12:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ethnic]]></category>

		<guid isPermaLink="false">http://www.baroti.com/?p=5</guid>
		<description><![CDATA[Just found &#8220;The Gyspsies&#8221; (&#8220;Les Tziganes&#8221;), by Jean-Paul Clebert (1961), in a translation by Charles Duff (1963).  A slightly old book with many illustrations, I am curious what was the approach of the autor, who later wrote books like &#8220;L&#8217;ermite&#8221; (1986), &#8220;Guide de la Provence mystérieuse&#8221; (1992),  &#8220;L&#8217;alchimiste du Roi-Soleil&#8221; (1994), &#8220;Dictionnaire du surréalisme&#8221; (1996), [...]]]></description>
			<content:encoded><![CDATA[<p>Just found <em>&#8220;The Gyspsies&#8221;</em> (<em>&#8220;Les Tziganes&#8221;</em>), by Jean-Paul Clebert (1961), in a translation by Charles Duff (1963).  A slightly old book with many illustrations, I am curious what was the approach of the autor, who later wrote books like <em>&#8220;L&#8217;ermite&#8221;</em> (1986), <em>&#8220;Guide de la Provence mystérieuse&#8221;</em> (1992),  <em>&#8220;L&#8217;alchimiste du Roi-Soleil&#8221;</em> (1994), <em>&#8220;Dictionnaire du surréalisme&#8221;</em> (1996), <em>&#8220;Herbier provençal&#8221;</em> (2006)&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baroti.com/2007/09/06/the-gypsies-by-jean-paul-clebert-1961/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Counter</title>
		<link>http://www.baroti.com/2007/07/20/linux-counter</link>
		<comments>http://www.baroti.com/2007/07/20/linux-counter#comments</comments>
		<pubDate>Fri, 20 Jul 2007 07:45:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.baroti.com/?p=4</guid>
		<description><![CDATA[Updated account #299759 on Linux Counter. I wondered about the future of this web site, about the Linux distros, and about any web site in 100 years.
]]></description>
			<content:encoded><![CDATA[<p>Updated account #299759 on <a href="http://counter.li.org/" title="Linux Counter">Linux Counter</a>. I wondered about the future of this web site, about the Linux distros, and about any web site in 100 years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baroti.com/2007/07/20/linux-counter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Large attachement for a friend.</title>
		<link>http://www.baroti.com/2007/07/19/hello-world</link>
		<comments>http://www.baroti.com/2007/07/19/hello-world#comments</comments>
		<pubDate>Thu, 19 Jul 2007 04:14:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Tried out SendSpace in order to deliver a 73M PDF to Vlad. It went smoothly. Previously we used RapidShare for sending 6&#215;100M to Michou del&#8217; Alcatel.
]]></description>
			<content:encoded><![CDATA[<p>Tried out <a href="http://www.sendspace.com/" title="SendSpace">SendSpace</a> in order to deliver a 73M PDF to Vlad. It went smoothly. Previously we used <a href="http://rapidshare.com/">RapidShare</a> for sending 6&#215;100M to Michou del&#8217; Alcatel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.baroti.com/2007/07/19/hello-world/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
