<?xml-stylesheet type="text/xsl" href="http://www.ubuntu-pa.org/esrudasm/rss/rssstyles.xsl"?>
<rss version='2.0'   xmlns:dc='http://purl.org/dc/elements/1.1/'>
    <channel xml:base='http://www.ubuntu-pa.org/esrudasm/'>
        <title><![CDATA[El Salvador Rudas : Actividad]]></title>
        <description><![CDATA[Actividad para  El Salvador Rudas, alojada en Comunidad Local de Ubuntu Panamá.]]></description>
        <generator>Elgg</generator>
        <link>http://www.ubuntu-pa.org/esrudasm/</link>        
        <item>
            <title><![CDATA[Ubuntu Bluetooth Mouse]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/474.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/474.html</guid>
            <pubDate>Sun, 30 Dec 2007 05:44:57 GMT</pubDate>
            <description><![CDATA[<pre class="alt2"  style="border:1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 34px; text-align: left">hcitool scan</pre><pre class="alt2"  style="border:1px inset ; margin: 0px; padding: 6px; overflow: auto; width: 640px; height: 34px; text-align: left">sudo hidd --connect XX:XX:XX:XX:XX:XX <br /></pre>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Outlook 2002 and 2003 cannot query some OpenLDAP Servers]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/411.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/411.html</guid>
            <pubDate>Wed, 26 Dec 2007 16:13:10 GMT</pubDate>
            <description><![CDATA[Please visit this page before <a href="http://support.microsoft.com/kb/256986">http://support.microsoft.com/kb/256986</a>&nbsp;continuing.<br />&nbsp;<br />For Outlook 2003, you must manually modify the Microsoft Windows registry directly:<br />1. Quit all Office programs.<br />2. Click <strong>Start</strong>, and then click <strong>Run</strong>.<br />3. In the <strong>Open</strong> box, type regedit, and then click <strong>OK</strong>.<br />4. Click the following key for Outlook XP: <br /><strong>HKEY_CURRENT_USERSoftwareMicrosoftOffice10.0OutlookLDAP</strong><br />For Outlook 2003, the key is:<br /><strong>HKEY_CURRENT_USERSoftwareMicrosoftOffice11.0OutlookLDAP</strong><br />5. With the <strong>LDAP</strong> key selected, point to <strong>New</strong> on the <strong>Edit</strong> menu, and then click <strong>DWORD Value</strong>.<br />6. Type DisableVLVBrowsing, and then press ENTER.<br />7. With the <strong>DisableVLVBrowsing</strong> DWORD Value selected, click <strong>Modify</strong> on the <strong>Edit</strong> menu.<br />8. In the <strong>Value data</strong> box, type 1 and then click <strong>OK</strong>.<br />9. On the <strong>File</strong> menu, click <strong>Exit</strong><br />10. Restart the computer]]></description>
        </item>
                
        <item>
            <title><![CDATA[Windows / OS X Software Alternatives for Linux]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/327.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/327.html</guid>
            <pubDate>Thu, 20 Dec 2007 17:46:19 GMT</pubDate>
            <description><![CDATA[<a href="http://www.linuxappfinder.com/alternatives">http://www.linuxappfinder.com/alternatives</a>]]></description>
        </item>
                
        <item>
            <title><![CDATA[rsync & unison]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/214.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/214.html</guid>
            <pubDate>Mon, 17 Dec 2007 21:03:10 GMT</pubDate>
            <description><![CDATA[<h2>First server setup</h2>  <blockquote><pre>ssh-keygen -t dsa</pre></blockquote>  <p>(press enter twice to give a blank password)</p>  <blockquote><pre>cd<br />vi .ssh/.config</pre></blockquote>  <p>Press &quot;i&quot; to enter insert mode and copy this into the file:</p>  <blockquote><pre>Host remotehost<br />User remoteuser<br />Compression yes<br />Protocol 2<br />RSAAuthentication yes<br />StrictHostKeyChecking no<br />ForwardAgent yes<br />ForwardX11 yes<br />IdentityFile /home/localuser/.ssh/id_remotehost_dsa</pre></blockquote>  <p>Do NOT change the last line - it is supposed to say remotehost (not an actual host name). Now,</p>  <blockquote><pre>:wq</pre></blockquote>  <p>(save and exit vi)</p>  <blockquote><pre>chmod 700 .ssh<br />vi .ssh/id_dsa.pub</pre></blockquote>  <p>It should look like this:</p>  <blockquote><pre>ssh-dss AAAA..............v root@HOSTNAMEOFSRV01</pre></blockquote>  <p>where there is lots of random letters/numbers where the dots are. Select it all and copy it. Make sure that it is all on one line with no spaces at the start or finish (which will happen if you copy it using putty on windows; test it by pasting it into notepad)<br /><strong>Tip:</strong> To copy from putty on windows select the text from within vi and pres Ctrl + Shift. To paste text enter insert mode and press the right mouse button.</p>  <h2>Second Server Setup</h2>  <blockquote><pre>cd<br />vi .ssh/authorized_keys</pre></blockquote>  <p>Enter insert mode (press i) and paste the key, again ensuring that there are no spare newlines or spaces. Save the file and exit vi (press :wq then return, as above). Now you just need to set some permissions otherwise SSH will ignore the files you just created:</p>  <blockquote><pre>chmod 700 .ssh<br />chmod 644 .ssh/authorized_keys</pre></blockquote>  <h2>Testing passwordless SSH</h2>  <p>On the first server, type</p>  <blockquote><pre>ssh srv02</pre></blockquote>  <p>where srv02 = the hostname of the second server. It could be an IP address too.</p>  <p>If it just logs you in (no passwords), then you are done. If not double check the above and start google searching your errors or <a href="http://www.davz.net/static/contact/?e=alex">email me</a> and I will try to help. The next bit will certainly fail if you can&#39;t make an SSH connection.</p>  <hr />  <h1>Replication</h1>  <p>You have two options for replication: Unison and Rsync.</p> <ul><li>Rsync is one-way (will overwrite changes on the second server). 	</li><li>Unison is two-way (will allow changes on both servers (though clearly not at the same time!) </li></ul>  <h2>Setting up RSYNC</h2>  <p>Skip to <a href="http://www.davz.net/static/howto/sshkeys#unison">the Unison section</a> if you want two-way replication</p>  <p>Rsync is normally installed so I will not go through installing it. To make the rsync connection run the following command on srv01:</p>  <blockquote><pre>rsync -e ssh -avz --delete /home/folder1/ srv02hostname:/home/folder2</pre></blockquote>  <p>again, where srv02 is the hostname or IP of srv02. This will make /home/folder2 on srv02 (the second server) identical to /home/folder1 (be aware that this will delete all files in /home/folder2 on srv02 that are not in /home/folder1 on srv01!)</p>  <p>You can put as many of these as you line in the crontab (crontab -e). You now have rsync set up: congratulations.</p>  <h2><a name="unison"></a></h2>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Linux USB Server]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/15.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/15.html</guid>
            <pubDate>Fri, 14 Dec 2007 06:00:04 GMT</pubDate>
            <description><![CDATA[<a href="http://incentivespro.com/usb-server.html">http://incentivespro.com/usb-server.html</a>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Enable Desktop Effects]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/weblog/14.html</link>
            <guid isPermaLink="true">http://www.ubuntu-pa.org/esrudasm/weblog/14.html</guid>
            <pubDate>Fri, 14 Dec 2007 04:57:06 GMT</pubDate>
            <description><![CDATA[<span class="system">sudo apt-get compizconfig-settings-manager</span>]]></description>
        </item>
        
        <item>
            <title><![CDATA[]]></title>
            <link>http://www.ubuntu-pa.org/esrudasm/files/-1/3/1210_214725.jpg</link>
            <enclosure url="http://www.ubuntu-pa.org/esrudasm/files/-1/3/1210_214725.jpg" length="427648" type="image/jpeg" />
            <pubDate>Wed, 12 Dec 2007 05:57:18 GMT</pubDate>
            <description><![CDATA[]]></description>
        </item>
    </channel>
</rss>