<?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>The RoarinPenguin Techiezone</title>
	<atom:link href="http://techiezone.rottigni.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://techiezone.rottigni.net</link>
	<description>Notes, hints, tips... in one word: experience!</description>
	<lastBuildDate>Mon, 18 Jan 2010 19:03:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How do I sign a Certificate Request?</title>
		<link>http://techiezone.rottigni.net/2010/01/how-do-i-sign-a-certificate-request/</link>
		<comments>http://techiezone.rottigni.net/2010/01/how-do-i-sign-a-certificate-request/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:03:35 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[OpenSSL and PKI]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[certificate]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[sign]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2010/01/how-do-i-sign-a-certificate-request/</guid>
		<description><![CDATA[Quick not to myself since everytime I spend hours in searching it again.
The command line is:
openssl x509 –req –in &#60;path&#62;/&#60;certificate_request&#62;.csr&#160; –signkey &#60;path-to-CA-private-cert&#62;/CA-private-cert.pem –out &#60;path-to-certs-repository&#62;/signed-cert-name.pem
Hopefully next time I do not have to search it again hours and hours  
Naturally this command required to have created the request before, and to have correctly setup the CA… [...]]]></description>
			<content:encoded><![CDATA[<p>Quick not to myself since everytime I spend hours in searching it again.</p>
<p>The command line is:</p>
<p>openssl x509 –req –in &lt;path&gt;/&lt;certificate_request&gt;.csr&#160; –signkey &lt;path-to-CA-private-cert&gt;/CA-private-cert.pem –out &lt;path-to-certs-repository&gt;/signed-cert-name.pem</p>
<p>Hopefully next time I do not have to search it again hours and hours <img src='http://techiezone.rottigni.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Naturally this command required to have created the request before, and to have correctly setup the CA… but there is documentation on the ‘Net concerning <a href="http://sial.org/howto/openssl/ca/" target="_blank">these two</a> <a href="http://www.madboa.com/geek/openssl/#cert-request" target="_blank">operations</a>.</p>
<br/><p><a href="/email/?id=128" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2010/01/how-do-i-sign-a-certificate-request/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Want to know the IMAGE LABEL of my ISO file</title>
		<link>http://techiezone.rottigni.net/2010/01/want-to-know-the-image-label-of-my-iso-file/</link>
		<comments>http://techiezone.rottigni.net/2010/01/want-to-know-the-image-label-of-my-iso-file/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:07:29 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[ISO image]]></category>
		<category><![CDATA[label]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2010/01/want-to-know-the-image-label-of-my-iso-file/</guid>
		<description><![CDATA[This is something not so easy to find on the internet, and once again Linux shows its immense power in the simplest way: CLI.
Question: I have a .ISO file representing the image of a DVD and I want to know the LABEL of that DVD.
Answer: Issue the command
dd if=/&#60;path&#62;/filename.iso bs=1 skip=32808 count=32
on whatever Linux terminal.
For [...]]]></description>
			<content:encoded><![CDATA[<p>This is something not so easy to find on the internet, and once again Linux shows its immense power in the simplest way: <abbr title="Command Line Interface">CLI</abbr>.</p>
<p>Question: I have a .ISO file representing the image of a DVD and I want to know the LABEL of that DVD.</p>
<p>Answer: Issue the command</p>
<p>dd if=/&lt;path&gt;/filename.iso bs=1 skip=32808 count=32</p>
<p>on whatever Linux terminal.</p>
<p>For example, here’s what is returned for a backup copy of DVD I legally own:</p>
<blockquote><p>Input command:     <br /><font color="#0080ff">dd if=Natale\ in\ Casa\ Muppets.iso bs=1 skip=32808 count=32</font></p>
<p>Output:     <br /><font color="#0080ff">MUPPETS_CHRISTMAS_CAROL&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 32+0 records in       <br />32+0 records out        <br />32 bytes (32 B) copied, 0.00129793 s, 24.7 kB/s</font></p>
</blockquote>
<p>Enjoy!</p>
<br/><p><a href="/email/?id=126" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2010/01/want-to-know-the-image-label-of-my-iso-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uPnP Media Server with llink.</title>
		<link>http://techiezone.rottigni.net/2010/01/upnp-media-server-with-llink/</link>
		<comments>http://techiezone.rottigni.net/2010/01/upnp-media-server-with-llink/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 14:11:37 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[uPnP]]></category>

		<guid isPermaLink="false">https://techiezone.rottigni.net/?p=123</guid>
		<description><![CDATA[Let&#8217;s start this new year by referencing an excellent system I happened to find on the Internet to perform uPnP server functionality on my Linux system.
The name of the thing is LLink and although I haven&#8217;t exploited at full yet, it looks VERY promising.
Some features:

Parses various video containers: vob, avi, ts, mkv, tp, mov, m2ts, [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s start this new year by referencing an excellent system I happened to find on the Internet to perform uPnP server functionality on my Linux system.</p>
<p>The name of the thing is LLink and although I haven&#8217;t exploited at full yet, it looks VERY promising.</p>
<p>Some features:</p>
<ul>
<li>Parses various video containers: vob, avi, ts, mkv, tp, mov, m2ts, evo.</li>
<li>Streams any file type the NMT player can handle: mp3, flac, jpeg, png etc.</li>
<li>Can play straight from rar files: no more need to unrar your media. (Comes with special unrar-3.7.8-seek.)</li>
<li>SSDP / UPnP discovery support (although minimal).</li>
<li>Skin support: make your own html templates or choose from pre-built.</li>
<li>Simple iMDb querying to look up media information for Jukebox skins.</li>
<li>Both HD and SD skins available.</li>
<li>Light, tiny and clean code for Unix, OsX and Windows.</li>
<li>Paginating: support to send listings in pages, with tags for Next/Prev.</li>
<li>PlayAll cgi tag, and PlayAllFrom.</li>
<li>External subtitles: subtitle files can be consolidated in one directory.</li>
<li>libdvdnav support (and libdvdcss): provides basic playback of DVD .iso and .img files and from DVD drives.</li>
<li>UDF 2.50 BD5-ISO support: provides basic playback of Bluray and HD-DVD.</li>
</ul>
<p>Got interested? You can find more <a href="http://www.lundman.net/wiki/index.php/Llink" target="_blank">here</a>.</p>
<br/><p><a href="/email/?id=123" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2010/01/upnp-media-server-with-llink/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripting Galore &#8211; The beauty of randomic sort</title>
		<link>http://techiezone.rottigni.net/2009/12/scripting-galore-the-beauty-of-randomic-sort/</link>
		<comments>http://techiezone.rottigni.net/2009/12/scripting-galore-the-beauty-of-randomic-sort/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:57:09 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[random select]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/12/scripting-galore-the-beauty-of-randomic-sort/</guid>
		<description><![CDATA[Although it could seem an oxymore, sort something in randomic order might be usefl sometimes.
Give a look to the script below, which I’m writing here for future reference.
#!/bin/bash   #    # This script creates a list of file or symbolic link to pictures in a directory    # The [...]]]></description>
			<content:encoded><![CDATA[<p>Although it could seem an oxymore, sort something in randomic order might be usefl sometimes.</p>
<p>Give a look to the script below, which I’m writing here for future reference.</p>
<p>#!/bin/bash   <br />#    <br /># This script creates a list of file or symbolic link to pictures in a directory    <br /># The pictures are dynamically selected within a library of thousands    <br /># This is to allow a wireless frame to display daily an ever changing list    <br /># of pictures</p>
<p># Define variable to be the target directory where we put the link/pictures   <br /># This directory is regularly scanned by MediaTomb, the uPnP server talking to    <br /># the digital frame</p>
<p># Define variable to be the root directory where it will start to scan   <br /><font color="#0080c0">scandir=/media/allphotos</font></p>
<p># Clean previous contents of the directory used for streaming    <br /><font color="#0080c0">cd /var/streampix     <br />rm -rf *</font></p>
<p># Define cycle to set the max number of photos to be displayed    <br /># (like from 1 to 50 repeat)    <br /><font color="#0080c0">for i in `seq 1 50`</font></p>
<p># list the dir, pick a random file, add to the list    <br /><font color="#0080c0">do     <br />y=&quot;$(find $scandir -type f -iregex &#8216;.*\.\(bmp\|gif\|jpg\|png\)$&#8217; | sort -R | head -1)&quot;      <br />cp &quot;$y&quot; /var/streampix/      <br />done</font></p>
<p>Enjoy!</p>
<br/><p><a href="/email/?id=122" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/12/scripting-galore-the-beauty-of-randomic-sort/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scripting Galore &#8211; Copy list of files from bigger repository into another location</title>
		<link>http://techiezone.rottigni.net/2009/11/scripting-galore-copy-list-of-files-from-bigger-repository-into-another-location/</link>
		<comments>http://techiezone.rottigni.net/2009/11/scripting-galore-copy-list-of-files-from-bigger-repository-into-another-location/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 06:52:51 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[file copy]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">https://techiezone.rottigni.net/?p=120</guid>
		<description><![CDATA[I don&#8217;t consider myself a script guru, but sometimes I like to create small pieces of bash code to ease operations on my linux box&#8230; and I guess it&#8217;s good idea to note here some of the recent solutions I&#8217;ve found for later remembering.
I&#8217;ll try to comment them, so that readers will be able to [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t consider myself a script guru, but sometimes I like to create small pieces of bash code to ease operations on my linux box&#8230; and I guess it&#8217;s good idea to note here some of the recent solutions I&#8217;ve found for later remembering.</p>
<p>I&#8217;ll try to comment them, so that readers will be able to readapt them to their needs.</p>
<p>Need: I have a list of files in subdirectories under main one and I want to copy only some of them to new location. I have the list of files I need in a text file.</p>
<p><span style="font-family: 'Courier New', Courier, mono; color: #33cccc;">#!/bin/bash<br />
#<br />
DIR=root <span style="color: #333399;"># Location where the list I want to extract is located</span><br />
FILE=wantedlist <span style="color: #333399;"># with the name of the file</span><br />
DIR_VIDEO=&#8221;/media/bigdisk&#8221; <span style="color: #333399;"># Master repository containing iles in subdirectories</span><br />
COPY_DEST=&#8221;/media/externalHDD/backup&#8221; <span style="color: #333399;"># where I want to put my files</span><br />
y=`cat /$DIR/$FILE|wc -l` <span style="color: #333399;"># counting how many files I want to copy</span><br />
for i in `seq 1 $y` <span style="color: #333399;"># starting the cycle</span><br />
do<br />
<span style="color: #333399;"># I&#8217;ll copy file mentioned in every line in the text list in new location</span><br />
cp -R /$DIR_VIDEO/&#8221;`cat /$DIR/$FILE | tail -$i|head -1`&#8221; $COPY_DEST<br />
done</span></p>
<p>Please note the usage of head and tail to go line by line in reverse order <img src='http://techiezone.rottigni.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , while the cycle allows me to repeat this for each line in the text list.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">#!/bin/bash</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">#</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">DIR=root</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">FILE=listarmando</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">DIR_VIDEO=&#8221;/media/video&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">COPY_DEST=&#8221;/media/roarinnas/secondodisco&#8221;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">y=`cat /$DIR/$FILE|wc -l`</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">for i in `seq 1 $y`</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">do</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">cp -R /$DIR_VIDEO/&#8221;`cat /$DIR/$FILE | tail -$i|head -1`&#8221; $COPY_DEST</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 51px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">d</div>
<br/><p><a href="/email/?id=120" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/11/scripting-galore-copy-list-of-files-from-bigger-repository-into-another-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extending an ext3 partition on Linux (without losing data)</title>
		<link>http://techiezone.rottigni.net/2009/11/extending-an-ext3-partition-on-linux-without-losing-data/</link>
		<comments>http://techiezone.rottigni.net/2009/11/extending-an-ext3-partition-on-linux-without-losing-data/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:12:25 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[gparted]]></category>
		<category><![CDATA[partition]]></category>
		<category><![CDATA[resizing]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/11/extending-an-ext3-partition-on-linux-without-losing-data/</guid>
		<description><![CDATA[Here’s another successful operation done on fantastic Linux OS that is a pure dream for other operating systems.
Situation: I have a virtual machine with 20 GB HDD, partitioned as follows:
95% ext3 on primary partition
5% swap on first partition of extended partition
I certainly can expand my hard disk, by setting the new size in VMware configuration… [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s another successful operation done on fantastic Linux OS that is a pure dream for other operating systems.</p>
<p>Situation: I have a virtual machine with 20 GB HDD, partitioned as follows:</p>
<p>95% ext3 on primary partition</p>
<p>5% swap on first partition of extended partition</p>
<p>I certainly can expand my hard disk, by setting the new size in VMware configuration… so I brought it to 60 GB… but then I have a problem, since I cannot use tools like gparted to extend the main partition since the swap is in the middle between the two.</p>
<p>What to do? Well, again <a href="http://www.google.com" target="_blank">Google</a> <a href="http://lmgtfy.com/?q=linux+howto+tutorials+resizing+ext3+partition&amp;l=1" target="_blank">has been a best friend</a>.</p>
<p>Well done, well written, clear and… working!</p>
<br/><p><a href="/email/?id=112" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/11/extending-an-ext3-partition-on-linux-without-losing-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tunneling Apps in SSH</title>
		<link>http://techiezone.rottigni.net/2009/07/tunneling-apps-in-ssh/</link>
		<comments>http://techiezone.rottigni.net/2009/07/tunneling-apps-in-ssh/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 06:41:24 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[Putty-Winscp3]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[tunneling]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/07/tunneling-apps-in-ssh/</guid>
		<description><![CDATA[Yesterday I found a very handy functionality in Putty: tunneling apps in SSH.
Not that I did not know that this technique exist   but for the first time I tried it and worked out of the box.
The idea is to enable tunneling of insecure applications inside an established and authenticated SSH encrypted session, using [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I found a very handy functionality in Putty: tunneling apps in SSH.</p>
<p>Not that I did not know that <a href="http://www.ssh.com/support/documentation/online/ssh/winhelp/32/Tunneling_Explained.html" target="_blank">this technique exist</a> <img src='http://techiezone.rottigni.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but for the first time I tried it and worked out of the box.</p>
<p>The idea is to enable tunneling of insecure applications inside an established and authenticated SSH encrypted session, using Putty as a client.</p>
<p>Scenario in my case is that I have few web based appliances at home acting as a media center, a NAS, etc… each of them being manageable by a web based interface on various ports.</p>
<p>I could certainly open destination PAT on my router, but it would increase the risk… and I don’t trust level of security implemented in such systems.</p>
<p>Therefore I’ve done something represented in picture below</p>
<p><a href="http://techiezone.rottigni.net/wp-content/uploads/2009/07/sshtunnel.png"><img title="ssh tunnel" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="164" alt="ssh tunnel" src="http://techiezone.rottigni.net/wp-content/uploads/2009/07/sshtunnel_thumb.png" width="490" border="0" /></a> </p>
<p>How to configure it in Putty? Well, when you launch the session to connect to SSHD Server, check in SSH options – Tunnels.</p>
<p>There you find the chance to add the port forwarding parameters to be set as follows:</p>
<p><a href="http://techiezone.rottigni.net/wp-content/uploads/2009/07/puttytunnels.png"><img title="putty-tunnels" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="263" alt="putty-tunnels" src="http://techiezone.rottigni.net/wp-content/uploads/2009/07/puttytunnels_thumb.png" width="490" border="0" /></a> </p>
<p>Enjoy!</p>
<br/><p><a href="/email/?id=111" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/07/tunneling-apps-in-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enabling SPDIF sound on Ubuntu with Dell Docking station</title>
		<link>http://techiezone.rottigni.net/2009/04/enabling-spdif-sound-on-ubuntu-with-dell-docking-station/</link>
		<comments>http://techiezone.rottigni.net/2009/04/enabling-spdif-sound-on-ubuntu-with-dell-docking-station/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 23:21:16 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[sound spdif linux]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/04/enabling-spdif-sound-on-ubuntu-with-dell-docking-station/</guid>
		<description><![CDATA[Should you come across the same need, I just found a working solution, even if quite odd.
The trick to get it working is to go into sound settings and enable IEC958 Playback AC97-SPSA, checking that volume is set to… 0.
Magically sound will begin to flow out of the SPDIF interface.
 Email this post]]></description>
			<content:encoded><![CDATA[<p>Should you come across the same need, I just found a working solution, even if quite odd.</p>
<p>The trick to get it working is to go into sound settings and enable IEC958 Playback AC97-SPSA, checking that volume is set to… 0.</p>
<p>Magically sound will begin to flow out of the SPDIF interface.</p>
<br/><p><a href="/email/?id=106" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/04/enabling-spdif-sound-on-ubuntu-with-dell-docking-station/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bulk File Rename</title>
		<link>http://techiezone.rottigni.net/2009/03/bulk-file-rename/</link>
		<comments>http://techiezone.rottigni.net/2009/03/bulk-file-rename/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:51:01 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[rename]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/03/bulk-file-rename/</guid>
		<description><![CDATA[Situation:
I have multiple files with extension .sh.modified and I need to rename them all into .sh extension.
Solution:
for file in *.sh.modified; do mv ${file} ${file%sh.modified}.sh; done
 Email this post]]></description>
			<content:encoded><![CDATA[<h2>Situation:</h2>
<p>I have multiple files with extension .sh.modified and I need to rename them all into .sh extension.</p>
<h2>Solution:</h2>
<p>for file in *.sh.modified; do mv ${file} ${file%sh.modified}.sh; done</p>
<br/><p><a href="/email/?id=105" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/03/bulk-file-rename/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check for new files in a directory</title>
		<link>http://techiezone.rottigni.net/2009/03/how-to-check-for-new-files-in-a-directory/</link>
		<comments>http://techiezone.rottigni.net/2009/03/how-to-check-for-new-files-in-a-directory/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 09:41:53 +0000</pubDate>
		<dc:creator>RoarinPenguin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell scripting]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[new files]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://techiezone.rottigni.net/2009/03/how-to-check-for-new-files-in-a-directory/</guid>
		<description><![CDATA[Made this small script for this purpose…
#!/bin/bash     #      # Script to check a directory and write in file the new files       # since last check.      #      # Written by RoarinPenguin [...]]]></description>
			<content:encoded><![CDATA[<p>Made this small script for this purpose…</p>
<p><font face="Courier New" color="#0080c0" size="2">#!/bin/bash     <br />#      <br /># Script to check a directory and write in file the new files       <br /># since last check.      <br />#      <br /># Written by RoarinPenguin (</font><a href="mailto:roarinpenguin@rottigni.net"><font face="Courier New" color="#0080c0" size="2">roarinpenguin@rottigni.net</font></a><font face="Courier New" color="#0080c0" size="2">) on      <br /># </font><font face="Courier New" color="#0080c0" size="2">21 march 2009     <br /># Released under GPL License      <br />#      <br /># You need to create a file called lastcheck.time in same      <br /># directory of this script      <br />#</font></p>
<p><font face="Courier New" color="#0080c0" size="2">ADMIN=&quot;change to administrator email address&quot;     <br />DIR2MON=/var/www/dir-clienti</font></p>
<p><font face="Courier New" color="#0080c0" size="2">&gt; ./newfiles.list     <br />echo &quot;Last check for new files, done on &quot;`date` &gt;&gt; ./newfiles.list      <br />find $DIR2MON -maxdepth 5 -newer ./lastcheck.time &gt;&gt; ./newfiles.list      <br />touch ./lastcheck.time      <br /></font></p>
<br/><p><a href="/email/?id=104" rel="nofollow" title="Email this post to your friend" style="font-weight: bold;"><img src="http://techiezone.rottigni.net/wp-content/plugins/email-this/email.gif" style="border: 0px; padding: 0px; margin: 0px;" alt="Email this post"> Email this post</a></p>]]></content:encoded>
			<wfw:commentRss>http://techiezone.rottigni.net/2009/03/how-to-check-for-new-files-in-a-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
