<?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>Radiumquelle</title>
	<atom:link href="http://radiumquelle.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://radiumquelle.de</link>
	<description>Allerlei Wissenswertes</description>
	<lastBuildDate>Thu, 03 Nov 2011 15:37:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>typisches tar  für tape-backups</title>
		<link>http://radiumquelle.de/2011/08/23/typisches-tar-fur-tape-backups/</link>
		<comments>http://radiumquelle.de/2011/08/23/typisches-tar-fur-tape-backups/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 20:58:08 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=104</guid>
		<description><![CDATA[tar --checkpoint=10 --blocking-factor=128 --checkpoint-action=dot --totals -cvMRf /dev/st0 &#60;FILES&#62; --checkpoint macht alle 10 records die action aus --checkpoint-action. dot ist die ausgabe eines punktes. --blocking-factor 128 macht die records 512 x 128 bytes groß.]]></description>
			<content:encoded><![CDATA[<p><code>tar --checkpoint=10 --blocking-factor=128 --checkpoint-action=dot --totals -cvMRf /dev/st0 &lt;FILES&gt;</code><br />
<code>--checkpoint</code> macht alle 10 records die action aus<code> --checkpoint-action</code>. dot ist die ausgabe eines punktes. <code>--blocking-factor 128</code> macht die records 512 x 128 bytes groß.</p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/08/23/typisches-tar-fur-tape-backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feine Backups unter Windows mit ROBOCOPY</title>
		<link>http://radiumquelle.de/2011/08/17/feine-backups-unter-windows-mit-robocopy/</link>
		<comments>http://radiumquelle.de/2011/08/17/feine-backups-unter-windows-mit-robocopy/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 16:07:50 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=99</guid>
		<description><![CDATA[Syntax robocopy &#60;Source&#62; &#60;Destination&#62; [&#60;File&#62;[ ...]] [&#60;Options&#62;] Parameters Parameter Description &#60;Source&#62; Specifies the path to the source directory. &#60;Destination&#62; Specifies the path to the destination directory. &#60;File&#62; Specifies the file or files to be copied. You can use wildcard characters (* or ?), if you want. If the File parameter is not specified, *.* is [...]]]></description>
			<content:encoded><![CDATA[<h2>Syntax</h2>
<div id="sectionSection0">
<div><a name="CodeSpippet0"></a></p>
<div>
<div id="CodeSnippetContainerCode0">
<div>
<pre>robocopy &lt;Source&gt; &lt;Destination&gt; [&lt;File&gt;[ ...]] [&lt;Options&gt;]</pre>
</div>
</div>
</div>
</div>
</div>
<h2>Parameters</h2>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Parameter</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">&lt;Source&gt;</td>
<td colspan="1">Specifies the path to the source directory.</td>
</tr>
<tr>
<td colspan="1">&lt;Destination&gt;</td>
<td colspan="1">Specifies the path to the destination directory.</td>
</tr>
<tr>
<td colspan="1">&lt;File&gt;</td>
<td colspan="1">Specifies the file or files to be copied. You can use wildcard characters (<strong>*</strong> or <strong>?</strong>), if you want. If the <strong>File</strong> parameter is not specified, <strong>*.*</strong> is used as the default value.</td>
</tr>
<tr>
<td colspan="1">&lt;Options&gt;</td>
<td colspan="1">Specifies options to be used with the <strong>robocopy</strong> command.</td>
</tr>
</tbody>
</table>
<h4>Copy options</h4>
<div>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Option</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">/s</td>
<td colspan="1">Copies subdirectories. Note that this option excludes empty directories.</td>
</tr>
<tr>
<td colspan="1">/e</td>
<td colspan="1">Copies subdirectories. Note that this option includes empty directories. For additional information, see <a href="http://technet.microsoft.com/en-us/library/cc733145%28WS.10%29.aspx#BKMK_remarks">Remarks</a>.</td>
</tr>
<tr>
<td colspan="1">/lev:&lt;N&gt;</td>
<td colspan="1">Copies only the top <em>N</em> levels of the source directory tree.</td>
</tr>
<tr>
<td colspan="1">/z</td>
<td colspan="1">Copies files in Restart mode.</td>
</tr>
<tr>
<td colspan="1">/b</td>
<td colspan="1">Copies files in Backup mode.</td>
</tr>
<tr>
<td colspan="1">/zb</td>
<td colspan="1">Uses Restart mode. If access is denied, this option uses Backup mode.</td>
</tr>
<tr>
<td colspan="1">/efsraw</td>
<td colspan="1">Copies all encrypted files in EFS RAW mode.</td>
</tr>
<tr>
<td colspan="1">/copy:&lt;CopyFlags&gt;</td>
<td colspan="1">Specifies the file properties to be copied. The following are the valid values for this option:</p>
<p><strong>D</strong> Data</p>
<p><strong>A</strong> Attributes</p>
<p><strong>T</strong> Time stamps</p>
<p><strong>S</strong> NTFS access control list (ACL)</p>
<p><strong>O</strong> Owner information</p>
<p><strong>U</strong> Auditing information</p>
<p>The default value for <strong>CopyFlags</strong> is <strong>DAT </strong>(data, attributes, and time stamps).</td>
</tr>
<tr>
<td colspan="1">/dcopy:T</td>
<td colspan="1">Copies directory time stamps.</td>
</tr>
<tr>
<td colspan="1">/sec</td>
<td colspan="1">Copies files with security (equivalent to <strong>/copy:DAT</strong>).</td>
</tr>
<tr>
<td colspan="1">/copyall</td>
<td colspan="1">Copies all file information (equivalent to <strong>/copy:DATSOU</strong>).</td>
</tr>
<tr>
<td colspan="1">/nocopy</td>
<td colspan="1">Copies no file information (useful with <strong>/purge</strong>).</td>
</tr>
<tr>
<td colspan="1">/secfix</td>
<td colspan="1">Fixes file security on all files, even skipped ones.</td>
</tr>
<tr>
<td colspan="1">/timfix</td>
<td colspan="1">Fixes file times on all files, even skipped ones.</td>
</tr>
<tr>
<td colspan="1">/purge</td>
<td colspan="1">Deletes destination files and directories that no longer exist in the source. For additional information, see <a href="http://technet.microsoft.com/en-us/library/cc733145%28WS.10%29.aspx#BKMK_remarks">Remarks</a>.</td>
</tr>
<tr>
<td colspan="1">/mir</td>
<td colspan="1">Mirrors a directory tree (equivalent to <strong>/e</strong> plus <strong>/purge</strong>). For additional information, see <a href="http://technet.microsoft.com/en-us/library/cc733145%28WS.10%29.aspx#BKMK_remarks">Remarks</a>.</td>
</tr>
<tr>
<td colspan="1">/mov</td>
<td colspan="1">Moves files, and deletes them from the source after they are copied.</td>
</tr>
<tr>
<td colspan="1">/move</td>
<td colspan="1">Moves files and directories, and deletes them from the source after they are copied.</td>
</tr>
<tr>
<td colspan="1">/a+:[RASHCNET]</td>
<td colspan="1">Adds the specified attributes to copied files.</td>
</tr>
<tr>
<td colspan="1">/a-:[RASHCNET]</td>
<td colspan="1">Removes the specified attributes from copied files.</td>
</tr>
<tr>
<td colspan="1">/create</td>
<td colspan="1">Creates a directory tree and zero-length files only.</td>
</tr>
<tr>
<td colspan="1">/fat</td>
<td colspan="1">Creates destination files by using 8.3 character-length FAT file names only.</td>
</tr>
<tr>
<td colspan="1">/256</td>
<td colspan="1">Turns off support for very long paths (longer than 256 characters).</td>
</tr>
<tr>
<td colspan="1">/mon:&lt;N&gt;</td>
<td colspan="1">Monitors the source, and runs again when more than <em>N</em> changes are detected.</td>
</tr>
<tr>
<td colspan="1">/mot:&lt;M&gt;</td>
<td colspan="1">Monitors source, and runs again in <em>M</em> minutes if changes are detected.</td>
</tr>
<tr>
<td colspan="1">/rh:hhmm-hhmm</td>
<td colspan="1">Specifies run times when new copies may be started.</td>
</tr>
<tr>
<td colspan="1">/pf</td>
<td colspan="1">Checks run times on a per-file (not per-pass) basis.</td>
</tr>
<tr>
<td colspan="1">/ipg:n</td>
<td colspan="1">Specifies the inter-packet gap to free bandwidth on slow lines.</td>
</tr>
<tr>
<td colspan="1">/sl</td>
<td colspan="1">Copies the symbolic link instead of the target.</td>
</tr>
</tbody>
</table>
<div>
<table>
<tbody>
<tr>
<th align="left"><img id="Important" title="Important" src="http://i.technet.microsoft.com/Hash/030c41d9079671d09a62d8e2c1db6973.gif" alt="Important" />Important</th>
</tr>
<tr>
<td>When using the <strong>/SECFIX</strong>copy option, specify the type of security information you want to copy by also using one of these additional copy options:</p>
<ul>
<li><strong>/COPYALL</strong></li>
<li><strong>/COPY:O</strong></li>
<li><strong>/COPY:S</strong></li>
<li><strong>/COPY:U</strong></li>
<li><strong>/SEC</strong></li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
</div>
</div>
<h4>File selection options</h4>
<div>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Option</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">/a</td>
<td colspan="1">Copies only files for which the <strong>Archive</strong> attribute is set.</td>
</tr>
<tr>
<td colspan="1">/m</td>
<td colspan="1">Copies only files for which the <strong>Archive</strong> attribute is set, and resets the <strong>Archive</strong> attribute.</td>
</tr>
<tr>
<td colspan="1">/ia:[RASHCNETO]</td>
<td colspan="1">Includes only files for which any of the specified attributes are set.</td>
</tr>
<tr>
<td colspan="1">/xa:[RASHCNETO]</td>
<td colspan="1">Excludes files for which any of the specified attributes are set.</td>
</tr>
<tr>
<td colspan="1">/xf &lt;FileName&gt;[ ...]</td>
<td colspan="1">Excludes files that match the specified names or paths. Note that <em>FileName</em> can include wildcard characters (<strong>*</strong> and <strong>?</strong>).</td>
</tr>
<tr>
<td colspan="1">/xd &lt;Directory&gt;[ ...]</td>
<td colspan="1">Excludes directories that match the specified names and paths.</td>
</tr>
<tr>
<td colspan="1">/xct</td>
<td colspan="1">Excludes changed files.</td>
</tr>
<tr>
<td colspan="1">/xn</td>
<td colspan="1">Excludes newer files.</td>
</tr>
<tr>
<td colspan="1">/xo</td>
<td colspan="1">Excludes older files.</td>
</tr>
<tr>
<td colspan="1">/xx</td>
<td colspan="1">Excludes extra files and directories.</td>
</tr>
<tr>
<td colspan="1">/xl</td>
<td colspan="1">Excludes &#8220;lonely&#8221; files and directories.</td>
</tr>
<tr>
<td colspan="1">/is</td>
<td colspan="1">Includes the same files.</td>
</tr>
<tr>
<td colspan="1">/it</td>
<td colspan="1">Includes &#8220;tweaked&#8221; files.</td>
</tr>
<tr>
<td colspan="1">/max:&lt;N&gt;</td>
<td colspan="1">Specifies the maximum file size (to exclude files bigger than <em>N</em> bytes).</td>
</tr>
<tr>
<td colspan="1">/min:&lt;N&gt;</td>
<td colspan="1">Specifies the minimum file size (to exclude files smaller than <em>N</em> bytes).</td>
</tr>
<tr>
<td colspan="1">/maxage:&lt;N&gt;</td>
<td colspan="1">Specifies the maximum file age (to exclude files older than <em>N</em> days or date).</td>
</tr>
<tr>
<td colspan="1">/minage:&lt;N&gt;</td>
<td colspan="1">Specifies the minimum file age (exclude files newer than <em>N</em> days or date).</td>
</tr>
<tr>
<td colspan="1">/maxlad:&lt;N&gt;</td>
<td colspan="1">Specifies the maximum last access date (excludes files unused since <em>N</em>).</td>
</tr>
<tr>
<td colspan="1">/minlad:&lt;N&gt;</td>
<td colspan="1">Specifies the minimum last access date (excludes files used since <em>N</em>) If <em>N</em> is less than 1900, <em>N</em> specifies the number of days. Otherwise, <em>N</em> specifies a date in the format YYYYMMDD.</td>
</tr>
<tr>
<td colspan="1">/xj</td>
<td colspan="1">Excludes junction points, which are normally included by default.</td>
</tr>
<tr>
<td colspan="1">/fft</td>
<td colspan="1">Assumes FAT file times (two-second precision).</td>
</tr>
<tr>
<td colspan="1">/dst</td>
<td colspan="1">Compensates for one-hour DST time differences.</td>
</tr>
<tr>
<td colspan="1">/xjd</td>
<td colspan="1">Excludes junction points for directories.</td>
</tr>
<tr>
<td colspan="1">/xjf</td>
<td colspan="1">Excludes junction points for files.</td>
</tr>
</tbody>
</table>
</div>
<h4>Retry options</h4>
<div>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Option</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">/r:&lt;N&gt;</td>
<td colspan="1">Specifies the number of retries on failed copies. The default value of <em>N</em> is 1,000,000 (one million retries).</td>
</tr>
<tr>
<td colspan="1">/w:&lt;N&gt;</td>
<td colspan="1">Specifies the wait time between retries, in seconds. The default value of <em>N</em> is 30 (wait time 30 seconds).</td>
</tr>
<tr>
<td colspan="1">/reg</td>
<td colspan="1">Saves the values specified in the <strong>/r</strong> and <strong>/w</strong> options as default settings in the registry.</td>
</tr>
<tr>
<td colspan="1">/tbd</td>
<td colspan="1">Specifies that the system will wait for share names to be defined (retry error 67).</td>
</tr>
</tbody>
</table>
</div>
<h4>Logging options</h4>
<div>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Option</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">/l</td>
<td colspan="1">Specifies that files are to be listed only (and not copied, deleted, or time stamped).</td>
</tr>
<tr>
<td colspan="1">/x</td>
<td colspan="1">Reports all extra files, not just those that are selected.</td>
</tr>
<tr>
<td colspan="1">/v</td>
<td colspan="1">Produces verbose output, and shows all skipped files.</td>
</tr>
<tr>
<td colspan="1">/ts</td>
<td colspan="1">Includes source file time stamps in the output.</td>
</tr>
<tr>
<td colspan="1">/fp</td>
<td colspan="1">Includes the full path names of the files in the output.</td>
</tr>
<tr>
<td colspan="1">/bytes</td>
<td colspan="1">Prints sizes, as bytes.</td>
</tr>
<tr>
<td colspan="1">/ns</td>
<td colspan="1">Specifies that file sizes are not to be logged.</td>
</tr>
<tr>
<td colspan="1">/nc</td>
<td colspan="1">Specifies that file classes are not to be logged.</td>
</tr>
<tr>
<td colspan="1">/nfl</td>
<td colspan="1">Specifies that file names are not to be logged.</td>
</tr>
<tr>
<td colspan="1">/ndl</td>
<td colspan="1">Specifies that directory names are not to be logged.</td>
</tr>
<tr>
<td colspan="1">/np</td>
<td colspan="1">Specifies that the progress of the copying operation (the number of files or directories copied so far) will not be displayed.</td>
</tr>
<tr>
<td colspan="1">/eta</td>
<td colspan="1">Shows the estimated time of arrival (ETA) of the copied files.</td>
</tr>
<tr>
<td colspan="1">/log:&lt;LogFile&gt;</td>
<td colspan="1">Writes the status output to the log file (overwrites the existing log file).</td>
</tr>
<tr>
<td colspan="1">/log+:&lt;LogFile&gt;</td>
<td colspan="1">Writes the status output to the log file (appends the output to the existing log file).</td>
</tr>
<tr>
<td colspan="1">/unicode</td>
<td colspan="1">Displays the status output as Unicode text.</td>
</tr>
<tr>
<td colspan="1">/unilog:&lt;LogFile&gt;</td>
<td colspan="1">Writes the status output to the log file as Unicode text (overwrites the existing log file).</td>
</tr>
<tr>
<td colspan="1">/unilog+:&lt;LogFile&gt;</td>
<td colspan="1">Writes the status output to the log file as Unicode text (appends the output to the existing log file).</td>
</tr>
<tr>
<td colspan="1">/tee</td>
<td colspan="1">Writes the status output to the console window, as well as to the log file.</td>
</tr>
<tr>
<td colspan="1">/njh</td>
<td colspan="1">Specifies that there is no job header.</td>
</tr>
<tr>
<td colspan="1">/njs</td>
<td colspan="1">Specifies that there is no job summary.</td>
</tr>
</tbody>
</table>
</div>
<h4>Job options</h4>
<div>
<h3></h3>
<table>
<tbody>
<tr>
<th colspan="1">Option</th>
<th colspan="1">Description</th>
</tr>
<tr>
<td colspan="1">/job:&lt;JobName&gt;</td>
<td colspan="1">Specifies that parameters are to be derived from the named job file.</td>
</tr>
<tr>
<td colspan="1">/save:&lt;JobName&gt;</td>
<td colspan="1">Specifies that parameters are to be saved to the named job file.</td>
</tr>
<tr>
<td colspan="1">/quit</td>
<td colspan="1">Quits after processing command line (to view parameters).<strong>/nosd</strong>:</td>
</tr>
<tr>
<td colspan="1">/nodd</td>
<td colspan="1">Indicates that no destination directory is specified.</td>
</tr>
<tr>
<td colspan="1">/if</td>
<td colspan="1">Includes the specified files.</td>
</tr>
</tbody>
</table>
</div>
<h4>Remarks</h4>
<p>The <strong>/mir</strong> option is equivalent to the <strong>/e</strong> plus <strong>/purge</strong> options with one small difference in behavior:</p>
<ul>
<li>With the <strong>/e</strong> plus <strong>/purge</strong> options, if the destination directory exists, the destination directory security settings are not overwritten.</li>
<li>With the <strong>/mir</strong> option, if the destination directory exists, the destination directory security settings are overwritten.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/08/17/feine-backups-unter-windows-mit-robocopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keine Leistungsmessung unter Vista</title>
		<link>http://radiumquelle.de/2011/08/06/keine-leistungsmessung-unter-vista/</link>
		<comments>http://radiumquelle.de/2011/08/06/keine-leistungsmessung-unter-vista/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 19:50:09 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=94</guid>
		<description><![CDATA[Einfache Heilung: Administrator-Prompt lodctr /r Info: Die Leistungsindikatoreinstellung konnte erfolgreich aus dem Systemsicherungsspeicher neu erstellt werden.]]></description>
			<content:encoded><![CDATA[<p>Einfache Heilung: Administrator-Prompt</p>
<p><code>lodctr /r</code></p>
<p><code>Info: Die Leistungsindikatoreinstellung konnte erfolgreich aus dem Systemsicherungsspeicher neu erstellt werden.</code></p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/08/06/keine-leistungsmessung-unter-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OKI Microline 182 Textdruck unter Linux</title>
		<link>http://radiumquelle.de/2011/07/30/oki-microline-182-textdruck-unter-linux/</link>
		<comments>http://radiumquelle.de/2011/07/30/oki-microline-182-textdruck-unter-linux/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 22:17:16 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=86</guid>
		<description><![CDATA[Zunächst den Drucker per DIP-Switch auf deutsch umstellen (siehe beigefügte Grafik). Exemplarische Transformationen für einen UTF-8 Text zum direkten Druck auf ein Blatt DIN A5 Papier: cat text.txt &#124; recode UTF-8..IBM437/CR-LF &#124; tr '\204\224\201\216\231\232\341' '{&#124;}[\\]~' &#124; sed 's/\o100/\o033\o041\o100\o100\o033\o041\o103/g' &#124; fold -s -w 50 &#124; pr -l 38 -w 50 tr '\204\224\201\216\231\232\341' '{&#124;}[\\]~' schreibt die deutschen [...]]]></description>
			<content:encoded><![CDATA[<p>Zunächst den Drucker per DIP-Switch auf deutsch umstellen (siehe beigefügte Grafik).</p>
<p><a href="http://radiumquelle.de/wp-content/uploads/2011/07/OKI-182-DIP-Switches-1.png"><img src="http://radiumquelle.de/wp-content/uploads/2011/07/OKI-182-DIP-Switches-1.png" alt="" title="OKI 182 DIP Switches 1" width="661" height="590" class="aligncenter size-full wp-image-89" /></a></p>
<p>Exemplarische Transformationen für einen UTF-8 Text zum direkten Druck auf ein Blatt DIN A5 Papier:</p>
<p><code>cat text.txt | recode UTF-8..IBM437/CR-LF  | tr '\204\224\201\216\231\232\341' '{|}[\\]~' | sed 's/\o100/\o033\o041\o100\o100\o033\o041\o103/g' | fold -s -w 50 | pr -l 38 -w 50</code></p>
<p><code>tr '\204\224\201\216\231\232\341' '{|}[\\]~'</code> schreibt die deutschen Umlaute und das &#8220;ß&#8221; um und <code>sed 's/\o100/\o033\o041\o100\o100\o033\o041\o103/g'</code> schaltet für den Klammeraffen @ kurzzeitig wieder auf amerikanischen Zeichensatz um. <code>fold</code> und <code>pr</code> formatieren den Text für die kleine DIN A5 Seite mit Datum und Seitenzahlen.</p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/07/30/oki-microline-182-textdruck-unter-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLAN mit Proxim Orinoco Silver unter Redhat 9</title>
		<link>http://radiumquelle.de/2011/01/11/wlan-mit-proxim-orinoco-silver-unter-redhat-9/</link>
		<comments>http://radiumquelle.de/2011/01/11/wlan-mit-proxim-orinoco-silver-unter-redhat-9/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 22:59:27 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=80</guid>
		<description><![CDATA[Eine der wenigen funktionsfähigen CardBus Wlan Karten für den Einsatz in alten Laptops (zB. Toshiba Satellite Pro 430 CDT). Label: Proxim IEEE 802.11b PC-Card Orinoco Silver Model 8241-WD Proxim Corporation 8420-WD, 842X Agere Systems 0110-PC Treiber wl_lkm_714_release.tar Das ganze Ding unter Redhat 9 zusammenbacken: wget http://pcmcia-cs.sourceforge.net/ftp/pcmcia-cs-3.2.7.tar.gz wget http://radiumquelle.de/wp-content/uploads/2011/01/wl_lkm_714_release.tar.gz tar xvzf pcmcia-cs-3.2.7.tar.gz cd pcmcia-cs-3.2.7/ tar xvzf [...]]]></description>
			<content:encoded><![CDATA[<p>Eine der wenigen funktionsfähigen CardBus Wlan Karten für den Einsatz in alten Laptops (zB. Toshiba Satellite Pro 430 CDT).</p>
<p>Label:</p>
<p>Proxim IEEE 802.11b PC-Card Orinoco Silver<br />
Model 8241-WD<br />
Proxim Corporation 8420-WD, 842X Agere Systems 0110-PC</p>
<p>Treiber <a href="http://radiumquelle.de/wp-content/uploads/2011/01/wl_lkm_714_release.tar.gz">wl_lkm_714_release.tar</a></p>
<p>Das ganze Ding unter Redhat 9 zusammenbacken:<br />
<code>wget http://pcmcia-cs.sourceforge.net/ftp/pcmcia-cs-3.2.7.tar.gz<br />
wget http://radiumquelle.de/wp-content/uploads/2011/01/wl_lkm_714_release.tar.gz<br />
tar xvzf pcmcia-cs-3.2.7.tar.gz<br />
cd pcmcia-cs-3.2.7/<br />
tar xvzf ../wl_lkm_714_release.tar.gz<br />
./Configure<br />
./Build<br />
./Install<br />
/etc/init.d/pcmcia restart<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/01/11/wlan-mit-proxim-orinoco-silver-unter-redhat-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fonts bei xclock verändern</title>
		<link>http://radiumquelle.de/2011/01/08/fonts-bei-xclock-verandern/</link>
		<comments>http://radiumquelle.de/2011/01/08/fonts-bei-xclock-verandern/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 20:13:28 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[X]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=77</guid>
		<description><![CDATA[Um xclock zur Anzeige von X-Toolset kompatiblen Fonts zu bewegen, ist die option -norender nötig. Beispiel: xclock -digital -twentyfour -update 1 -chime -padding 4 -bg gray8 -fg green -strftime "%H:%M:%S %A %d.%m.%Y KW%V" -font "-Schumacher-*-medium-r-*-*-12-*-*-*-*-*-*-*"]]></description>
			<content:encoded><![CDATA[<p>Um xclock zur Anzeige von X-Toolset kompatiblen Fonts zu bewegen, ist die option <code>-norender</code> nötig. Beispiel:</p>
<p><code>xclock -digital -twentyfour -update 1 -chime -padding 4 -bg gray8 -fg green</code><code><br />
-strftime "%H:%M:%S %A %d.%m.%Y KW%V"<br />
-font "-Schumacher-*-medium-r-*-*-12-*-*-*-*-*-*-*"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2011/01/08/fonts-bei-xclock-verandern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bash String Manipulation</title>
		<link>http://radiumquelle.de/2010/12/27/bash-string-manipulation/</link>
		<comments>http://radiumquelle.de/2010/12/27/bash-string-manipulation/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 20:52:04 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=57</guid>
		<description><![CDATA[Different approaches to change string-content in bash.

<strong>String Length</strong>
<code>${#string}</code>]]></description>
			<content:encoded><![CDATA[<p>Different approaches to change string-content in bash.</p>
<p><strong>String Length</strong></p>
<p><code>${#string}</code></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
<span style="color: #007800;">stringZ</span>=abcABC123ABCabc
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${#stringZ}</span>                 <span style="color: #666666; font-style: italic;"># 15</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">expr</span> length <span style="color: #007800;">$stringZ</span><span style="color: #000000; font-weight: bold;">`</span>      <span style="color: #666666; font-style: italic;"># 15</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">expr</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$stringZ</span>&quot;</span> : <span style="color: #ff0000;">'.*'</span><span style="color: #000000; font-weight: bold;">`</span>    <span style="color: #666666; font-style: italic;"># 15</span></pre></div></div>

<p><span id="more-57"></span></p>
<p><strong>Substring Extraction</strong></p>
<p><code>${string:position}</code></p>
<p>Extracts substring from $string at $position. If the $string parameter is &#8220;*&#8221; or &#8220;@&#8221;, then this extracts the positional parameters, [1] starting at $position.</p>
<p><code>${string:position:length}</code></p>
<p>Extracts $length characters of substring from $string at $position.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
<span style="color: #007800;">stringZ</span>=abcABC123ABCabc
<span style="color: #666666; font-style: italic;">#       0123456789.....</span>
<span style="color: #666666; font-style: italic;">#       0-based indexing.</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:0}</span>                            <span style="color: #666666; font-style: italic;"># abcABC123ABCabc</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:1}</span>                            <span style="color: #666666; font-style: italic;"># bcABC123ABCabc</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:7}</span>                            <span style="color: #666666; font-style: italic;"># 23ABCabc</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:7:3}</span>                          <span style="color: #666666; font-style: italic;"># 23A</span>
                                             <span style="color: #666666; font-style: italic;"># Three characters of substring.</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Is it possible to index from the right end of the string?</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:-4}</span>                           <span style="color: #666666; font-style: italic;"># abcABC123ABCabc</span>
<span style="color: #666666; font-style: italic;"># Defaults to full string, as in ${parameter:-default}.</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ:(-4)}</span>                         <span style="color: #666666; font-style: italic;"># Cabc</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ: -4}</span>                          <span style="color: #666666; font-style: italic;"># Cabc</span></pre></div></div>

<p><strong>Substring Removal</strong><br />
<code><br />
${string#substring}</code></p>
<p>Deletes shortest match of $substring from front of $string.</p>
<p><code>${string##substring}</code></p>
<p>Deletes longest match of $substring from front of $string.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
    <span style="color: #007800;">stringZ</span>=abcABC123ABCabc
    <span style="color: #666666; font-style: italic;">#       |----|          shortest</span>
    <span style="color: #666666; font-style: italic;">#       |----------|    longest</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ#a*C}</span>      <span style="color: #666666; font-style: italic;"># 123ABCabc</span>
    <span style="color: #666666; font-style: italic;"># Strip out shortest match between 'a' and 'C'.</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ##a*C}</span>     <span style="color: #666666; font-style: italic;"># abc</span>
    <span style="color: #666666; font-style: italic;"># Strip out longest match between 'a' and 'C'.</span></pre></div></div>

<p><code>${string%substring}</code></p>
<p>Deletes shortest match of $substring from back of $string.</p>
<p><code><br />
${string%%substring}</code></p>
<p>Deletes longest match of $substring from back of $string.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
    <span style="color: #007800;">stringZ</span>=abcABC123ABCabc
    <span style="color: #666666; font-style: italic;">#                    ||     shortest</span>
    <span style="color: #666666; font-style: italic;">#        |------------|     longest</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ%b*c}</span>      <span style="color: #666666; font-style: italic;"># abcABC123ABCa</span>
    <span style="color: #666666; font-style: italic;"># Strip out shortest match between 'b' and 'c', from back of $stringZ.</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ%%b*c}</span>     <span style="color: #666666; font-style: italic;"># a</span>
    <span style="color: #666666; font-style: italic;"># Strip out longest match between 'b' and 'c', from back of $stringZ.</span></pre></div></div>

<p><strong>Substring Replacement</strong></p>
<p><code>${string/substring/replacement}</code></p>
<p>Replace first match of $substring with $replacement. [2]</p>
<p><code>${string//substring/replacement}</code></p>
<p>Replace all matches of $substring with $replacement.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
    <span style="color: #007800;">stringZ</span>=abcABC123ABCabc
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ/abc/xyz}</span>       <span style="color: #666666; font-style: italic;"># xyzABC123ABCabc</span>
                                  <span style="color: #666666; font-style: italic;"># Replaces first match of 'abc' with 'xyz'.</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ//abc/xyz}</span>      <span style="color: #666666; font-style: italic;"># xyzABC123ABCxyz</span>
                                  <span style="color: #666666; font-style: italic;"># Replaces all matches of 'abc' with # 'xyz'.</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span>  <span style="color: #660033;">---------------</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$stringZ</span>&quot;</span>               <span style="color: #666666; font-style: italic;"># abcABC123ABCabc</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span>  <span style="color: #660033;">---------------</span>
                                  <span style="color: #666666; font-style: italic;"># The string itself is not altered!</span>
&nbsp;
    <span style="color: #666666; font-style: italic;"># Can the match and replacement strings be parameterized?</span>
    <span style="color: #007800;">match</span>=abc
    <span style="color: #007800;">repl</span>=000
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ/$match/$repl}</span>  <span style="color: #666666; font-style: italic;"># 000ABC123ABCabc</span>
    <span style="color: #666666; font-style: italic;">#              ^      ^         ^^^</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ//$match/$repl}</span> <span style="color: #666666; font-style: italic;"># 000ABC123ABC000</span>
    <span style="color: #666666; font-style: italic;"># Yes!          ^      ^        ^^^         ^^^</span>
&nbsp;
    <span style="color: #7a0874; font-weight: bold;">echo</span>
&nbsp;
    <span style="color: #666666; font-style: italic;"># What happens if no $replacement string is supplied?</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ/abc}</span>           <span style="color: #666666; font-style: italic;"># ABC123ABCabc</span>
    <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ//abc}</span>          <span style="color: #666666; font-style: italic;"># ABC123ABC</span>
    <span style="color: #666666; font-style: italic;"># A simple deletion takes place.</span></pre></div></div>

<p><code>${string/#substring/replacement}</code></p>
<p>If $substring matches front end of $string, substitute $replacement for $substring</p>
<p><code>${string/%substring/replacement}</code></p>
<p>If $substring matches back end of $string, substitute $replacement for $substring.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#EXAMPLE</span>
<span style="color: #007800;">stringZ</span>=abcABC123ABCabc
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ/#abc/XYZ}</span>          <span style="color: #666666; font-style: italic;"># XYZABC123ABCabc</span>
                                      <span style="color: #666666; font-style: italic;"># Replaces front-end match of 'abc' with 'XYZ'.</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #800000;">${stringZ/%abc/XYZ}</span>          <span style="color: #666666; font-style: italic;"># abcABC123ABCXYZ</span>
                                      <span style="color: #666666; font-style: italic;"># Replaces back-end match of 'abc' with 'XYZ'.</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2010/12/27/bash-string-manipulation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FAT Laufwerk nach NTFS unter Windows NT4</title>
		<link>http://radiumquelle.de/2010/12/23/fat-laufwerk-nach-ntfs-unter-windows-nt4/</link>
		<comments>http://radiumquelle.de/2010/12/23/fat-laufwerk-nach-ntfs-unter-windows-nt4/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 22:36:12 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=53</guid>
		<description><![CDATA[CONVERT [driveletter]: /FS:NTFS. Falls es sich um die Bootpartion handelt, kann man die Umwandlung nach dem nächsten Start vornehmen lassen: Convert cannot gain exclusive access to the [driveletter]:, so it cannot convert it now. Would you like to schedule it to be converted the next time the system restarts (Y/N)?]]></description>
			<content:encoded><![CDATA[<pre>CONVERT [driveletter]: /FS:NTFS.</pre>
<p>Falls es sich um die Bootpartion handelt, kann man die Umwandlung nach dem nächsten Start vornehmen lassen:</p>
<p>Convert cannot gain exclusive access to the [driveletter]:, so it cannot convert it now. Would you like to schedule it to be converted the next time the system restarts (Y/N)?</p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2010/12/23/fat-laufwerk-nach-ntfs-unter-windows-nt4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Explorer immer mit Ordnerleiste</title>
		<link>http://radiumquelle.de/2010/12/23/windows-explorer-immer-mit-ordnerleiste/</link>
		<comments>http://radiumquelle.de/2010/12/23/windows-explorer-immer-mit-ordnerleiste/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 13:59:01 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[explorer]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=47</guid>
		<description><![CDATA[Im Explorer-Menü: Extras &#62; Ordneroptionen &#62; Dateitypen (Windows 98: Ansicht &#62; Ordneroptionen &#62; Dateitypen). In der Liste der Dateitypen Ordner auswählen. (nicht Dateiordner) Unter Windows 2000 oder ME  lautet die Datei-Erweiterung N. ZUTR , die Typenbezeichnung zeigt die Beschreibung Ordner. Dann &#62; Erweitert (Windows 98: &#62; Bearbeiten), um den Dialog Dateityp bearbeiten aufzurufen. Unter den registrierten Vorgängen [...]]]></description>
			<content:encoded><![CDATA[<p>Im Explorer-Menü: <strong>Extras </strong>&gt; <strong>Ordneroptionen </strong>&gt; <strong>Dateitypen</strong> (Windows 98: <strong>Ansicht </strong>&gt; <strong>Ordneroptionen </strong>&gt; <strong>Dateitypen</strong>). In der Liste der Dateitypen <strong>Ordner</strong> auswählen. (nicht <strong>Dateiordner</strong>)</p>
<p>Unter Windows 2000 oder ME  lautet die Datei-Erweiterung <strong>N. ZUTR</strong> , die Typenbezeichnung zeigt die Beschreibung <strong>Ordner</strong>.</p>
<p>Dann &gt; <strong>Erweitert </strong>(Windows 98: &gt; <strong>Bearbeiten</strong>), um den Dialog <strong>Dateityp bearbeiten</strong> aufzurufen. Unter den registrierten Vorgängen statt &gt; <strong>open </strong>den Eintrag &gt; <strong>explore</strong> auswählen und dann die Schaltfläche  &gt; <strong>Als Standard</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2010/12/23/windows-explorer-immer-mit-ordnerleiste/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mausrad unter Windows NT4</title>
		<link>http://radiumquelle.de/2010/12/23/mausrad-unter-windows-nt4/</link>
		<comments>http://radiumquelle.de/2010/12/23/mausrad-unter-windows-nt4/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 13:36:31 +0000</pubDate>
		<dc:creator>ulf</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[registry]]></category>

		<guid isPermaLink="false">http://radiumquelle.de/?p=40</guid>
		<description><![CDATA[Nach Servicepack 6 arbeitet ein vorhandenes Mausrad nicht mehr. Lösung in der registry: System Key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters] Value Name: EnableWheelDetection Data Type: REG_DWORD (DWORD Value) Value Data: (0 = disabled, 1 = automatic, 2 = enabled)]]></description>
			<content:encoded><![CDATA[<p>Nach Servicepack 6 arbeitet ein vorhandenes Mausrad nicht mehr. Lösung in der registry:</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">System Key: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters]
Value Name: EnableWheelDetection
Data Type: REG_DWORD (DWORD Value)
Value Data: (0 = disabled, 1 = automatic, 2 = enabled)</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://radiumquelle.de/2010/12/23/mausrad-unter-windows-nt4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

