<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Netfortius</title>
	<atom:link href="http://netfortius.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://netfortius.wordpress.com</link>
	<description>Random *HOW-TO* notes on network, security ... and maybe other subjects</description>
	<pubDate>Mon, 10 Mar 2008 04:24:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>VMWare Fusion &#38; shared folder with Linux guest</title>
		<link>http://netfortius.wordpress.com/2008/03/09/vmware-fusion-shared-folder-with-linux-guest/</link>
		<comments>http://netfortius.wordpress.com/2008/03/09/vmware-fusion-shared-folder-with-linux-guest/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 04:24:52 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/?p=36</guid>
		<description><![CDATA[Under guest (Linux) identify uid and gid:
guest$ id 
uid=500(username) gid=500(groupname) groups=500
then adjust the /etc/fstab file accordingly, in the block added by VMWare software:
old: .host:/ /mnt/hgfs vmhgfs defaults,ttl=5 0 0
new: .host:/ /mnt/hgfs vmhgfs defaults,ttl=5,uid=500,gid=500 0 0
lastly umount and remount hgfs:
guest$ sudo umount /mnt/hgfs
guest$ sudo mount /mnt/hgfs
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Under guest (Linux) identify uid and gid:</p>
<p>guest$ <i><b>id </b></i><br />
uid=500(username) gid=500(groupname) groups=500</p>
<p>then adjust the /etc/fstab file accordingly, in the block added by VMWare software:<br />
old: <b><i>.host:/ /mnt/hgfs vmhgfs defaults,ttl=5 0 0</i></b><br />
new: <b><i>.host:/ /mnt/hgfs vmhgfs defaults,ttl=5,uid=500,gid=500 0 0</i></b></p>
<p>lastly umount and remount hgfs:</p>
<p>guest$ <b><i>sudo umount /mnt/hgfs</i></b><br />
guest$ <b><i>sudo mount /mnt/hgfs</i></b></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=36&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2008/03/09/vmware-fusion-shared-folder-with-linux-guest/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>securely saving kmail critical info to an USB key</title>
		<link>http://netfortius.wordpress.com/2008/01/07/securely-saving-kmail-critical-info-to-an-usb-key/</link>
		<comments>http://netfortius.wordpress.com/2008/01/07/securely-saving-kmail-critical-info-to-an-usb-key/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 20:27:58 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2008/01/07/securely-saving-kmail-critical-info-to-an-usb-key/</guid>
		<description><![CDATA[This is what I have done on my macosx system for this:
1. created a directory for what I deem to be critical files (emails and configuration) on my system:
~$ md /&#60;path-to-mail-backup-dir&#62;/mail-backup
2. created a script able to update the backup directory, from the major ~/.kde place, tar and encrypt (using openssl and a password file to [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is what I have done on my macosx system for this:</p>
<p>1. created a directory for what I deem to be critical files (emails and configuration) on my system:</p>
<p><b><i>~$ md /&lt;path-to-mail-backup-dir&gt;/mail-backup</i></b></p>
<p>2. created a script able to update the backup directory, from the major ~/.kde place, tar and encrypt (using openssl and a password file to be passed to the encryption process) the tar file, then moved the encrypted file to the mounted USB volume (generically named &#8220;NO NAME&#8221; in the example). The script file is:</p>
<p><strong><i><br />
#!/bin/sh</i></p>
<p><i>  cd ~/.kde/share/apps/<br />
rsync -avz ./kmail &#8211;delete /&lt;path-to-mail-backup-dir&gt;/mail-backup/<br />
rsync -avz ./kabc &#8211;delete /&lt;path-to-mail-backup-dir&gt;/mail-backup/<br />
cd ../config/<br />
rsync -avz ./kmailrc* &#8211;delete /&lt;path-to-mail-backup-dir&gt;/mail-backup/<br />
rsync -avz ./emailidenti* &#8211;delete /&lt;path-to-mail-backup-dir&gt;/mail-backup/<br />
cd /&lt;path-to-mail-backup-dir&gt;/mail-backup<br />
tar -cf mail-backup.tar /&lt;path-to-mail-backup-dir&gt;/mail-backup/<br />
openssl des3 -salt -in mail-backup.tar -out mail-backup.tar.des3 -pass file:/&lt;path-to-password-file&gt;/password.txt<br />
mv -f mail-backup.tar.des3 /Volumes/NO\ NAME/<br />
rm -f mail-backup.tar*</i></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=35&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2008/01/07/securely-saving-kmail-critical-info-to-an-usb-key/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>kmail, firefox and macosx</title>
		<link>http://netfortius.wordpress.com/2008/01/07/kmail-firefox-and-macosx/</link>
		<comments>http://netfortius.wordpress.com/2008/01/07/kmail-firefox-and-macosx/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 19:12:00 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2008/01/07/kmail-firefox-and-macosx/</guid>
		<description><![CDATA[Need to document how to configure firefox launching from within kmail, as none of the &#8220;obvious&#8221; (googled) options worked:
X11 &#8211;&#62; terminal &#8211;&#62; kcontrol &#8211;&#62; KDE components &#8211;&#62; Component chooser &#8211;&#62; Web browser &#8211;&#62; enable &#8220;in the following browser&#8221; and add this line:
open /Applications/Firefox.app
The problem is that the only answer having come up close to the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Need to document how to configure firefox launching from within kmail, as none of the &#8220;obvious&#8221; (googled) options worked:</p>
<p>X11 &#8211;&gt; terminal &#8211;&gt; kcontrol &#8211;&gt; KDE components &#8211;&gt; Component chooser &#8211;&gt; Web browser &#8211;&gt; enable &#8220;in the following browser&#8221; and add this line:</p>
<p><b><i>open /Applications/Firefox.app</i></b></p>
<p>The problem is that the only answer having come up close to the above was indicating the line to be:</p>
<p><b><i>/Applications/Firefox.app/Contents/MacOS/firefox</i></b> </p>
<p>recommendation from <a href="http://forums.macosxhints.com/showthread.php?t=47824">an old posting on the subject</a>, but which option leads to a &#8220;complaint&#8221;, if firefox is already running: &#8220;A copy of firefox is already open &#8230;&#8221;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=34&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2008/01/07/kmail-firefox-and-macosx/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>beyond belief - 2007</title>
		<link>http://netfortius.wordpress.com/2008/01/05/beyond-belief-2007/</link>
		<comments>http://netfortius.wordpress.com/2008/01/05/beyond-belief-2007/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 07:24:28 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2008/01/05/beyond-belief-2007/</guid>
		<description><![CDATA[Recordings from the second edition of this conference - Enlightenment 2.0 - are now available online.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Recordings from the second edition of <a href="http://thesciencenetwork.org/BeyondBelief2/">this conference</a> - <strong><em>Enlightenment 2.0</em></strong> - are now available <a href="http://thesciencenetwork.org/BeyondBelief2/watch/">online</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=33&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2008/01/05/beyond-belief-2007/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>migrating kmail between systems</title>
		<link>http://netfortius.wordpress.com/2007/10/29/migrating-kmail-between-systems/</link>
		<comments>http://netfortius.wordpress.com/2007/10/29/migrating-kmail-between-systems/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 03:33:13 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/10/29/migrating-kmail-between-systems/</guid>
		<description><![CDATA[On some systems mail is found under $HOME/.Mail, on some others under $HOME/Mail and - yet on others - I&#8217;ve found it even under $HOME/.kde/share/apps/kmail. Regardless of where the source (to be copied from) directory of email is, the important thing is to have the variable &#8220;folders&#8221;, from $HOME/.kde/share/config/kmailrc point to the target directory.
The only [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On some systems mail is found under $HOME/.Mail, on some others under $HOME/Mail and - yet on others - I&#8217;ve found it even under $HOME/.kde/share/apps/kmail. Regardless of where the source (to be copied from) directory of email is, the important thing is to have the variable &#8220;folders&#8221;, from $HOME/.kde/share/config/kmailrc point to the target directory.</p>
<p>The only method I have found reliable to migrate directories and files has been by using rsync w/ssh &amp; tar, combined. Assuming that in our case the &lt;source&gt; email directory is /home/user/.Mail, and that the &lt;target&gt; directory we choose is /home/user/.kde/share/apps/kmail the followings are necessary steps to produce a functional kmail &lt;target&gt; system:</p>
<p>&lt;target&gt;/home/user/.kde/share$ <b><i>rsync -avze ssh user@&lt;source&gt;:/home/user/.Mail/ ./apps/kmail</i></b></p>
<p>NOTE: it is important to have the &lt;source&gt; directory ending with a trailing &#8220;/&#8221;, to be able to copy just the content of it on the &lt;target&gt; one. For the &lt;target&gt; directory having a trailing &#8220;/&#8221;, or not, makes no difference!</p>
<p>&lt;target&gt;/home/user/.kde/share$ <b><i>rsync </i></b><b><i>-avze ssh </i></b><b><i>user@&lt;source&gt;:/home/user/.kde/share/apps/kmail/ ./apps/kmail</i></b></p>
<p>NOTE: the above needs to be done, because the &lt;&#8230;&gt;kmail directory always contains info, even if the mail was not residing there (such as account:@host:port for various pop accounts, autosave info, etc.)</p>
<p>&lt;target&gt;/home/user/.kde/share$ <b><i>rsync </i></b><b><i>-avze ssh </i></b><b><i>user@&lt;source&gt;:/home/user/.kde/share/config/kmailrc* ./config/</i></b></p>
<p>NOTE: the above copies all versions of configuration files, but the really important one is kmailrc, so the command above may be used w/out the wildcard (*)</p>
<p>&lt;target&gt;/home/user/.kde/share$ <b><i>rsync </i></b><b><i>-avze ssh </i></b><b><i>user@&lt;source&gt;:/home/user/.kde/share/apps/kabc/ ./apps/kabc</i></b></p>
<p>NOTE: the above copies the address-book(s) (std.vcf + associated files)</p>
<p>&lt;target&gt;/home/user/.kde/share$ <i><b>rsync </b></i><b><i>-avze ssh </i></b><i><b>user@&lt;source&gt;:/home/user/.kde/share/config/emailidentities ./config/</b></i></p>
<p>NOTE: the above copies all email identities you (may) have configured to use with kmail (usually associated with multiple accounts, of course)</p>
<p>&lt;target&gt;/home/user/.kde/share$ <b><i>vi ./config/kmailrc</i></b> ==&gt; make sure you have the line:</p>
<p><b><i>folders =  $HOME/.kde/share/apps/kmail</i></b></p>
<p>That&#8217;s it!</p>
<p>P.S. If deciding to use the above method to continuously backup kmail, instead of just migrating it from one system to another, then add a <b><i>&#8211;delete</i></b> option to the <b><i>rsync</i></b> command</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=32&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/10/29/migrating-kmail-between-systems/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>Nokia E61 and video creation with MacOSX</title>
		<link>http://netfortius.wordpress.com/2007/05/21/nokia-e61-and-video-creation-with-macosx/</link>
		<comments>http://netfortius.wordpress.com/2007/05/21/nokia-e61-and-video-creation-with-macosx/#comments</comments>
		<pubDate>Mon, 21 May 2007 13:29:32 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Multimedia]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/05/21/nokia-e61-and-video-creation-with-macosx/</guid>
		<description><![CDATA[The [set of] tool[s] needed to produce a properly encoded movie for the Nokia E61 [fantastic!] smartphone is called ffmpegX.
The most successful outcome of movie encoding for this platform (video and audio) I was able to obtain was by using the following configuration:
* Quick preset (pull down list): 3gp (this one doesn&#8217;t really matter that [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The [set of] tool[s] needed to produce a properly encoded movie for the Nokia E61 [fantastic!] smartphone is called <a href="http://homepage.mac.com/major4/">ffmpegX</a>.</p>
<p>The most successful outcome of movie encoding for this platform (video and audio) I was able to obtain was by using the following configuration:</p>
<p>* Quick preset (pull down list): 3gp (this one doesn&#8217;t really matter that much, as I had to modify both the Video and Audio codecs, as described below, but found it to be delivering the closest defaults &#8230; or at least I think so :))</p>
<p>* Video Codec (video tab): MPEG4[.MP4] (ffmpeg) with Video Bitrate = 720 &amp; Video Size = 320&#215;240 (or 320 + autosize 4:3) &amp; Framerate = 12.5</p>
<p>* Audio Codec (audio tab): AAC (MOV/MP4/3GP) with Audio Bitrate = 160 &amp; Sampling = 44100 &amp; Channels: Stereo</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=31&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/05/21/nokia-e61-and-video-creation-with-macosx/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>network tools #1</title>
		<link>http://netfortius.wordpress.com/2007/02/13/network-tools-1/</link>
		<comments>http://netfortius.wordpress.com/2007/02/13/network-tools-1/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 02:01:15 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/02/13/network-tools-1/</guid>
		<description><![CDATA[Yet another place-holder for (less popular than the likes of Wireshark - no need to repeat those) tools I have found useful in my years of toying with networking and security:
* a set of of tools, all packaged very nicely (merci, Laurent!), working on either Linux, *BSD, MacOSX (have I ever mentioned that this is [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yet another place-holder for (less popular than the likes of <a href="http://wireshark.org/">Wireshark</a> - no need to repeat those) tools I have found useful in my years of toying with networking and security:</p>
<p>* a set of of tools, all packaged very nicely (merci, Laurent!), working on either Linux, *BSD, MacOSX (have I ever mentioned that this is my platform of choice ? - having switched from Linux a few years ago) or even Windows: <a href="http://www.laurentconstantin.com/en/netw/">Netwib/ox/ag</a>. Could be used either via a friendly GUI (NetwAG), or simply from the command line (NetwOX). The <a href="http://www.laurentconstantin.com/common/netw/netwox/download/v5/toollist.txt">content of this toolbox</a> is simply amazing!</p>
<p>* one of my all-time favorite set of tools: <a href="http://www.ntop.org/overview.html">ntop</a> and <a href="http://www.ntop.org/nProbe.html">nProbe</a>. The first one - an amazing web-based network traffic analyzer, capable of working on either captured traffic mode, and/or in combination with netflow or sflow. The second one is a software probe that could capture traffic and process it in netflow format, to be sent - then - to analyzers of such (I use it extensively where Cisco netflow is not available).</p>
<p>* <a href="http://www.opennms.org/index.php/Main_Page">OpenNMS</a> is a full-blown, open source Network Management solution. Its authors compare it with an enterprise-grade tool like HP OpenView. I personally consider it - alongside <a href="http://nagios.org/">Nagios</a> - a fantastic solution for centralized monitoring (a sort of informational portal)</p>
<p>* somehow related to the above, in the category of portal-like monitoring tool, with RRD-based graph trending capabilities is <a href="http://cacti.net/">Cacti</a> - another favorite of mine.</p>
<p>* &#8220;sitting&#8221; in between Cacti and the previous two NMS tools is the <a href="http://www.jffnms.org/">&#8216;Just For Fun&#8217; NMS</a> - which is an SNMP + syslog capable NMS. I have not used it in a long time, but its updated info may convince me to give it another swirl one of these days</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=30&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/02/13/network-tools-1/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>google usage &#8230; nice</title>
		<link>http://netfortius.wordpress.com/2007/02/13/google-usage-nice/</link>
		<comments>http://netfortius.wordpress.com/2007/02/13/google-usage-nice/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 13:46:28 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Science]]></category>

		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/02/13/google-usage-nice/</guid>
		<description><![CDATA[Very nice (and useful!) usage of Google search capabilities for real scientific info.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Very nice (and useful!) usage of Google search capabilities for <a href="http://www.google.com/coop/cse?cx=008957609356441269197%3A-dtf6fd1j48">real scientific</a> info.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=29&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/02/13/google-usage-nice/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>about fitness</title>
		<link>http://netfortius.wordpress.com/2007/01/30/about-fitness/</link>
		<comments>http://netfortius.wordpress.com/2007/01/30/about-fitness/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 12:17:13 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/01/30/about-fitness/</guid>
		<description><![CDATA[John Wilkins wrote in his blog:
&#8220;Fitness is a property of a competing variant in a population. It means that X, whatever it might be biologically, is increasing in its frequency in a population faster than its competing variants. X can be a gene, or a trait, or even an entire organism&#8217;s form and functionality.
What fitness [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>John Wilkins wrote in his <a href="http://scienceblogs.com/evolvingthoughts/2007/01/fitness.php">blog</a>:</p>
<p><em>&#8220;Fitness is a property of a competing variant in a population. It means that X, whatever it might be biologically, is increasing in its frequency in a population faster than its competing variants. X can be a gene, or a trait, or even an entire organism&#8217;s form and functionality.</em></p>
<p><em>What fitness isn&#8217;t, is something absolute. There&#8217;s no universal measure of fitness that applies to all organisms. Every different kind of biological variant is only fit or not compared to the other variants in its population, whether that&#8217;s a local population, or a gene pool, or even a smaller group like a kin group (an extended family). Fitness is relative, literally and figuratively.&#8221;</em></p>
<p>&#8230; and, in one of his own blog-follow-up comments:</p>
<p><em>&#8220;&#8230; I think that fitness is a rate of frequency change, is that it provides a momentum view of fitness - it&#8217;s the rate right now at which the frequency of that X is changing, irrespective of what happened in the past or will happen in the future. This is how I get over the generation issue.</em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=28&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/01/30/about-fitness/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
		<item>
		<title>cryptolinguistics - well said!</title>
		<link>http://netfortius.wordpress.com/2007/01/29/cryptolinguistics-well-said/</link>
		<comments>http://netfortius.wordpress.com/2007/01/29/cryptolinguistics-well-said/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 14:40:40 +0000</pubDate>
		<dc:creator>netfortius</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://netfortius.wordpress.com/2007/01/29/cryptolinguistics-well-said/</guid>
		<description><![CDATA[From Matt Blaze&#8217;s blog:
We often say that researchers break poor security systems and that feats of cryptanalysis involve cracking codes. As natural and dramatic as this shorthand may be, it propagates a subtle and insidious fallacy that confuses discovery with causation. Unsound security systems are &#8220;broken&#8221; from the start, whether we happen to know about [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>From <a href="http://www.crypto.com/blog/cryptolinguistics/">Matt Blaze&#8217;s</a> blog:</p>
<p><em>We often say that researchers break poor security systems and that feats of cryptanalysis involve cracking codes. As natural and dramatic as this shorthand may be, it propagates a subtle and insidious fallacy that confuses discovery with causation. <strong>Unsound security systems are &#8220;broken&#8221; from the start, whether we happen to know about it yet or not. But we talk (and write) as if the people who investigate and warn us of flaws are responsible for having put them there in the first place.</strong></em></p>
<p><em>Words matter, and I think this sloppy language has had a small, but very real, corrosive effect on progress in the field. It implicitly taints even the most mainstream security research with a vaguely disreputable, suspect tinge. How to best disclose newly found vulnerabilities raises enough difficult questions by itself; let&#8217;s try to avoid phrasing that inadvertently blames the messenger before we even learn the message.</em></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/netfortius.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/netfortius.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/netfortius.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/netfortius.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/netfortius.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/netfortius.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/netfortius.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/netfortius.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/netfortius.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/netfortius.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/netfortius.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/netfortius.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=netfortius.wordpress.com&blog=550442&post=27&subd=netfortius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://netfortius.wordpress.com/2007/01/29/cryptolinguistics-well-said/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/netfortius-128.jpg" medium="image">
			<media:title type="html">netfortius</media:title>
		</media:content>
	</item>
	</channel>
</rss>