<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.rssmicro.com/rssmicro.xsl" version="1.0"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Linux</title>
        <link>http://www.rssmicro.com/?q=Linux&amp;f=0</link>
        <description>Real-time search results for Linux</description>
        <language>en-us</language>
        <pubDate>Wed, 19 Jun 2013 08:39:26 GMT</pubDate>
        <image>
            <title>Real-Time Search Powered by FeedRank®</title>
            <url>http://www.rssmicro.com/images/rssmicro_logo3.gif</url>
            <link>http://www.rssmicro.com</link>
        </image>
        <atom:link rel="self" href="http://www.rssmicro.com/rss.web?q=Linux" type="application/rss+xml" />
        <ttl>1440</ttl>
        <item>
            <title>Gunpoint success allows dev to become independent, Mac and Linux ports on the way</title>
            <link>http://www.joystiq.com/2013/06/18/gunpoint-success-allows-dev-to-become-independent-mac-and-linux/</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.joystiq.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;&lt;img src="http://www.joystiq.com/313" &amp; width="150" &amp; height="89" style="margin: 5pt 10px 0px 0px; float: left;"  border="1" align="left" alt="" /&gt;Writer and developer Tom Francis originally planned his game, Gunpoint , as a showcase piece to earn him a job at a game development studio, but after seeing the success of the title so far he says he doesn't need to join another studio. As you can see above, Francis hit his initial goal for the game from preorders alone, and sales have only gone up since then, to the point where Francis now says designing the game was "so commercially successful that I'll never need" to work for someone else. Since the only real monetary cost of the project was a $30 purchase of Game Maker 8 a few years ago, Francis says Gunpoint "recouped its development costs" in just one minute and four seconds. That's after three years of work, of course, but the point remains that Gunpoint was very successful indeed. The next priority, says Francis, will be to port Gunpoint to the newer Game Maker Studio, where it can then be released for Windows, Mac, and &lt;b&gt;Linux&lt;/b&gt;. He's looking to hire someone for this task, so he can get moving on actual updates and another project eventually. It sounds like a tough job, essentially taking over the core game's development for other platforms. "But as the graphs above should suggest," says Francis, "I can pay." Gunpoint success allows dev to become independent, Mac and &lt;b&gt;Linux&lt;/b&gt; ports on the way originally appeared on Joystiq on Tue, 18 Jun 2013 21:30:00 EST. Please see our terms for use of feeds . Permalink  |  Email this  |  Co ...&lt;/p&gt;</description>
            <guid>http://www.joystiq.com/2013/06/18/gunpoint-success-allows-dev-to-become-independent-mac-and-linux/</guid>
            <pubDate>Wed, 19 Jun 2013 04:30:00 GMT</pubDate>
        </item>
        <item>
            <title>Linux Extremism: Puts a Hurt on Linux and Nothing Else</title>
            <link>http://www.tuxmachines.org/node/60600</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.tuxmachines.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;linuxadvocates.com: I have read the esteemed +Martin Gräßlin's post entitled Fanboys in Free Software and completely agree with his point of view. It is quite sad that the true innovators are hated with such vilification. To the point, I share with you today my own experience with Haters. read more ...&lt;/p&gt;</description>
            <guid>http://www.tuxmachines.org/node/60600</guid>
            <pubDate>Wed, 19 Jun 2013 02:23:30 GMT</pubDate>
        </item>
        <item>
            <title>I used vpnetmon on windows for VPN disconnects, what's the best way to deal with it on Linux? I use openvpn</title>
            <link>http://schoolofprivacy.eu/post/53320028946</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: schoolofprivacy.eu --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;you could always checkout VPNMON or Iptables ...&lt;/p&gt;</description>
            <guid>http://schoolofprivacy.eu/post/53320028946</guid>
            <pubDate>Wed, 19 Jun 2013 00:55:19 GMT</pubDate>
        </item>
        <item>
            <title>Are Python [de]compression modules thread-safe on Linux? On Google App Engine?</title>
            <link>http://stackoverflow.com/questions/17180853/are-python-decompression-modules-thread-safe-on-linux-on-google-app-engine</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: stackoverflow.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;What compression-decompression Python module should I use to build a system in which Google App Engine (Python 2.7) exchanges compressed data with an application on a &lt;b&gt;Linux&lt;/b&gt; machine? There are two additional constraints: Both the &lt;b&gt;Linux&lt;/b&gt; machine and GAE will be doing compression/decompression, and need to operate thread-safely; I want to do everything in RAM, i.e. not use file-like objects. I'm asking because: It's not clear from documentation whether some [de]compression modules are thread-safe when running on &lt;b&gt;Linux&lt;/b&gt;; and It's my understanding that some methods of ensuring thread-safety, such as locks, do not work in App Engine. My concern is that, if these are embedded in a Python module, then even a module that is thread-safe on &lt;b&gt;Linux&lt;/b&gt; may not be thread-safe on GAE. Perhaps my understanding is wrong. :-) Can anyone help fill out the table of compression modules? (lin = &lt;b&gt;Linux&lt;/b&gt;, gae = Google App Engine) bz2 lin: IS SAFE, per: http://docs.python.org/2/library/bz2.html gae: ? zlib lin: ? -- releases GIL, per: http://docs.python.org/2/c-api/init.html But underlying C code is said to be safe: http://www.gzip.org/zlib/zlib_faq.html#faq21 gae: ? gzip lin: ? gae: ? lzma lin: IS NOT SAFE, per: http://docs.python.org/3.4/library/lzma gae: IS NOT SAFE (deduced from PC python) Thank you! ...&lt;/p&gt;</description>
            <guid>http://stackoverflow.com/questions/17180853/are-python-decompression-modules-thread-safe-on-linux-on-google-app-engine</guid>
            <pubDate>Tue, 18 Jun 2013 23:55:06 GMT</pubDate>
        </item>
        <item>
            <title>Linux Potpourri: KDE 4.11 Beta, Debian 7.1, &amp; Pisi Linux Beta</title>
            <link>http://feedproxy.google.com/~r/ostatic/~3/dfzycV4XJRA/story01.htm</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: ostatic.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;&lt;img src="http://www.tuxmachines.org/images/tux.png" &amp; width="57" &amp; height="67" style="margin: 5pt 10px 0px 0px; float: left;"  border="1" align="left" alt="" /&gt;There's rarely a dull moment in Open Source World and if you look away for just a second you'll miss something. Here are several interesting tidbits I found in my feeds I wished to share. KDE released 4.11 beta at the end of last week and it did indeed ship with Wayland support. Debian released an update to 7.0 Saturday and Pisi &lt;b&gt;Linux&lt;/b&gt; (1.0) has made its first public appearance. KDE 4.11 Beta with Wayland Last Thursday the KDE team announced KDE Software Compilation 4.11 Beta1. The announcement featured highlights such as: * Qt Quick is continuing to make its way into the Plasma Workspaces * Nepomuk semantic engine received massive performance optimizations * Kontact got a faster indexer, Nepomuk improvements, and a new theme editor for email headers * KWin got experimental support for Wayland and OpenGL improvements Some plan ned work includes bringing the KTeaTime system tray progress indicator back, porting components and add-ons to QML, Vim-mode support in Kate, a Create New Folder option for Dolphin, and improved history retention in Klipper. The 4.11 todo list is still a bit red, but more green is seeping in. Beta 2 is due June 26 and RC1 is scheduled for July 10. RC2 should appear around July 24 and Final is planned for August 14, 2013. KDE 4.11 has been designated a long term support release and will be maintained for two years. Debian 7.1 Released On Saturday, The Debian Project announced an update to their latest release ...&lt;/p&gt;</description>
            <guid>http://feedproxy.google.com/~r/ostatic/~3/dfzycV4XJRA/story01.htm</guid>
            <pubDate>Tue, 18 Jun 2013 23:27:07 GMT</pubDate>
        </item>
        <item>
            <title>SSIS 2008 Oracle 11g On 64 bit Linux</title>
            <link>http://social.msdn.microsoft.com/Forums/en-US/0d610bd3-9a38-4920-ba39-4f86a038d6fc/ssis-2008-oracle-11g-on-64-bit-linux</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: social.msdn.microsoft.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;I am completely new to SSIS.  I am sorry if I am stupid with questions I am not able to connect to Oracle Database using connection manager in SSIS 2008. I keep getting "ORA-12504: TNS:listener was not given the SERVICE_NAME in CONNECT_DATA". We have Oracle Database 11g Release 11.2.0.3 - 64 bit loaded on production. TNS for &lt;b&gt;Linux&lt;/b&gt; I am using SSIS 2008 on Windows 7 64 bit machine. I am able to access Oracle database using SQL Developer. with the following look a like credentials Oracle DB server IP 172.xx.x.xx Oracle DB/Service  name XYZ Listener port 1521 Host name ZYX I dont know what oracle client I should download for connecting. A &lt;b&gt;Linux&lt;/b&gt; one or windows one. Not sure if some one asked the same quesiton but please help me out. This issue took my 2 days. Havent even close to resolving it. Thanks in advance. Inayat Syed ...&lt;/p&gt;</description>
            <guid>http://social.msdn.microsoft.com/Forums/en-US/0d610bd3-9a38-4920-ba39-4f86a038d6fc/ssis-2008-oracle-11g-on-64-bit-linux</guid>
            <pubDate>Tue, 18 Jun 2013 22:34:56 GMT</pubDate>
        </item>
        <item>
            <title>Question: Linux.com is planning a series of articles focused on Linux kernel sub...</title>
            <link>http://www.facebook.com/TheLinuxFoundation/posts/10151543779038547</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.facebook.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Question: &lt;b&gt;Linux&lt;/b&gt;.com is planning a series of articles focused on &lt;b&gt;Linux&lt;/b&gt; kernel subsystems. What area of the &lt;b&gt;Linux&lt;/b&gt; kernel do you want to know more about? NFC, CPU power monitoring, SCSI, Bluetooth, IPMI, etc. - the list goes on. Please let us know! #&lt;b&gt;Linux&lt;/b&gt; #kernel ...&lt;/p&gt;</description>
            <guid>http://www.facebook.com/TheLinuxFoundation/posts/10151543779038547</guid>
            <pubDate>Tue, 18 Jun 2013 22:17:58 GMT</pubDate>
        </item>
        <item>
            <title>Suggestions on New Linux laptop for heavy virtualization and some gaming/3d work 1800+ 15" only</title>
            <link>http://forum.notebookreview.com/what-notebook-should-i-buy/722295-suggestions-new-linux-laptop-heavy-virtualization-some-gaming-3d-work-1800-15-only.html</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: forum.notebookreview.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;What is your budget? 1800+++ What country will you be buying this in? US What size notebook do you prefer? Mainstream (15 - 16-inch screen) What brands do you like or dislike? Like: I have been looking at the Clevo p150sm but might be overkill on the GPU and i have heard the build/cooling is not that great i like professional looking. I have also been looking into the Lenovo thinkpads as they have good &lt;b&gt;Linux&lt;/b&gt; support and nice builds maybe the W series? open to any suggestions Would you consider a refurbished laptop? No What are the primary tasks you need this notebook for? Photo Editing, Video Editing, Computer Programming, Casual Gaming, Graphic Intense 3D Gaming Some 3d work, Mostly will be using for heavy virtualization and other school labs. Most of it will be in &lt;b&gt;Linux&lt;/b&gt; running VM's and doing multimedia editing. possible dual boot for occasional gaming. What games will you be playing? Some MMOs, Starcraft2, League of legends but does not need to be highest settings and is of least importance... just a plus, hoping to run dual boot with windows only for the occasional gaming session Where will you be using this laptop? Will be used different places How many hours of battery life do you need? 2-5 Will you be buying online or in store? online or in store Which OS do you prefer? &lt;b&gt;Linux&lt;/b&gt; (arch &lt;b&gt;Linux&lt;/b&gt;) List the screen resolutions that interest you: Max Resolution (1920 x 1080) Do you prefer a glossy or matte screen? Must be Matte, Highe ...&lt;/p&gt;</description>
            <guid>http://forum.notebookreview.com/what-notebook-should-i-buy/722295-suggestions-new-linux-laptop-heavy-virtualization-some-gaming-3d-work-1800-15-only.html</guid>
            <pubDate>Tue, 18 Jun 2013 21:41:30 GMT</pubDate>
        </item>
        <item>
            <title>It's a fact. Linux rules supercomputers as over 476 of the top 500 fastest use L...</title>
            <link>http://www.facebook.com/photo.php?fbid=10151582630177933&amp;amp;set=a.10150615456212933.393427.5953112932&amp;amp;type=1</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.facebook.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;&lt;img src="http://photos-c.ak.fbcdn.net/hphotos-ak-frc3/983980_10151582630177933_1732947298_s.jpg" &amp; width="130" &amp; height="60" style="margin: 5pt 10px 0px 0px; float: left;"  border="1" align="left" alt="" /&gt;It's a fact. &lt;b&gt;Linux&lt;/b&gt; rules supercomputers as over 476 of the top 500 fastest use &lt;b&gt;Linux&lt;/b&gt;. Is there no limit? Read: http://zd.net/14hbFef ...&lt;/p&gt;</description>
            <guid>http://www.facebook.com/photo.php?fbid=10151582630177933&amp;amp;set=a.10150615456212933.393427.5953112932&amp;amp;type=1</guid>
            <pubDate>Tue, 18 Jun 2013 21:28:00 GMT</pubDate>
        </item>
        <item>
            <title>LXer: Linux Foundation Sponsors IT Training Scholarship</title>
            <link>http://feedproxy.google.com/~r/linuxquestions/latest/~3/U3kxUvrEtpw/showthread.php</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.linuxquestions.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Published at LXer: The French revolutionary Georges Danton famously said, "After bread, education is the people's first need." And while the French Revolution and the channel may not have much in common, there are few places in which this populist message resonates better than the open source ecosystem, where providing development and other skills to volunteer contributors is vital to long-term successwhich is exactly what the &lt;b&gt;Linux&lt;/b&gt; Foundation is doing starting this week with its 2013 &lt;b&gt;Linux&lt;/b&gt; Training Scholarship Program. Read More... ...&lt;/p&gt;</description>
            <guid>http://feedproxy.google.com/~r/linuxquestions/latest/~3/U3kxUvrEtpw/showthread.php</guid>
            <pubDate>Tue, 18 Jun 2013 21:12:01 GMT</pubDate>
        </item>
        <item>
            <title>Learn More About Virtualization, Linux, Security, Cisco (Chicago) (Jun 23, 2013)</title>
            <link>http://BDPA.groupsite.com/calendar/event/2013/6/23/366730</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: bdpa.groupsite.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;When : 2pm - 7pm EDT Sunday, June 23 2013 Where : Chicago Theological Seminary Start Time             Topic 1:00 pm                Virtualization 2:30 pm                &lt;b&gt;Linux&lt;/b&gt; 4:00 pm                Security 5:30 pm                Cisco ...&lt;/p&gt;</description>
            <guid>http://BDPA.groupsite.com/calendar/event/2013/6/23/366730</guid>
            <pubDate>Tue, 18 Jun 2013 20:34:31 GMT</pubDate>
        </item>
        <item>
            <title>Non-Linux FOSS: libnotify, OS X Style - One of the things I dislike about using...</title>
            <link>http://www.facebook.com/linuxjournal/posts/10151440970761615</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.facebook.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Non-&lt;b&gt;Linux&lt;/b&gt; FOSS: libnotify, OS X Style - One of the things I dislike about using Irssi in a terminal window on OS X is that I often miss the screen flash when someone mentions my name in IRC. With some fancy SSH tunneling (maybe more on that some other issue) and a really cool pop-up notification tool, if someone mentions my name, I can't miss it. more&gt;&gt; http://ow.ly/2xH4g2 ...&lt;/p&gt;</description>
            <guid>http://www.facebook.com/linuxjournal/posts/10151440970761615</guid>
            <pubDate>Tue, 18 Jun 2013 20:28:25 GMT</pubDate>
        </item>
        <item>
            <title>Star Trek games for Linux</title>
            <link>http://feedproxy.google.com/~r/linuxquestions/latest/~3/t8HCKISz_M0/showthread.php</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.linuxquestions.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Are there any Star Trek games on &lt;b&gt;Linux&lt;/b&gt; Mint/Ubuntu? On the repos there is Star Voyager, but I don't really like it... Thanks in advance! ...&lt;/p&gt;</description>
            <guid>http://feedproxy.google.com/~r/linuxquestions/latest/~3/t8HCKISz_M0/showthread.php</guid>
            <pubDate>Tue, 18 Jun 2013 19:59:02 GMT</pubDate>
        </item>
        <item>
            <title>Linux continues to rule supercomputers</title>
            <link>http://feedproxy.google.com/~r/zdnetaustralia-news/~3/3QVlDG132dU/</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.zdnet.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;If you want a really fast computer, then &lt;b&gt;Linux&lt;/b&gt; is your operating system and Intel may be your chip manufacturer. ...&lt;/p&gt;</description>
            <guid>http://feedproxy.google.com/~r/zdnetaustralia-news/~3/3QVlDG132dU/</guid>
            <pubDate>Tue, 18 Jun 2013 19:52:14 GMT</pubDate>
        </item>
        <item>
            <title>Doc Enhance Announcement: Procedures to Install and Configure Linux Distros</title>
            <link>http://forum.3tera.com/showthread.php?t=6591&amp;amp;goto=newpost</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: forum.3tera.com --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;We added procedures to the 3.7 Appliance Developer Guide that describe how to install and configure &lt;b&gt;Linux&lt;/b&gt; distros for 26 varieties of &lt;b&gt;Linux&lt;/b&gt;, including multiple versions of Ubuntu, Fedora, CentOS, and SUSE @ http://doc.3tera.com/AppLogic37/en/L...allations.html ...&lt;/p&gt;</description>
            <guid>http://forum.3tera.com/showthread.php?t=6591&amp;amp;goto=newpost</guid>
            <pubDate>Tue, 18 Jun 2013 17:51:56 GMT</pubDate>
        </item>
        <item>
            <title>Merge tag 'please-pull-fixia64' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux</title>
            <link>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=17858ca65eef148d335ffd4cfc09228a1c1cbfb5</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: git.kernel.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Pull ia64 build fix from Tony Luck: "Fix ia64 build breakage by adding newly needed #include" We're still debating the patch that caused the build breakage, but this fix seems like a good idea regardless of how that ends up being handled. * tag 'please-pull-fixia64' of git://git.kernel.org/pub/scm/&lt;b&gt;Linux&lt;/b&gt;/kernel/git/aegl/&lt;b&gt;Linux&lt;/b&gt;: [IA64] Fix include dependency in asm/irqflags.h ...&lt;/p&gt;</description>
            <guid>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=17858ca65eef148d335ffd4cfc09228a1c1cbfb5</guid>
            <pubDate>Tue, 18 Jun 2013 16:29:19 GMT</pubDate>
        </item>
        <item>
            <title>Merge branch 'slab/urgent' of git://git.kernel.org/pub/scm/linux/kernel/git/penberg/linux</title>
            <link>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4c3577c58f7efcddeaa269e7ddbe75e8acfbb7de</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: git.kernel.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Pull SLAB fix from Pekka Enberg: "A slab regression fix by Sasha Levin" * 'slab/urgent' of git://git.kernel.org/pub/scm/&lt;b&gt;Linux&lt;/b&gt;/kernel/git/penberg/&lt;b&gt;Linux&lt;/b&gt;: slab: prevent warnings when allocating with __GFP_NOWARN ...&lt;/p&gt;</description>
            <guid>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4c3577c58f7efcddeaa269e7ddbe75e8acfbb7de</guid>
            <pubDate>Tue, 18 Jun 2013 16:27:47 GMT</pubDate>
        </item>
        <item>
            <title>Merge tag 'sound-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound</title>
            <link>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=2601ded7fd8827ddbcc450cbfb153b3f3c59b443</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: git.kernel.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Pull sound fixes from Takashi Iwai: "Only driver/device-specific small fixes that are pretty safe to apply: - USB-audio Android and Logitech webcam fixes - HD-audio MacBook Air 4,2 quirk - Complete Dell headset quirk entries that were introduced in 3.10" * tag 'sound-3.10' of git://git.kernel.org/pub/scm/&lt;b&gt;Linux&lt;/b&gt;/kernel/git/tiwai/sound: ALSA: hda - Add models for Dell headset jacks ALSA: usb-audio: Fix invalid volume resolution for Logitech HD Webcam c310 ALSA: hda - Fix pin configurations for MacBook Air 4,2 ALSA: usb-audio: work around Android accessory firmware bug ALSA: hda - Headset mic support for three more machines ...&lt;/p&gt;</description>
            <guid>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=2601ded7fd8827ddbcc450cbfb153b3f3c59b443</guid>
            <pubDate>Tue, 18 Jun 2013 16:26:14 GMT</pubDate>
        </item>
        <item>
            <title>Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media</title>
            <link>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=aad760136537fdfa10e5ac76bd3c79bde2100863</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: git.kernel.org --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Pull media fixes from Mauro Carvalho Chehab: "Series of fixes for 3.10. There are some usual driver fixes (mostly on s5p/exynos playform drivers), plus some fixes at V4L2 core" * 'v4l_for_linus' of git://git.kernel.org/pub/scm/&lt;b&gt;Linux&lt;/b&gt;/kernel/git/mchehab/&lt;b&gt;Linux&lt;/b&gt;-media: (40 commits) [media] soc_camera: error dev remove and v4l2 call [media] sh_veu: fix the buffer size calculation [media] sh_veu: keep power supply until the m2m context is released [media] sh_veu: invoke v4l2_m2m_job_finish() even if a job has been aborted [media] v4l2-ioctl: don't print the clips list [media] v4l2-ctrls: V4L2_CTRL_CLASS_FM_RX controls are also valid radio controls [media] cx88: fix NULL pointer dereference [media] DocBook/media/v4l: update version number [media] exynos4-is: Remove "sysreg" clock handling [media] exynos4-is: Fix reported colorspace at FIMC-IS-ISP subdev [media] exynos4-is: Ensure fimc-is clocks are not enabled until properly configured [media] exynos4-is: Prevent NULL pointer dereference when firmware isn't loaded [media] s5p-mfc: Add NULL check for allocated buffer [media] s5p-mfc: added missing end-of-lines in debug messages [media] s5p-mfc: v4l2 controls setup routine moved to initialization code [media] s5p-mfc: separate encoder parameters for h264 and mpeg4 [media] s5p-mfc: Remove special clock usage in driver [media] s5p-mfc: Remove unused s5p_mfc_get_decoded_status_v6() function [media] v4l2: mem2mem: save irq flags correctly [med ...&lt;/p&gt;</description>
            <guid>http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=aad760136537fdfa10e5ac76bd3c79bde2100863</guid>
            <pubDate>Tue, 18 Jun 2013 16:25:08 GMT</pubDate>
        </item>
        <item>
            <title>Can Red Hat Do For OpenStack What it Did for Linux?</title>
            <link>http://www.channelworld.in/news/can-red-hat-do-openstack-what-it-did-linux-452372013</link>
            <description>&lt;p&gt;&lt;font color="Gray"&gt;Source: www.channelworld.in --- Tuesday, June 18, 2013&lt;/font&gt;&lt;br /&gt;Red Hat made its first $1 billion commercializing &lt;b&gt;Linux&lt;/b&gt;. Now, it hopes to make even more doing the same for OpenStack. ...&lt;/p&gt;</description>
            <guid>http://www.channelworld.in/news/can-red-hat-do-openstack-what-it-did-linux-452372013</guid>
            <pubDate>Tue, 18 Jun 2013 15:25:04 GMT</pubDate>
        </item>
    </channel>
</rss>