<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Jonas Genannt - windows</title>
    <link>http://blog.brachium-system.net/</link>
    <description>Weblog of an System Engineer</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.2 - http://www.s9y.org/</generator>
    
    <image>
        <url>http://blog.brachium-system.net/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Jonas Genannt - windows - Weblog of an System Engineer</title>
        <link>http://blog.brachium-system.net/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>Win2k3 unattended installation: non-speaking error</title>
    <link>http://blog.brachium-system.net/archives/17-Win2k3-unattended-installation-non-speaking-error.html</link>
            <category>windows</category>
            <category>work</category>
    
    <comments>http://blog.brachium-system.net/archives/17-Win2k3-unattended-installation-non-speaking-error.html#comments</comments>
    <wfw:comment>http://blog.brachium-system.net/wfwcomment.php?cid=17</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.brachium-system.net/rss.php?version=2.0&amp;type=comments&amp;cid=17</wfw:commentRss>
    

    <author>nospam@example.com (Jonas Genannt)</author>
    <content:encoded>
    If you work on unattended installtion for Windows and you get the following error during the GUI Installation Setup, don&#039;t  despair.&lt;br /&gt;
&lt;img width=&#039;358&#039; height=&#039;166&#039; border=&#039;0&#039; hspace=&#039;5&#039; align=&#039;right&#039; src=&#039;http://blog.brachium-system.net/uploads/win2k3error.jpg&#039; alt=&#039;&#039; /&gt;&lt;br /&gt;
&lt;blockquote&gt;An error has been encountered that prevents Setup from continuing.&lt;br /&gt;
Internal Setup data structers are corrupted (phase 0).&lt;br /&gt;
Press OK to view the Setup log file&lt;/blockquote&gt;&lt;br /&gt;
&lt;br/&gt;&lt;br /&gt;
When you get this error, there are some missing entries on your &lt;i&gt;winnt.sif&lt;/i&gt; file in the I386 Folder.&lt;br /&gt;
&lt;br /&gt;
You have to add:&lt;br /&gt;
&lt;b&gt;MsDosInitiated = &quot;0&quot;&lt;br /&gt;
AutoPartition=0&lt;br /&gt;
UnattendedInstall = &quot;Yes&quot;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
That flags are essential for the [Data] Selection in the &lt;i&gt;winnt.sif&lt;/i&gt; file!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;MsDosInitiated=0&lt;/b&gt; Means that you are not installing from floppy drives!&lt;br /&gt;
&lt;b&gt;AutoPartition=0&lt;/b&gt; You musst create the partitions on yourself!&lt;br /&gt;
&lt;b&gt;UnattendedInstall = &quot;Yes&quot;&lt;/b&gt; Starts the Unattended Installation in the GUI Mode.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 16 May 2006 11:14:48 +0200</pubDate>
    <guid isPermaLink="false">http://blog.brachium-system.net/archives/17-guid.html</guid>
    
</item>
<item>
    <title>Rsync Server under Windows</title>
    <link>http://blog.brachium-system.net/archives/12-Rsync-Server-under-Windows.html</link>
            <category>backup</category>
            <category>windows</category>
            <category>work</category>
    
    <comments>http://blog.brachium-system.net/archives/12-Rsync-Server-under-Windows.html#comments</comments>
    <wfw:comment>http://blog.brachium-system.net/wfwcomment.php?cid=12</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://blog.brachium-system.net/rss.php?version=2.0&amp;type=comments&amp;cid=12</wfw:commentRss>
    

    <author>nospam@example.com (Jonas Genannt)</author>
    <content:encoded>
    Rsync Server under Windows is possible with cygwin and cwrsync!&lt;br /&gt;
&lt;br /&gt;
You can get cwRsync with cygwin dlls here: &lt;a href=&quot;http://itefix.no/cwrsync/&quot;  title=&quot;http://itefix.no/cwrsync/&quot;&gt;http://itefix.no/cwrsync/&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
Install it, create a rsync.conf file, but two things are &lt;b&gt;important&lt;/b&gt; for running rsync on windows:&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
strict modes = false&lt;br /&gt;
use chroot =false&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
My &lt;i&gt;rsync.conf&lt;/i&gt; looks like this:&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
secrets file = /cygdrive/c/Programme/cwRsync/passwds&lt;br /&gt;
log file = /cygdrive/c/Programme/cwRsync/rsyncd.log&lt;br /&gt;
pid file = /cygdrive/c/Programme/cwRsync/rsyncd.pid&lt;br /&gt;
strict modes = false&lt;br /&gt;
use chroot = false&lt;br /&gt;
&lt;br /&gt;
[Backup]&lt;br /&gt;
comment = Files for Backup&lt;br /&gt;
path    = c:\files&lt;br /&gt;
auth users = backup&lt;br /&gt;
hosts deny = *&lt;br /&gt;
hosts allow = 192.168.0.0/255.255.255.0&lt;br /&gt;
read only = yes&lt;br /&gt;
list = false&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
The password file has got that format:&lt;br /&gt;
&lt;blockquote&gt;username:password&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
For installing rsync as a Server you need the programs:&lt;br /&gt;
- instsrv.exe&lt;br /&gt;
- srvany.exe&lt;br /&gt;
&lt;br /&gt;
Now execute this command:&lt;br /&gt;
&lt;i&gt;instsrv.exe &quot;Rsync c:\path\to\srvany.exe&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Do not start the service now!&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Open &lt;i&gt;regedit&lt;/i&gt; and insert the following lins to that path:&lt;br /&gt;
&lt;i&gt;HKEY_LOCAL_MACHINE\SYSTEMS\CurrentControlSet\Services\Rsync\Parameters&lt;/i&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
AppDirectory REG_SZ &quot;c:\Programme\cwrsync\bin&quot;&lt;br /&gt;
Application  REG_SZ &quot;c:\Programme\cwrsync\bin\rsync.exe&quot;&lt;br /&gt;
AppParameters REG_SZ &quot;--daemon --config=/cygdrive/c/Programme/cwRsync/rsync.conf&quot;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Now you can start rsync as a normal service.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Tue, 11 Apr 2006 13:14:52 +0200</pubDate>
    <guid isPermaLink="false">http://blog.brachium-system.net/archives/12-guid.html</guid>
    
</item>

</channel>
</rss>