<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://kerneltrap.org"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>KernelTrap - Tools</title>
 <link>http://kerneltrap.org/taxonomy/term/10/0</link>
 <description></description>
 <language>en-local</language>
<item>
 <title>Git 1.6.0 Released</title>
 <link>http://kerneltrap.org/node/16515</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;&quot;&lt;i&gt;The latest feature release GIT 1.6.0 is available at the usual places&lt;/i&gt;,&quot; began Git maintainer, Junio Hamano, &lt;a href=&quot;http://kerneltrap.org/mailarchive/linux-kernel/2008/8/17/2970764&quot;&gt;announcing the latest stable release&lt;/a&gt; of the distributed version control system originally written by Linus Torvalds.  Among the current changes, Junio noted, &quot;&lt;i&gt;with the default Makefile settings, most of the programs are now installed outside your $PATH, except for &#039;git&#039;, &#039;gitk&#039; and some server side programs that need to be accessible for technical reasons.&lt;/i&gt;&quot;  He continued, &quot;&lt;i&gt;by default, packfiles created with this version uses delta-base-offset&lt;br /&gt;
encoding introduced in v1.4.4.  Pack idx files are using version 2 that allows larger packs and added robustness thanks to its CRC checking, introduced in v1.5.2 and v1.4.4.5.&lt;/i&gt;&quot;  Julio highlighted several other changes, including the addition of a &#039;.sample&#039; extension to the default trigger scripts to be sure they don&#039;t execute in a default install, and the removal of the &#039;stupid&#039; merge strategy.  Other changes include:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&quot;Git-gui learned to stage changes per-line; Reduced excessive inlining to shrink size of the &#039;git&#039; binary; When an object is corrupt in a pack, the object became unusable even when the same object is available in a loose form, we now try harder to fall back to these redundant objects when able; performance of &#039;git-blame -C -C&#039; operation is vastly improved; even more documentation pages are now accessible via &#039;man&#039; and &#039;git help&#039;; longstanding latency issue with bash completion script has been addressed; pager. configuration variable can be used to enable/disable the default paging behaviour per command; git-cvsserver learned to respond to &#039;cvs co -c&#039;; &#039;git-diff -p&#039; learned to grab a better hunk header lines in BibTex, Pascal/Delphi, and Ruby files and also pays attention to chapter and part boundary in TeX documents; error codes from gitweb are made more descriptive where possible, rather than &#039;403 forbidden&#039; as we used to issue everywhere; git-merge has been reimplemented in C.&quot;&lt;/p&gt;&lt;/blockquote&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/16515&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/16515#comments</comments>
 <category domain="http://kerneltrap.org/git">git</category>
 <category domain="http://kerneltrap.org/taxonomy/term/1316">git 1.6</category>
 <category domain="http://kerneltrap.org/taxonomy/term/1317">git 1.6.0</category>
 <category domain="http://kerneltrap.org/Junio_Hamano">Junio Hamano</category>
 <category domain="http://kerneltrap.org/release">release</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Tue, 19 Aug 2008 11:46:18 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">16515 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Git 1.5.6, &quot;Relatively Small Impact Changes&quot;</title>
 <link>http://kerneltrap.org/Git/1.5.6_Relatively_Small_Impact_Changes</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;&quot;&lt;i&gt;As promised, this cycle was short and the release is with only relatively small impact changes,&lt;/i&gt;&quot; said Git maintainer Junio Hamano, &lt;a href=&quot;http://kerneltrap.org/mailarchive/git/2008/6/18/2165654&quot;&gt;announcing the release of Git v1.5.6&lt;/a&gt;.  He noted that both gitk and git-gui have been updated.  To improve portability, when running &quot;&lt;code&gt;git init&lt;/code&gt;&quot;, git now autodetects whether or not a filesystem is case insensitive, and updates a new configuration variable accordingly.  Dependencies on the &#039;&lt;code&gt;cpio&lt;/code&gt;&#039; and &#039;&lt;code&gt;curl&lt;/code&gt;&#039; binaries have also been removed.  Among the changes improving performance, the &quot;&lt;code&gt;git clone&lt;/code&gt;&quot; command has been rewritten in C.  Other changes include:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&quot;&#039;&lt;code&gt;git bisect help&lt;/code&gt;&#039; gives longer and more helpful usage information; &#039;&lt;code&gt;git branch&lt;/code&gt;&#039; (and &#039;&lt;code&gt;git checkout -b&lt;/code&gt;&#039;) can be told to set up branch..rebase automatically, so that later you can say &#039;&lt;code&gt;git pull&lt;/code&gt;&#039; and magically cause &#039;&lt;code&gt;git pull --rebase&lt;/code&gt;&#039; to happen; &#039;&lt;code&gt;git cherry-pick&lt;/code&gt;&#039; and &#039;&lt;code&gt;git revert&lt;/code&gt;&#039; can add a sign-off; &#039;&lt;code&gt;git commit&lt;/code&gt;&#039; mentions the author identity when you are committing somebody else&#039;s changes; &#039;&lt;code&gt;git log&lt;/code&gt;&#039; and friends learned the &#039;&lt;code&gt;--graph&lt;/code&gt;&#039; option to show the ancestry graph at the left margin of the output; &#039;&lt;code&gt;git send-email&lt;/code&gt;&#039; now can send out messages outside a git repository; &#039;&lt;code&gt;git svn&lt;/code&gt;&#039; learned --add-author-from option to propagate the authorship by munging the commit log message; new object creation and looking up in &#039;&lt;code&gt;git svn&lt;/code&gt;; has been optimized.&quot;&lt;/p&gt;&lt;/blockquote&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/Git/1.5.6_Relatively_Small_Impact_Changes&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/Git/1.5.6_Relatively_Small_Impact_Changes#comments</comments>
 <category domain="http://kerneltrap.org/git">git</category>
 <category domain="http://kerneltrap.org/taxonomy/term/1222">git 1.5</category>
 <category domain="http://kerneltrap.org/Junio_Hamano">Junio Hamano</category>
 <category domain="http://kerneltrap.org/release">release</category>
 <category domain="http://kerneltrap.org/source_control">source control</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Thu, 19 Jun 2008 00:04:03 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">16314 at http://kerneltrap.org</guid>
