[Python-checkins] CVS: python/nondist/sf-html sf-faq.html,1.4,1.5

Peter Schneider-Kamp python-dev@python.org
Tue, 18 Jul 2000 14:43:26 -0700


Update of /cvsroot/python/python/nondist/sf-html
In directory slayer.i.sourceforge.net:/tmp/cvs-serv2080

Modified Files:
	sf-faq.html 
Log Message:

added Windows section

How to install ssh?
How to install cvs to use ssh?



Index: sf-faq.html
===================================================================
RCS file: /cvsroot/python/python/nondist/sf-html/sf-faq.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** sf-faq.html	2000/07/17 17:43:37	1.4
--- sf-faq.html	2000/07/18 21:43:23	1.5
***************
*** 42,45 ****
--- 42,51 ----
  </ol>
  
+ <h2><a href="#windows">4. Windows</a></h2>
+ <ol>
+   <li><a href="#w1">How to install ssh?</a></li>
+   <li><a href="#w2">How to install cvs to use ssh?</a></li>
+ </ol>
+ 
  <h2><a href="#appendix">A. Appendix</a></h2>
  <ol>
***************
*** 349,352 ****
--- 355,416 ----
  can be found in the Appendix of this FAQ.<br />
  </p>
+ 
+ <h1><a name="windows" id="windows"></a>4. Windows</h1>
+ 
+ <h3><a name="w1" id="w1"></a>4.1.:</h3>
+ 
+ <h4>Q: How to install ssh?</h4>
+ 
+ <h4>A:</h4>
+ Download the following file and unzip it to <tt>C:\BIN</tt>:
+ 
+ <blockquote>
+   <tt><a
+   href="ftp://ftp.cs.hut.fi/pub/ssh/contrib/ssh-1.2.14-win32bin.zip">ftp://ftp.cs.hut.fi/pub/ssh/contrib/ssh-1.2.14-win32bin.zip</a></tt></blockquote>
+ Create a home directory (e.g. <tt>C:\HOME\SF_USERNAME</tt>) and
+ <tt>C:\ETC</tt> and place a <tt>passwd</tt> file in <tt>C:\ETC</tt>:
+ 
+ <blockquote>
+   <tt>mkdir C:\HOME</tt><br />
+   <tt>mkdir C:\HOME\SF_USERNAME</tt><br />
+   <tt>mkdir C:\ETC</tt><br />
+   <tt>echo sf_username:x:1:10:Name,
+   Real:/home/sf_username:/windows/command.com &gt;
+ C:\ETC\passwd</tt></blockquote>
+ Add the following entries to your environment. This can be automated e.g. by
+ putting them into <tt>AUTOEXEC.BAT</tt> on Win9x.
+ 
+ <blockquote>
+   <tt>SET PATH=%PATH%;C:\BIN</tt><br />
+   <tt>SET HOME=\HOME\SF_USERNAME</tt><br />
+   <tt>SET HOMEPATH=\HOME\SF_USERNAME</tt><br />
+   <tt>SET HOMEDRIVE=C:</tt><br />
+   <tt>SET USERNAME=sf_username</tt></blockquote>
+ After the environment is updated you should be able to use ssh. Try this:
+ 
+ <blockquote>
+   <tt>ssh -l sf_username shell.sourceforge.net</tt></blockquote>
+ 
+ <h3><a name="w2" id="w2"></a>4.2.:</h3>
+ 
+ <h4>Q: How to install cvs to use ssh?</h4>
+ 
+ <h4>A:</h4>
+ Download the following file and unzip it to <tt>C:\BIN</tt>:
+ 
+ <blockquote>
+   <tt><a
+   href="ftp://download.cyclic.com/pub/cvs-1.10/windows/cvs-1.10-win.zip">ftp://download.cyclic.com/pub/cvs-1.10/windows/cvs-1.10-win.zip</a></tt></blockquote>
+ Add the following entries to your environment. This can be automated e.g. by
+ putting them into <tt>AUTOEXEC.BAT</tt> on Win9x.
+ 
+ <blockquote>
+   <tt>SET CVS_RSH=ssh</tt><br />
+   <tt>SET
+   CVSROOT=:ext:sf_username@cvs.python.sourceforge.net:/cvsroot/python</tt></blockquote>
+ After the environment is updated you should be able to use cvs/ssh: Try this:
+ 
+ <blockquote>
+   <tt>cvs co python</tt></blockquote>
  
  <h1><a name="appendix" id="appendix"></a>A. Appendix</h1>