<?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/tag/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>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 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>