</item>
<item>
 <title>GCC 4.3.1, Bug Fixes</title>
 <link>http://kerneltrap.org/Tools/GCC_4.3.1_Bug_Fixes</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Jakub Jelinek announced the availability of &lt;a href=&quot;http://gcc.gnu.org/gcc-4.3/changes.html#4.3.1&quot;&gt;GCC 4.3.1&lt;/a&gt; saying, &quot;&lt;i&gt;GCC 4.3.1 is a bug-fix release, containing fixes for regressions in GCC 4.3.0 relative to previous GCC releases.&lt;/i&gt;&quot;  He adds the standard tag, &quot;&lt;i&gt;as always, a vast number of people contributed to this GCC release -- far too many to thank individually!&lt;/i&gt;&quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gcc.gnu.org/&quot; target=&quot;new&quot;&gt;GCC&lt;/a&gt; is the GNU Compiler Collection which includes C, C++, Objective-C, Fortran, Java, and Ada compilers. Download GCC 4.3.1 from your nearest gcc.gnu.org &lt;a href=&quot;http://gcc.gnu.org/mirrors.html&quot;&gt;mirror&lt;/a&gt;.&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/Tools/GCC_4.3.1_Bug_Fixes&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/Tools/GCC_4.3.1_Bug_Fixes#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/287">Ada</category>
 <category domain="http://kerneltrap.org/C">C</category>
 <category domain="http://kerneltrap.org/compiler">compiler</category>
 <category domain="http://kerneltrap.org/taxonomy/term/285">Fortran</category>
 <category domain="http://kerneltrap.org/GCC">GCC</category>
 <category domain="http://kerneltrap.org/GCC_4">GCC 4</category>
 <category domain="http://kerneltrap.org/GCC_4.3.1">GCC 4.3.1</category>
 <category domain="http://kerneltrap.org/GNU">GNU</category>
 <category domain="http://kerneltrap.org/taxonomy/term/1277">Jakub Jelinek</category>
 <category domain="http://kerneltrap.org/Java">Java</category>
 <category domain="http://kerneltrap.org/taxonomy/term/284">Objective-C</category>
 <category domain="http://kerneltrap.org/release">release</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Tue, 10 Jun 2008 08:20:14 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">16260 at http://kerneltrap.org</guid>
