<?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>ALeX Kazik &#187; Linux</title>
	<atom:link href="https://alex.kazik.de/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://alex.kazik.de</link>
	<description>A blog about Retrocomputing‎ and more</description>
	<lastBuildDate>Wed, 30 Mar 2022 09:54:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Copy sparsebundle to disk on Linux</title>
		<link>https://alex.kazik.de/346/write-sparsebundle/</link>
		<comments>https://alex.kazik.de/346/write-sparsebundle/#comments</comments>
		<pubDate>Fri, 27 Mar 2015 09:00:45 +0000</pubDate>
		<dc:creator><![CDATA[alx]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[sparsebundle]]></category>

		<guid isPermaLink="false">https://alex.kazik.de/?p=346</guid>
		<description><![CDATA[I&#8217;ve figured out an pretty easy way to copy the contents of a OS X sparsebundle onto a whole disk on linux. First go into the Image.sparsebundle directory and have a look at the Info.plist. You need the values for size and band-size. Now in a shell enter: for i in $(seq 0 $(({size}/{band-size}-1))) ; [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve figured out an pretty easy way to copy the contents of a OS X sparsebundle onto a whole disk on linux.<br />
First go into the Image.sparsebundle directory and have a look at the Info.plist. You need the values for size and band-size.<br />
Now in a shell enter:<br />
<code>for i in $(seq 0 $(({size}/{band-size}-1))) ; dd if=`printf "%x" $i` of={/dev/sdx} bs={band-size}c seek=$i ; done</code><br />
All in one line and replace everything in curly braces with the desired value, e.g. &#8220;{band-size}&#8221; => &#8220;8388608&#8221;.</p>]]></content:encoded>
			<wfw:commentRss>https://alex.kazik.de/346/write-sparsebundle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zero-Mailer</title>
		<link>https://alex.kazik.de/150/zero-mailer/</link>
		<comments>https://alex.kazik.de/150/zero-mailer/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:54:55 +0000</pubDate>
		<dc:creator><![CDATA[alx]]></dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[MTA]]></category>
		<category><![CDATA[Nullmailer]]></category>
		<category><![CDATA[Zeromailer]]></category>

		<guid isPermaLink="false">http://alex.kazik.de/?p=150</guid>
		<description><![CDATA[This Zero-Mailer is even less than a nullmailer. It is a sendmail replacement which (basic configuration) send all mails to a single email address (ignoring the destination address). It&#8217;s desigend for servers, which are no mail servers, and only sends logs, notices and such things. So all other software (may be scripts, used from the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p> This Zero-Mailer is even less than a nullmailer. It is a sendmail replacement which (basic configuration) send all mails to a single email address (ignoring the destination address).</p>
<p>It&#8217;s desigend for servers, which are no mail servers, and only sends logs, notices and such things. So all other software (may be scripts, used from the web-server) have to use a SMTP server for outgoing mail (e.g. forum).</p>
<p>It can be configred that when sendmail is invoked by a user, that all those mails are going to another address. (the users which calls sendmail is important, not the destination).</p>
<p><span id="more-150"></span></p>
<p>example configuration:<br />
<code>[default]<br />
to = "destination@address"<br />
from = "sender@address"<br />
subject = "[Server] [To: %TO%] %SUBJECT%"</code></p>
<p>You can add more entries in that form, which usernames instead of &#8220;default&#8221;, in that case all mails sent by that user will be send to the specified address.</p>
<p>The options in detail:
<ul>
<li><code>disabled</code>, optional, defaults to false, if true no mail will be sent (for that user)
<li><code>to</code>, required, the destination
<li><code>host</code>, optional, the destination host, if omitted the MX record of the <code>to</code> address will be used
<li><code>subject</code>, optional, the subject, defaults to &#8220;<code>%SUBJECT%</code>&#8221; (placeholders: <code>%SUBJECT%</code> the original subject, <code>%TO%</code> the list of original recipients)
<li><code>from</code> optional, the sender address, default to &#8220;<code>user@hostname</code>&#8221;
</ul>
<p>Files:</p>
<ul>
<li>/etc/zeromail.conf
<li>/usr/sbin/sendmail
</ul>
<p>You may have problems after uninstalling all MTA software, because some software (e.g. logcheck) requires an installed MTA. I&#8217;ve fixed that problem by installing an dummy deb-package, which (says that it) provides an MTA.</p>
<p>This is the way I&#8217;m using it on my server and a proof of concept.</p>
<p>Some more explanations in the source.</p>
<p>Download: <p><img src="https://alex.kazik.de/wp-includes/images/crystal/archive.png" style="height:20px;vertical-align:middle;" /> <a href="https://alex.kazik.de/download/linux/zeromailer-0.3.tar.bz2" title="Download zeromailer 0.3">zeromailer 0.3</a> (7.2 KiB, 15. June 2010)</p></p>]]></content:encoded>
			<wfw:commentRss>https://alex.kazik.de/150/zero-mailer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
