<?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>Steve Deakin&#039;s Weblog &#187; Linux</title>
	<atom:link href="http://www.stevedeakin.com/category/technology/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.stevedeakin.com</link>
	<description>Balancing Digital Effectiveness With Analog Creativity</description>
	<lastBuildDate>Mon, 19 Jul 2010 18:53:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SSH on BlackBerry</title>
		<link>http://www.stevedeakin.com/2009/07/16/ssh-on-blackberry</link>
		<comments>http://www.stevedeakin.com/2009/07/16/ssh-on-blackberry#comments</comments>
		<pubDate>Thu, 16 Jul 2009 21:06:46 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[BlackBerry]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=123</guid>
		<description><![CDATA[SSH (Secure Shell) is a remote adminstration utility typically for UNIX systens that provides secure access to the command line. The service is provided by the UNIX deamon SSHD which listens on TCP/IP port 22. A popular utility for providing SSH on BlackBerry is midpssh ( http://www.xk72.com/midpssh/ ) which is now maintained at http://ota.deltatech.com.mx/ and most importantly now [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F07%2F16%2Fssh-on-blackberry"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F07%2F16%2Fssh-on-blackberry&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>SSH (Secure Shell) is a remote adminstration utility typically for UNIX systens that provides secure access to the command line.</p>
<p>The service is provided by the UNIX deamon SSHD which listens on TCP/IP port 22.</p>
<p>A popular utility for providing SSH on BlackBerry is midpssh ( <a href="http://www.xk72.com/midpssh/">http://www.xk72.com/midpssh/</a> ) which is now maintained at <a href="http://ota.deltatech.com.mx/">http://ota.deltatech.com.mx/</a> and most importantly now digitally signed to allow low level features.</p>
<p>Recently midpssh this has stoppped working due to RIM BlackBerry Internet Service only allowing HTTP and HTTPS traffic through their proxies.</p>
<p>The solution is to change the SSH listener port on the SSH server to listen to Port 443 (HTTPS) instead of Port 22.</p>
<p><span id="more-123"></span></p>
<p>This can be done by editing /etc/ssh/sshd_conf and changing the line</p>
<p><code>Listen 22</code></p>
<p>to</p>
<p><code>Listen 443</code></p>
<p>Then restarting the SSHD service.</p>
<p><code>service sshd restart</code></p>
<p>To check to see if the sshd deamon is now listening on port 443 run the following command:</p>
<p><code>netstat -anp | grep ssh</code></p>
<p>If the sshd deamon is not listening on port 443 then it could be that the Apache web web server also running with that listener socket for HTTPS. To resolve this change the file /etc/httpd/httpd.conf/ssl.conf will have to be modified to change the listener port from 443 to something else such as 444.</p>
<p><code>Listen 444</code></p>
<p>To access secure services on the web server after this change requires the URL to be:</p>
<p><code>https://domain:444</code></p>
<p>The restart Apache and SSHD</p>
<p><code><br />
service Apache restart<br />
service sshd restart<br />
</code></p>
<p>Now you should be able to use midpssh to login from your BlackBerry to your SSH server using port 443 instead of 22 by using</p>
<p><code>domainname:443</code></p>
<p>If you need to access another server than only works on port 22 then login into your server then ssh from your server to the target server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2009/07/16/ssh-on-blackberry/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BuddyPress &#8211; Open Source Social Networking</title>
		<link>http://www.stevedeakin.com/2009/05/27/buddypress-open-source-social-networking</link>
		<comments>http://www.stevedeakin.com/2009/05/27/buddypress-open-source-social-networking#comments</comments>
		<pubDate>Wed, 27 May 2009 20:20:56 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[buddypress]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[WordPress-mu]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=109</guid>
		<description><![CDATA[BuddyPress, the social networking plug-in to multiuser wordpress (WordPress-MU) has been released from beta to general availability. I now use BuddyPress on my home CentOS Linux server to provide a internal social network and blogging facility for the family. I am still trying out different calendar plug-ins to provide a central calendar for the family.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F05%2F27%2Fbuddypress-open-source-social-networking"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F05%2F27%2Fbuddypress-open-source-social-networking&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://buddypress.org/">BuddyPress</a>, the social networking plug-in to multiuser wordpress (<a href="http://mu.wordpress.org">WordPress-MU</a>) has been released from beta to general availability.</p>
<p>I now use BuddyPress on my home <a href="http://www.centos.org">CentOS </a>Linux server to provide a internal social network and blogging facility for the family.</p>
<p>I am still trying out different calendar plug-ins to provide a central calendar for the family.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2009/05/27/buddypress-open-source-social-networking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlySoft defeats latest Blu-Ray BD+ content protection</title>
		<link>http://www.stevedeakin.com/2009/01/05/slysoft-defeats-latest-blu-ray-bd-content-protection</link>
		<comments>http://www.stevedeakin.com/2009/01/05/slysoft-defeats-latest-blu-ray-bd-content-protection#comments</comments>
		<pubDate>Mon, 05 Jan 2009 22:56:49 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[anydvd]]></category>
		<category><![CDATA[slysoft]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=88</guid>
		<description><![CDATA[SlySoft publish &#8220;AnyDVD&#8221; and &#8220;AnyDVD HD&#8221; for accessing and copying DVDs and Blu-Ray disks by defeating the copy protection mechanisms. SlySoft is based in Antigua thus avoids penalties under the DCMA (Digital Millennium Copyright Act) 1998, the CDPA (Copyright, Designs and Patents Act) 1988 and other similar legislation in other parts of the world. SlySoft are currently ahead [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F01%2F05%2Fslysoft-defeats-latest-blu-ray-bd-content-protection"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2009%2F01%2F05%2Fslysoft-defeats-latest-blu-ray-bd-content-protection&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="SlySoft" href="http://www.slysoft.com" target="_blank">SlySoft</a> publish &#8220;AnyDVD&#8221; and &#8220;AnyDVD HD&#8221; for accessing and copying DVDs and Blu-Ray disks by defeating the copy protection mechanisms.</p>
<p>SlySoft is based in Antigua thus avoids penalties under the <a title="DCMA" href="http://en.wikipedia.org/wiki/Digital_Millennium_Copyright_Act" target="_blank">DCMA</a> (Digital Millennium Copyright Act) 1998, the <a title="CDPA" href="http://en.wikipedia.org/wiki/Copyright,_Designs_and_Patents_Act_1988">CDPA</a> (Copyright, Designs and Patents Act) 1988 and other similar legislation in other parts of the world.</p>
<p>SlySoft are currently ahead of the arms race between protection circumvention and content protection.</p>
<p><span id="more-88"></span></p>
<p>DVD ripping has been possible for many years after the CSS (Content Scrambling System) encryption keys were compromised and <a title="DeCSS" href="http://en.wikipedia.org/wiki/DeCSS" target="_blank">DeCSS</a> was created.  The digital rights management industry has learned that &#8220;security by obscurity&#8221; is not security at all. Most users of CSS cracking software claim it is used to defeat region encoding that stops DVDs being played outside their target market.</p>
<p>Blu-ray (and HD-DVD) were designed with better encryption, <a title="AACS" href="http://en.wikipedia.org/wiki/Advanced_Access_Content_System" target="_blank">AACS</a> (Advanced Access Content System) from the outset but this still was compromised. The technology also includes <a title="HDCP" href="http://en.wikipedia.org/wiki/HDCP" target="_blank">HDCP</a> (High-bandwidth Digital Content Protection) which prevents digital recording equipment from recording the content by requiring the player and the television create a secure channel for the media.</p>
<p>Blu-ray players feature extensible protection so the scrambling system can be upgraded so new titles can be better protected against copying. This feature could be the reason that the studios preferred Blu-ray over HD-DVD.</p>
<p>The latest copy protection mechanism for Blu-ray is <a title="BD+" href="http://en.wikipedia.org/wiki/BD%2B" target="_blank">BD+</a> which 18 months ago was hailed as protection that will take 10 years to break. It features a virtual machine that authorized players use to run scripts to access the content. This virtual machine deliberately makes reverse engineering difficult by changing the way instructions are executed depending on the context.</p>
<p>Proving that nothing is unbreakable, SlySoft has cracked the latest BD+ scrambling system and can copy all existing titles as noted in this press release: <a href="http://forum.slysoft.com/showthread.php?t=24602">http://forum.slysoft.com/showthread.php?t=24602</a></p>
<p>Macrovision, who develop the BD+ scrambling system, will no doubt respond in due course with better technology to defeat SlySoft.</p>
<p>The lesson here is that continuous development is required to protect digital rights.</p>
<p>But overall, is digital rights management worth all the inconvenience to the customer?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2009/01/05/slysoft-defeats-latest-blu-ray-bd-content-protection/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Miro &#8211; Free open source video platform</title>
		<link>http://www.stevedeakin.com/2008/11/19/miro-free-open-source-video-platform</link>
		<comments>http://www.stevedeakin.com/2008/11/19/miro-free-open-source-video-platform#comments</comments>
		<pubDate>Wed, 19 Nov 2008 08:25:34 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[miro]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=75</guid>
		<description><![CDATA[I use Windows and Linux interchagably so I like to choose open source toolsets that run on both platforms (I also find that Linux apps are generally also available on Mac OS X so that&#8217;s cool). Miro is now my favourite video player (Xine has been deprecated in my A-List). It supports all the video [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F11%2F19%2Fmiro-free-open-source-video-platform"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F11%2F19%2Fmiro-free-open-source-video-platform&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I use Windows and Linux interchagably so I like to choose open source toolsets that run on both platforms (I also find that Linux apps are generally also available on Mac OS X so that&#8217;s cool).</p>
<p>Miro is now my favourite video player (Xine has been deprecated in my A-List).</p>
<p>It supports all the video formats I use (Flash Video, AVI, H.264, Windows Media, Quicktime and MPEG), searches YouTube and Google Video, and allows downloads.</p>
<p>The only downside is the arms race between Miro and YouTube for enabling and disabling the download facility respectively but that is OK if you keep your version of Miro up to date.</p>
<p>You can get Miro here: <a href="http://www.getmiro.com/download">Get Miro</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2008/11/19/miro-free-open-source-video-platform/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 10 &#8211; Cambridge release</title>
		<link>http://www.stevedeakin.com/2008/11/15/fedora-10-cambridge-release</link>
		<comments>http://www.stevedeakin.com/2008/11/15/fedora-10-cambridge-release#comments</comments>
		<pubDate>Sat, 15 Nov 2008 01:04:08 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora10]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=72</guid>
		<description><![CDATA[It doesn&#8217;t seem that long ago that Fedora 9 was on a countdown and now Fedora 10 is almost ready. The key features for me are: * RPM 4.6 which is a major rewrite * Faster graphical startup &#8211; including kernel graphical boot for flashless booting * Rebase to Gnome 2.24 * Sbin sanity (at [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F11%2F15%2Ffedora-10-cambridge-release"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F11%2F15%2Ffedora-10-cambridge-release&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>It doesn&#8217;t seem that long ago that Fedora 9 was on a countdown and now Fedora 10 is almost ready.</p>
<p>The key features for me are:<br />
	* RPM 4.6 which is a major rewrite<br />
	* Faster graphical startup &#8211; including kernel graphical boot for flashless booting<br />
	* Rebase to Gnome 2.24<br />
	* Sbin sanity (at last!)<br />
	* AMQP Infrastructure &#8211; for high speed messaging</p>
<p>The full feature list is <a href="http://fedoraproject.org/wiki/Releases/10/FeatureList">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2008/11/15/fedora-10-cambridge-release/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Additional Fedora 9 Packages &#8211; Livna</title>
		<link>http://www.stevedeakin.com/2008/05/29/additional-fedora-9-packages-livna</link>
		<comments>http://www.stevedeakin.com/2008/05/29/additional-fedora-9-packages-livna#comments</comments>
		<pubDate>Thu, 29 May 2008 21:04:38 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora9]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=51</guid>
		<description><![CDATA[The Fedora distribution does not contain any patented or alleged patented technology such as MP3 and DVD players. To enable this functionality use packages from the Linva (soon to be merged with RPM Fusion but that has not been completed just yet) from repository available at Livna Livna now supports Fedora 9 (Annoucement) To add [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F05%2F29%2Fadditional-fedora-9-packages-livna"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F05%2F29%2Fadditional-fedora-9-packages-livna&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>The Fedora distribution does not contain any patented or alleged patented technology such as MP3 and DVD players.</p>
<p>To enable this functionality use packages from the Linva (soon to be merged with RPM Fusion but that has not been completed just yet) from repository available at <a href="http://rpm.livna.org/rlowiki/">Livna</a></p>
<p>Livna now supports Fedora 9 (<a href="http://www.redhat.com/archives/fedora-announce-list/2008-May/msg00008.html">Annoucement</a>)</p>
<p>To add Livna to your RPM distribution repository list for yum run the following line (you will need the root password):</p>
<p><code>su -c 'rpm -ivh http://rpm.livna.org/livna-release-9.rpm'</code></p>
<p>My favourite Fedora add-ons are VLC and Xine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2008/05/29/additional-fedora-9-packages-livna/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 9 Countdown</title>
		<link>http://www.stevedeakin.com/2008/04/28/fedora-9-countdown</link>
		<comments>http://www.stevedeakin.com/2008/04/28/fedora-9-countdown#comments</comments>
		<pubDate>Mon, 28 Apr 2008 15:53:54 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Fedora9]]></category>

		<guid isPermaLink="false">http://www.stevedeakin.com/?p=50</guid>
		<description><![CDATA[Fedora 9 is soon to be released. It contains amongst other improvements: • Faster X Windows start-up • Upstart service manager instead of initd • Multi-timezone clock • Preview of the ext4 filesystem (for the brave) • Persistent LiveCD images on USB • Firefox 3]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F04%2F28%2Ffedora-9-countdown"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.stevedeakin.com%2F2008%2F04%2F28%2Ffedora-9-countdown&amp;source=StephenDeakin&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Fedora 9 is soon to be released.</p>
<p>It contains amongst other improvements:</p>
<p>
<br />
•	Faster X Windows start-up<br />
•	Upstart service manager instead of initd<br />
•	Multi-timezone clock<br />
•	Preview of the ext4 filesystem (for the brave)<br />
•	Persistent LiveCD images on USB<br />
•	Firefox 3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevedeakin.com/2008/04/28/fedora-9-countdown/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