</item>
<item>
 <title>GCC 4.2.4, Bug Fix Release</title>
 <link>http://kerneltrap.org/GCC/4.2.4_Bug_Fix_Release</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Joseph Myers announced the availability of &lt;a href=&quot;http://gcc.gnu.org/gcc-4.2/&quot;&gt;GCC 4.2&lt;/a&gt;.4 saying, &quot;&lt;i&gt;GCC 4.2.4 is a bug-fix release, containing fixes for regressions in GCC 4.2.3 relative to previous GCC releases.&lt;/i&gt;&quot;  He adds, &quot;&lt;i&gt;as always, a vast number of people contributed to this GCC release -- far too many to thank individually!&lt;/i&gt;&quot;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://gcc.gnu.org/&quot; target=&quot;new&quot;&gt;GCC&lt;/a&gt; is the GNU Compiler Collection which includes C, C++, Objective-C, Fortran, Java, and Ada compilers. Download GCC 4.2.4 from your nearest gcc.gnu.org &lt;a href=&quot;http://gcc.gnu.org/mirrors.html&quot;&gt;mirror&lt;/a&gt;.&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/GCC/4.2.4_Bug_Fix_Release&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/GCC/4.2.4_Bug_Fix_Release#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/287">Ada</category>
 <category domain="http://kerneltrap.org/C">C</category>
 <category domain="http://kerneltrap.org/compiler">compiler</category>
 <category domain="http://kerneltrap.org/taxonomy/term/285">Fortran</category>
 <category domain="http://kerneltrap.org/GCC">GCC</category>
 <category domain="http://kerneltrap.org/GCC_4">GCC 4</category>
 <category domain="http://kerneltrap.org/GCC_4.2.4">GCC 4.2.4</category>
 <category domain="http://kerneltrap.org/GNU">GNU</category>
 <category domain="http://kerneltrap.org/Java">Java</category>
 <category domain="http://kerneltrap.org/Joseph_Myers">Joseph Myers</category>
 <category domain="http://kerneltrap.org/taxonomy/term/284">Objective-C</category>
 <category domain="http://kerneltrap.org/release">release</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Wed, 21 May 2008 21:41:10 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">16183 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Tools:  OpenSSH 3.9</title>
 <link>http://kerneltrap.org/node/3667</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Markus Friedl announced the release of OpenSSH 3.9, &quot;&lt;i&gt;a 100% complete SSH protocol version 1.3, 1.5 and 2.0 implementation and includes sftp client and server support.&lt;/i&gt;&quot;&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/3667&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/3667#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Wed, 18 Aug 2004 12:05:09 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">3667 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Tools:  FSF Condemns SCO In GCC 3.3.1 Release</title>
 <link>http://kerneltrap.org/node/727</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Mark Mitchell commented today on the &lt;a href=&quot;http://gcc.gnu.org/ml/gcc-announce/&quot; target=&quot;new&quot;&gt;gcc-announce&lt;/a&gt; mailing list that the recent GCC 3.3.1 release [&lt;a href=&quot;/node/view/718&quot;&gt;story&lt;/a&gt;] includes a new file titled &#039;README.SCO&#039;, expressing outrage at SCO&#039;s recent legal actions against the Linux kernel.  From the document:&lt;br /&gt;
&lt;blockquote&gt;&quot;As all users of GCC will know, SCO has recently made claims concerning alleged copyright infringement by recent versions of the operating system kernel called Linux.  SCO has made irresponsible public statements about this supposed copyright infringement without releasing any evidence of the infringement, and has demanded that users of Linux, the kernel most often used with the GNU system, pay for a license.  This license is incompatible with the GPL, and in the opinion of the Free Software Foundation such a demand unquestionably violates the GNU General Public License under which the kernel is distributed.&quot;&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;  The statement goes on to discuss the possibility of dropping GCC support for the SCO Unix platform in protests, noting however that at this time it would be more of an inconvenience to users than SCO itself, &quot;&lt;i&gt;but we cannot indefinitely continue to ignore the aggression against our community taken by a party that has long profited from the commercial distribution of our programs.  We urge users of SCO Unix to make clear to SCO their disapproval of the company&#039;s aggression against the free software community.&lt;/i&gt;&quot;  Read on for the full statement, written by Richard Stallman and Eben Moglen.&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/727&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/727#comments</comments>
 <category domain="http://kerneltrap.org/Eben_Moglen">Eben Moglen</category>
 <category domain="http://kerneltrap.org/FSF">FSF</category>
 <category domain="http://kerneltrap.org/GCC">GCC</category>
 <category domain="http://kerneltrap.org/GCC_3">GCC 3</category>
 <category domain="http://kerneltrap.org/taxonomy/term/744">GCC 3.3.1</category>
 <category domain="http://kerneltrap.org/taxonomy/term/288">Mark Mitchell</category>
 <category domain="http://kerneltrap.org/Richard_Stallman">Richard Stallman</category>
 <category domain="http://kerneltrap.org/taxonomy/term/762">SCO</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Mon, 11 Aug 2003 19:09:00 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">727 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Tools:  GCC 3.3 Released</title>
 <link>http://kerneltrap.org/node/650</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;&lt;a href=&quot;http://gcc.gnu.org/gcc-3.3/&quot; target=&quot;new&quot;&gt;GCC 3.3&lt;/a&gt; was released today. Mark Mitchell announced the release saying:&lt;br /&gt;
