<?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>PLATFORMedia LLC &#187; linux</title>
	<atom:link href="http://platformedia.com/oss-blog/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://platformedia.com</link>
	<description>Corporate Web Site</description>
	<lastBuildDate>Sun, 08 Jan 2012 06:55:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>G2X connecting in developer mode</title>
		<link>http://platformedia.com/oss-blog/g2x-developer-mode/</link>
		<comments>http://platformedia.com/oss-blog/g2x-developer-mode/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 23:33:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[G2X]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=510</guid>
		<description><![CDATA[On Fedora, I was having issues getting my T-Mobile G2X to connect in developer mode.
For sure, I was setting Settings-Applications-USBdebugging to Checked.  And when plugging in the device, the SD card (and/or) internal memory space was showing up on the desktop (and the output in /var/log/messages looked equivalent to that from my working G1) [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/g2x-developer-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MythBackend service not starting</title>
		<link>http://platformedia.com/oss-blog/mythbackend-service-not-starting/</link>
		<comments>http://platformedia.com/oss-blog/mythbackend-service-not-starting/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 05:04:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fc16]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MythTV]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=506</guid>
		<description><![CDATA[/var/log/messages complains :

Nov 24 23:52:54 myth systemd&#91;1&#93;: mythbackend.service: control process exited, code=exited status=235
Nov 24 23:52:54 myth systemd&#91;1&#93;: Unit mythbackend.service entered failed state.

Simple solution (not tested whether this survives reboot) :

# touch /var/run/mythbackend.pid; chown mythtv:mythtv /var/run/mythbackend.pid
# systemctl start mythbackend.service
# grep mythbackend

]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/mythbackend-service-not-starting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nginx configuration for uwsgi for Flask</title>
		<link>http://platformedia.com/oss-blog/nginx-config-for-uwsgi-for-flask/</link>
		<comments>http://platformedia.com/oss-blog/nginx-config-for-uwsgi-for-flask/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 06:23:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[flask]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[uwsgi]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=485</guid>
		<description><![CDATA[/etc/nginx/conf.d/site.conf :

server &#123;
&#160;server_name example.com www.example.com;
&#160;root home/example/flask/static;
&#160;
&#160;location ~ ^/&#40;img&#124;js&#124;css&#41;/ &#123; &#160;# &#124;pi&#124;&#124;ext&#124;theme
&#160; root &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;/home/example/flask/static;
&#160; add_header &#160; &#160; &#160; &#160; &#160; &#160; &#160;Cache-Control public;
&#160; #expires &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; 30d;
&#160; #access_log &#160; &#160; &#160; &#160; &#160; &#160; &#160;off;
&#160;&#125;
&#160;location / &#123; try_files $uri @yourapplication; &#125;
&#160;location [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/nginx-config-for-uwsgi-for-flask/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building uwsgi from src.rpm without Python 3</title>
		<link>http://platformedia.com/oss-blog/uwsgi-src-rpm-without-python-3/</link>
		<comments>http://platformedia.com/oss-blog/uwsgi-src-rpm-without-python-3/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 06:39:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[uwsgi]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=494</guid>
		<description><![CDATA[To build uwsgi on Fedora 12 (which has no easy-to-find python3 rpm), run through the rpmbuild process (shown in a previous post in more detail for nginx) and make the following changes :

wget http://kad.fedorapeople.org/packages/uwsgi/uwsgi-0.9.9.2-2.fc15.src.rpm
rpm -ivh uwsgi-0.9.9.2-2.fc15.src.rpm 
rpmbuild -bb &#160;~/rpmbuild/SPECS/uwsgi.spec 
yum install python-devel libuuid-devel jansson-devel libyaml-devel ruby-devel python3-devel python-greenlet-devel &#160;lua-devel &#160;ruby 
# NB: python3-devel doesn&#8217;t exist&#8230;
# [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/uwsgi-src-rpm-without-python-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating nginx (with uwsgi) for Fedora 12 from src.rpm</title>
		<link>http://platformedia.com/oss-blog/nginx-with-uwsgi-src-rpm/</link>
		<comments>http://platformedia.com/oss-blog/nginx-with-uwsgi-src-rpm/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 05:05:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[flask]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=480</guid>
		<description><![CDATA[In order to get access to uwsgi (useful for deploying python flask projects, for instance), one needs a version of nginx > 0.8 or so.  But Fedora 12 doesn&#8217;t have such a modern version :  Here&#8217;s how to build it from a src.rpm from a more recent Fedora release. 

# First, make sure [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/nginx-with-uwsgi-src-rpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling nginx (with uwsgi) for Fedora 12</title>
		<link>http://platformedia.com/oss-blog/nginx-uwsgi-for-fedora-12/</link>
		<comments>http://platformedia.com/oss-blog/nginx-uwsgi-for-fedora-12/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 04:56:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[flask]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=472</guid>
		<description><![CDATA[In order to get access to uwsgi (useful for deploying python flask projects, for instance), one needs a version of nginx > 0.8 or so.  But Fedora 12 doesn&#8217;t have such a modern version :  Here&#8217;s how to compile it from source : 
Actually, a less hacky approach is to simply back-port (trivially) [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/nginx-uwsgi-for-fedora-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laptop Data Security</title>
		<link>http://platformedia.com/oss-blog/laptop-data-security/</link>
		<comments>http://platformedia.com/oss-blog/laptop-data-security/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 17:18:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[encfs]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://platformedia.com/?p=360</guid>
		<description><![CDATA[This should be a no-brainer for anyone carrying anything important around on a laptop.  
IMHO, relying on a user password (like a login password) is not a great idea, since anyone with physical access to the disk can get to your data easily.  OTOH, using disk encryption seems like overkill &#8211; since if [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/laptop-data-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running rsync from a webserver (using sudo)</title>
		<link>http://platformedia.com/oss-blog/running-rsync-from-a-webserver-using-sudo/</link>
		<comments>http://platformedia.com/oss-blog/running-rsync-from-a-webserver-using-sudo/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 14:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sudo]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2009/10/running-rsync-from-a-webserver-using-sudo/</guid>
		<description><![CDATA[Situation
I want to have &#8216;rsync&#8217; run when a user presses a button on the webserver.  The software stack is as follows (though this was largely a red-herring, see below) :

Fedora &#8211; server
lighttpd &#8211; webserver
Twiki &#8211; intranet setup
perl &#8211; plugin language for Twiki
bash &#8211; perl launches a script to run the rsync
sudo &#8211; to &#8216;change [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/running-rsync-from-a-webserver-using-sudo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lmms with Fedora &#8211; compile source</title>
		<link>http://platformedia.com/oss-blog/lmms-with-fedora-compile-source/</link>
		<comments>http://platformedia.com/oss-blog/lmms-with-fedora-compile-source/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 19:31:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lmms]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2009/03/lmms-with-fedora-compile-source/</guid>
		<description><![CDATA[lmms has some dependencies that are not so easy to determine for Fedora
Basic setup :

yum install cmake git
yum install qt qt-devel

Synth extras :

yum install libsndfile libsndfile-devel
yum install fluidsynth fluidsynth-devel
yum install stk stk-devel
yum install fftw-devel

Importantly for wine VST(i) :

yum install wine wine-devel
yum install glibc-devel.i386

Hope this helps
]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/lmms-with-fedora-compile-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gateway GM6543E Linux Installation</title>
		<link>http://platformedia.com/oss-blog/gateway-gm6543e-linux-installation/</link>
		<comments>http://platformedia.com/oss-blog/gateway-gm6543e-linux-installation/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 00:34:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[fedora]]></category>
		<category><![CDATA[Gateway GM6543E]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://platformedia.com/index.php/2008/10/gateway-gm6543e-linux-installation/</guid>
		<description><![CDATA[Initial Boot Problems
Booting kernel on stock Fedora 9 x64 DVD requires the kernel option : &#8216;intel_iommu=off&#8217; to be appended to the kernel boot line.
Updated kernels (after, say, 2.2.26), no longer need this extra parameter.
USB Keyboard
Unless &#8216;Legacy USB&#8217; is set in the BIOS (which it is by default), the USB keyboard can&#8217;t be used to change [...]]]></description>
		<wfw:commentRss>http://platformedia.com/oss-blog/gateway-gm6543e-linux-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

