From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uri Lublin Subject: Re: kvm-autotest -- introducing kvm_runtest_2 Date: Mon, 09 Mar 2009 19:53:17 +0200 Message-ID: <49B5578D.2020408@redhat.com> References: <49AADD81.1070207@redhat.com> <20090302174504.GH11777@us.ibm.com> <49AE42CE.7080105@redhat.com> <20090309162319.GE11777@us.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: KVM List To: Ryan Harper Return-path: Received: from mx2.redhat.com ([66.187.237.31]:42112 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752839AbZCIRxZ (ORCPT ); Mon, 9 Mar 2009 13:53:25 -0400 In-Reply-To: <20090309162319.GE11777@us.ibm.com> Sender: kvm-owner@vger.kernel.org List-ID: Ryan Harper wrote: > * Uri Lublin [2009-03-04 01:59]: >>> I noticed the references to the setup isos for windows that presumbly >>> install cygwin telnetd/sshd, are those available? if the isos >>> themselves aren't, if the build instructions are, that would be very >>> useful. >> You are right. We do have an installation iso images for telnetd/sshd. >> I did not want to commit iso images. Also, I am not sure about licensing, >> and I prefer that we would generate them on the user machine. We'll add the >> build instructions to the wiki. > > Any ETA on the build instructions? > We are currently in the process of moving the wiki to a new location. Till that happen, please try the following instructions: To build the cdrom for ssh: 1. mkdir /tmp/ssh_for_win 2. cd /tmp/ssh_for_win 3. download setupssh.exe 4. cat > setup.bat << EOF setupssh.exe net user Administrator 123456 netsh firewall set opmode disable c: cd c:\Program Files\OpenSSH\bin mkgroup -l >> ..\etc\group mkpasswd -l >> ..\etc\passwd net start opensshd EOF 5. genisoimage -o setupssh.iso setup.bat setupssh.exe For win2008 -- enabling telnet 1. mkdir /tmp/telnet_for_windows 2. cd /tmp/telnet_for_windows/ 3. cat > setup.bat << EOF servermanagercmd -install telnet-server sc config TlntSvr start= auto netsh firewall set opmode disable net start telnet EOF 4. genisoimage -o setuptelnet.iso setup.bat Regards, Uri.