&lt;blockquote&gt;&quot;This release contains a very large number of bug-fixes relative to GCC 3.2.3, and a number of new features.  See &lt;a href=&quot;http://gcc.gnu.org/gcc-3.3/changes.html&quot; target=&quot;new&quot;&gt;this page&lt;/a&gt; for a more complete list of changes.&quot;&lt;/blockquote&gt;&lt;/p&gt;
&lt;p&gt;GCC is the &lt;a href=&quot;http://gcc.gnu.org/&quot; target=&quot;new&quot;&gt;GNU Compiler Collection&lt;/a&gt;. This first release in the 3.3 line follows the earlier GCC 3.2.3 [&lt;a href=&quot;/index.php?or=10&quot;&gt;story&lt;/a&gt;] by nearly a month.  The next release will be 3.3.1, targeting bugs found in 3.3.  Mention is made again of targets that have been marked obsolete, and will be removed in 3.4 [&lt;a href=&quot;/node.php?id=605&quot;&gt;story&lt;/a&gt;]. Read on for the complete announcement.&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/650&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/650#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Thu, 15 May 2003 12:35:24 +0000</pubDate>
 <dc:creator>Jeremy</dc:creator>
 <guid isPermaLink="false">650 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Tools: GCC 3.2.3 Released</title>
 <link>http://kerneltrap.org/node/638</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;GCC 3.2.3 - the last in the 3.2 series - was released on April 25.  It is a bugfix release, no new features in there.  This one is a follow up to GCC 3.2.2 [&lt;a href=&quot;/node.php?id=576&quot;&gt;story&lt;/a&gt;].&lt;/p&gt;
&lt;!-- google_ad_section_end --&gt;&lt;p&gt;&lt;a href=&quot;http://kerneltrap.org/node/638&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://kerneltrap.org/node/638#comments</comments>
 <category domain="http://kerneltrap.org/taxonomy/term/742">Gabriel Dos Reis</category>
 <category domain="http://kerneltrap.org/GCC">GCC</category>
 <category domain="http://kerneltrap.org/GCC_3">GCC 3</category>
 <category domain="http://kerneltrap.org/taxonomy/term/750">GCC 3.2.3</category>
 <category domain="http://kerneltrap.org/GNU">GNU</category>
 <category domain="http://kerneltrap.org/release">release</category>
 <category domain="http://kerneltrap.org/taxonomy/term/10">Tools</category>
 <pubDate>Sun, 27 Apr 2003 06:04:00 +0000</pubDate>
 <dc:creator>nimrod</dc:creator>
 <guid isPermaLink="false">638 at http://kerneltrap.org</guid>
</item>
<item>
 <title>Tools:  OpenSSH 3.6</title>
 <link>http://kerneltrap.org/node/622</link>
 <description>&lt;div class=&quot;taxonomy-images&quot;&gt;&lt;a href=&quot;/news/openbsd&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-OpenBSD_0.gif&quot; alt=&quot;OpenBSD news&quot; title=&quot;Articles about OpenBSD.&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;/taxonomy/term/10&quot; class=&quot;taxonomy-image-links&quot;&gt;&lt;img src=&quot;http://kerneltrap.org/files/category_pictures/K-Develop_0.gif&quot; alt=&quot;Tools&quot; title=&quot;Tools&quot;  width=&quot;75&quot; height=&quot;75&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;!-- google_ad_section_start --&gt;&lt;p&gt;Markus Friedl announced the release of &lt;a href=&quot;http://openssh.org/&quot; target=&quot;new&quot;&gt;OpenSSH&lt;/a&gt; 3.6 today, five months after the release of version 3.5 [&lt;a href=&quot;/node.php?id=463&quot; target=&quot;new&quot;&gt;story&lt;/a&gt;].  Today&#039;s release includes a number of enhancements, including RSA blinding to avoid potential timing attacks against RSA keys, bandwidth limiting for &#039;scp&#039;, and a progress bar and improved error handling for &#039;sftp&#039;.&lt;/p&gt;
&lt;p&gt;OpenSSH 3.6 is available for download now, and will also be part of the upcomin