X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <474F1C73.9010805@warnerbros.com> Date: Thu, 29 Nov 2007 12:09:23 -0800 From: Kyle Flavin User-Agent: Thunderbird 1.5.0.12 (X11/20071020) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Problems Starting sshd as a service through CYGWIN References: <474F0D22 DOT 1010806 AT wbemsolutions DOT com> In-Reply-To: <474F0D22.1010806@wbemsolutions.com> Content-Type: multipart/mixed; boundary="------------020305050802030008020508" X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com --------------020305050802030008020508 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I am having trouble starting sshd as a Window's service. I've looked over the mailing list archives, but have been unable to find a resolution to my problem. I apologize for the length of this email, but I tried to include all pertinent information. I have attached the output of cygcheck -s -v -r. When I run /usr/sbin/sshd by hand from a CYGWIN terminal, it works. I can remotely access the machine from another computer using SSH. I can successfully install SSHD as a service, but when I try to start the service, it fails. This is true even when I try to start it manually, after my machine has booted. Here's the process I went through after installation of CYGWIN/OpenSSH/OpenSSL: I ran ssh-host-config, and it ran without any errors. When I ran the following, the service failed to start: ------------------------ $ cygrunsrv.exe -S sshd cygrunsrv: Error starting a service: QueryServiceStatus: Win32 error 1062: The service has not been started. ------------------------ When I run it like this, I also get an error: ------------------------ $ net start sshd The CYGWIN sshd service is starting. The CYGWIN sshd service could not be started. The service did not report an error. More help is available by typing NET HELPMSG 3534. ------------------------ Window's Event Viewer shows the service starting, and then almost immediately after, stopping: ------------------------ The CYGWIN sshd service was successfully sent a start control. The CYGWIN sshd service entered the stopped state. ------------------------ The Application log again shows the service stopping for a reason I cannot explain: ------------------------ The description for Event ID ( 0 ) in Source ( sshd ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: sshd: PID 4956: `sshd' service stopped, exit status: 57. ------------------------ I get the same error, regardless if I run this from a Cygwin window as the "Administrator" user, or if I run it from a system-owned console window using Igor's sysbash trick. I attempted to remove the sshd service, and install it manually by doing the following (note that I do use the "-D" option): ------------------------ $ cygrunsrv.exe --verbose -Q sshd Service : sshd Display name : CYGWIN sshd Current State : Stopped Command : /usr/sbin/sshd -D stdin path : /dev/null stdout path : /var/log/sshd.log stderr path : /var/log/sshd.log Environment : CYGWIN="ntsec tty" Process Type : Own Process Startup : Automatic Dependencies : tcpip Account : LocalSystem $ cygrunsrv.exe --remove sshd $ cygrunsrv.exe --install sshd -p /usr/sbin/sshd -a "-D" -y tcpip -d "CYGWIN sshd" -f "Cygwin SSH services" $ cygrunsrv.exe --start sshd cygrunsrv: Error starting a service: QueryServiceStatus: Win32 error 1062: The service has not been started. $ cygrunsrv.exe --verbose -Q sshd Service : sshd Display name : CYGWIN sshd Description : Cygwin SSH services Current State : Stopped Command : /usr/sbin/sshd -D stdin path : /dev/null stdout path : /var/log/sshd.log stderr path : /var/log/sshd.log Process Type : Own Process Startup : Automatic Dependencies : tcpip Account : LocalSystem ------------------------ The cygserver service appears to be working properly: ------------------------ $ cygrunsrv.exe --verbose -Q cygserver Service : cygserver Display name : CYGWIN cygserver Current State : Running Controls Accepted : Stop Command : /usr/sbin/cygserver stdin path : /dev/null stdout path : /var/log/cygserver.log stderr path : /var/log/cygserver.log Process Type : Own Process Startup : Automatic Account : LocalSystem ------------------------ At this point, I uninstalled Cygwin by deleting the c:\CYGWIN folder and reinstalling. After two reboots, (one after uninstalling, and one after reinstalling) I'm still experiencing the same issues. Here are my system details. My machine is running Windows XP Pro, SP2. For readability, I've included some of the information from cygcheck (attached) here. ------------------------ $ uname -a CYGWIN_NT-5.1 dataop 1.5.24(0.156/4/2) 2007-01-31 10:57 i686 Cygwin $ cvgcheck -s -v -r | grep -i open openssh 4.7p1-2 openssl 0.9.8g-1 ------------------------ I checked to make sure all my mounts were system, and not user mounts: ------------------------ $ mount -m mount -f -s -b "C:/Documents and Settings" "/home" mount -f -s -b "C:/cygwin/bin" "/usr/bin" mount -f -s -b "C:/cygwin/lib" "/usr/lib" mount -f -s -b "C:/cygwin" "/" mount -s -b --change-cygdrive-prefix "/cygdrive" ------------------------ I checked permissions on the /etc/ssh* files. My understanding is they should be at least 600. However, given that SSH runs fine from the command line as /usr/sbin/sshd (-d doesn't show errors), I don't think it's a problem with sshd. ------------------------ $ ls -l /etc/ssh* -rwxr-x--- 1 SYSTEM None 1482 Nov 26 16:50 /etc/ssh_config -rw------- 1 SYSTEM None 672 Nov 20 17:24 /etc/ssh_host_dsa_key -rw-r--r-- 1 SYSTEM None 610 Nov 20 17:24 /etc/ssh_host_dsa_key.pub -rw------- 1 SYSTEM None 983 Nov 20 17:24 /etc/ssh_host_key -rw-r--r-- 1 SYSTEM None 647 Nov 20 17:24 /etc/ssh_host_key.pub -rw------- 1 SYSTEM None 1675 Nov 20 17:24 /etc/ssh_host_rsa_key -rw-r--r-- 1 SYSTEM None 402 Nov 20 17:24 /etc/ssh_host_rsa_key.pub -rw-r--r-- 1 SYSTEM None 3198 Nov 26 16:50 /etc/sshd_config ------------------------ I chown'd the /var/empty folder to the "SYSTEM" user, and then set permissions on it to 777. I also opened up permissions on /var/log. ------------------------ $ ls -l /var total 72 drwxrwx---+ 3 Administrator Users 0 Nov 20 17:23 cache drwxrwxrwx+ 2 SYSTEM root 0 Nov 20 17:24 empty drwxrwx---+ 3 Administrator Users 0 Nov 20 17:22 lib drwxrwxrwx+ 2 Administrator Users 0 Nov 27 11:35 log -rw-r--r-- 1 Administrator None 73120 Nov 27 11:56 out drwxrwxrwx+ 2 Administrator Users 0 Nov 20 17:26 run drwxrwx---+ 2 Administrator Users 0 Nov 20 17:22 tmp ------------------------ Going through Windows Explorer, I added "Full Control" for the SYSTEMS user to the following directories. C:\cygwin\bin C:\cygwin\var\log C:\cygwin\var C:\cygwin\ Finally, I made sure that cygwin1.dll was executable by everyone. I also checked for duplicate copies of this file on my system. ------------------------ $ls -l /cygdrive/c/cygwin/bin/cygwin1.dll -rwxr-xr-x+ 1 Administrator Users 1873811 Jan 31 2007 /cygdrive/c/cygwin/bin/cygwin1.dll ------------------------ I'm out of ideas. Does anyone have suggestions as to what I could look at next? Thanks for your help. --------------020305050802030008020508 Content-Type: text/plain; name="cygcheck" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="cygcheck" Cygwin Configuration Diagnostics Current System Time: Tue Nov 27 13:15:18 2007 Windows XP Professional Ver 5.1 Build 2600 Service Pack 2 Running in Terminal Service session Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin C:\cygwin\usr\X11R6\bin c:\WINDOWS\system32 c:\WINDOWS c:\WINDOWS\System32\Wbem c:\Program Files\Intel\DMIX c:\Program Files\Aspera\FASP\bin Output from C:\cygwin\bin\id.exe (nontsec) UID: 500(Administrator) GID: 513(None) 0(root) 513(None) 544(Administrators) 545(Users) Output from C:\cygwin\bin\id.exe (ntsec) UID: 500(Administrator) GID: 513(None) 0(root) 513(None) 544(Administrators) 545(Users) SysDir: C:\WINDOWS\system32 WinDir: C:\WINDOWS USER = 'Administrator' PWD = '/home/Administrator' HOME = '/home/Administrator' MAKE_MODE = 'unix' HOMEPATH = '\Documents and Settings\Administrator' MANPATH = '/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man' APPDATA = 'C:\Documents and Settings\Administrator\Application Data' HOSTNAME = 'dataop' TERM = 'cygwin' PROCESSOR_IDENTIFIER = 'x86 Family 15 Model 2 Stepping 9, GenuineIntel' WINDIR = 'C:\WINDOWS' OLDPWD = '/usr/bin' USERDOMAIN = 'DATAOP' OS = 'Windows_NT' ALLUSERSPROFILE = 'C:\Documents and Settings\All Users' !:: = '::\' TEMP = '/cygdrive/c/DOCUME~1/ADMINI~1/LOCALS~1/Temp' COMMONPROGRAMFILES = 'C:\Program Files\Common Files' USERNAME = 'Administrator' PROCESSOR_LEVEL = '15' FP_NO_HOST_CHECK = 'NO' SYSTEMDRIVE = 'C:' USERPROFILE = 'C:\Documents and Settings\Administrator' PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ ' LOGONSERVER = '\\DATAOP' PROCESSOR_ARCHITECTURE = 'x86' !C: = 'C:\cygwin\bin' SHLVL = '1' PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH' HOMEDRIVE = 'C:' PROMPT = '$P$G' COMSPEC = 'C:\WINDOWS\system32\cmd.exe' TMP = '/cygdrive/c/DOCUME~1/ADMINI~1/LOCALS~1/Temp' SYSTEMROOT = 'C:\WINDOWS' CVS_RSH = '/bin/ssh' PROCESSOR_REVISION = '0209' INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:' PROGRAMFILES = 'C:\Program Files' NUMBER_OF_PROCESSORS = '2' SESSIONNAME = 'RDP-Tcp#3' COMPUTERNAME = 'DATAOP' _ = '/usr/bin/cygcheck.exe' POSIXLY_CORRECT = '1' HKEY_CURRENT_USER\Software\Cygnus Solutions HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2 HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2 (default) = '/cygdrive' cygdrive flags = 0x00000022 HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/ (default) = 'C:\cygwin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/home (default) = 'C:\Documents and Settings' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin (default) = 'C:\cygwin/bin' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib (default) = 'C:\cygwin/lib' flags = 0x0000000a HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options (default) = '' a: fd N/A N/A c: hd NTFS 76308Mb 8% CP CS UN PA FC d: cd N/A N/A j: hd SNFS 83842520Mb 70% CP CS hpsans7 k: hd SNFS 83842520Mb 70% CP CS hpsans8 l: hd SNFS 83842520Mb 75% CP CS hpsans9 m: hd SNFS 16776176Mb 55% CP CS hpsans10 n: hd SNFS 16776176Mb 53% CP CS hpsans11 o: hd SNFS 16776176Mb 83% CP CS hpsans12 p: hd SNFS 16776176Mb 83% CP CS hpsans13 q: hd SNFS 16776176Mb 82% CP CS hpsans14 r: hd SNFS 16776176Mb 83% CP CS hpsans15 s: hd SNFS 16776176Mb 84% CP CS hpsans16 t: hd SNFS 16776176Mb 83% CP CS hpsans17 u: hd SNFS 16776176Mb 81% CP CS hpsans18 v: hd SNFS 16776176Mb 76% CP CS hpsans19 C:\cygwin / system binmode C:\Documents and Settings /home system binmode C:\cygwin/bin /usr/bin system binmode C:\cygwin/lib /usr/lib system binmode . /cygdrive system binmode,cygdrive Found: C:\cygwin\bin\awk.exe Found: C:\cygwin\bin\bash.exe Found: C:\cygwin\bin\cat.exe Found: C:\cygwin\bin\cp.exe Found: c:\Program Files\Aspera\FASP\bin\cp.exe Warning: C:\cygwin\bin\cp.exe hides c:\Program Files\Aspera\FASP\bin\cp.exe Found: C:\cygwin\bin\cpp.exe Not Found: crontab Found: C:\cygwin\bin\find.exe Found: C:\cygwin\bin\gcc.exe Not Found: gdb Found: C:\cygwin\bin\grep.exe Found: C:\cygwin\bin\kill.exe Found: C:\cygwin\bin\ld.exe Found: C:\cygwin\bin\ls.exe Found: c:\Program Files\Aspera\FASP\bin\ls.exe Warning: C:\cygwin\bin\ls.exe hides c:\Program Files\Aspera\FASP\bin\ls.exe Found: C:\cygwin\bin\make.exe Found: C:\cygwin\bin\mv.exe Found: c:\Program Files\Aspera\FASP\bin\mv.exe Warning: C:\cygwin\bin\mv.exe hides c:\Program Files\Aspera\FASP\bin\mv.exe Not Found: patch Found: C:\cygwin\bin\perl.exe Found: C:\cygwin\bin\rm.exe Found: c:\Program Files\Aspera\FASP\bin\rm.exe Warning: C:\cygwin\bin\rm.exe hides c:\Program Files\Aspera\FASP\bin\rm.exe Found: C:\cygwin\bin\sed.exe Found: C:\cygwin\bin\ssh.exe Found: c:\Program Files\Aspera\FASP\bin\ssh.exe Warning: C:\cygwin\bin\ssh.exe hides c:\Program Files\Aspera\FASP\bin\ssh.exe Found: C:\cygwin\bin\sh.exe Found: C:\cygwin\bin\tar.exe Found: C:\cygwin\bin\test.exe Not Found: vi Found: C:\cygwin\bin\vim.exe 61k 2006/11/10 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0 "cygbz2-1.dll" v0.0 ts=2006/11/10 15:42 7k 2003/10/19 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 0:57 1059k 2007/10/19 C:\cygwin\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.8.dll" v0.0 ts=2007/10/19 4:45 895k 2004/04/28 C:\cygwin\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.2.dll" v0.0 ts=2004/4/27 8:31 965k 2005/05/14 C:\cygwin\bin\cygdb-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb-4.3.dll" v0.0 ts=2005/5/14 5:37 1156k 2004/04/28 C:\cygwin\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 8:35 1240k 2005/05/14 C:\cygwin\bin\cygdb_cxx-4.3.dll - os=4.0 img=1.0 sys=4.0 "cygdb_cxx-4.3.dll" v0.0 ts=2005/5/14 5:41 118k 2007/04/06 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0 "cygexpat-0.dll" v0.0 ts=2007/4/6 13:43 40k 2006/11/15 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0 "cygform-8.dll" v0.0 ts=2006/11/14 23:06 19k 2006/11/19 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm-4.dll" v0.0 ts=2006/11/19 0:18 8k 2006/11/19 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0 "cyggdbm_compat-4.dll" v0.0 ts=2006/11/19 0:18 25k 2007/08/23 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0 "cyghistory6.dll" v0.0 ts=2007/8/23 15:01 271k 2007/08/24 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.0 sys=4.0 "cygicons-0.dll" v0.0 ts=2007/8/24 0:24 976k 2006/10/22 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2006/10/22 16:44 37k 2003/08/10 C:\cygwin\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0 "cygintl-2.dll" v0.0 ts=2003/8/10 14:50 31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0 "cygintl-3.dll" v0.0 ts=2005/11/19 18:04 31k 2006/10/23 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0 "cygintl-8.dll" v0.0 ts=2006/10/22 17:12 21k 2006/11/15 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0 "cygmenu-8.dll" v0.0 ts=2006/11/14 23:05 20k 2006/12/21 C:\cygwin\bin\cygminires.dll - os=4.0 img=1.1 sys=4.0 "cygminires.dll" v0.0 ts=2006/12/20 21:07 67k 2006/11/15 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses++-8.dll" v0.0 ts=2006/11/14 23:13 237k 2006/11/15 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2006/11/14 23:02 12k 2006/11/15 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0 "cygpanel-8.dll" v0.0 ts=2006/11/14 23:04 133k 2007/06/27 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcre-0.dll" v0.0 ts=2007/6/26 20:49 303k 2007/06/27 C:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcrecpp-0.dll" v0.0 ts=2007/6/26 20:50 7k 2007/06/27 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0 "cygpcreposix-0.dll" v0.0 ts=2007/6/26 20:50 1224k 2007/07/19 C:\cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0 "cygperl5_8.dll" v0.0 ts=2007/7/8 12:14 22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0 "cygpopt-0.dll" v0.0 ts=2002/6/8 22:45 154k 2007/08/23 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2007/8/23 15:01 219k 2007/10/19 C:\cygwin\bin\cygssl-0.9.8.dll - os=4.0 img=1.0 sys=4.0 "cygssl-0.9.8.dll" v0.0 ts=2007/10/19 4:45 65k 2006/10/16 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2006/10/15 18:10 1830k 2007/01/31 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0 "cygwin1.dll" v0.0 ts=2007/1/31 1:58 Cygwin DLL version info: DLL version: 1.5.24 DLL epoch: 19 DLL bad signal mask: 19005 DLL old termios: 5 DLL malloc env: 28 API major: 0 API minor: 156 Shared data: 4 DLL identifier: cygwin1 Mount registry: 2 Cygnus registry name: Cygnus Solutions Cygwin registry name: Cygwin Program options name: Program Options Cygwin mount registry name: mounts v2 Cygdrive flags: cygdrive flags Cygdrive prefix: cygdrive prefix Cygdrive default prefix: Build date: Wed Jan 31 10:57:51 CET 2007 CVS tag: cr-0x5f1 Shared id: cygwin1S4 7k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0 "cygcrypt-0.dll" v0.0 ts=2003/10/19 0:57 1050k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygcrypto-0.9.8.dll - os=4.0 img=1.0 sys=4.0 "cygcrypto-0.9.8.dll" v0.0 ts=2006/6/1 9:08 947k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0 "cygiconv-2.dll" v0.0 ts=2005/11/19 18:24 31k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0 "cygintl-3.dll" v0.0 ts=2005/11/19 18:04 21k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygminires.dll - os=4.0 img=1.0 sys=4.0 "cygminires.dll" v0.0 ts=2004/10/22 13:28 227k 2006/03/24 c:\Program Files\Aspera\FASP\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0 "cygncurses-8.dll" v0.0 ts=2006/3/23 20:51 152k 2006/03/25 c:\Program Files\Aspera\FASP\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0 "cygreadline6.dll" v0.0 ts=2006/3/25 6:05 65k 2007/09/20 c:\Program Files\Aspera\FASP\bin\cygz.dll - os=4.0 img=1.0 sys=4.0 "cygz.dll" v0.0 ts=2005/8/22 19:03 Service : cygserver Display name : CYGWIN cygserver Current State : Running Controls Accepted : Stop Command : /usr/sbin/cygserver stdin path : /dev/null stdout path : /var/log/cygserver.log stderr path : /var/log/cygserver.log Process Type : Own Process Startup : Automatic Account : LocalSystem Service : sshd Display name : CYGWIN sshd Current State : Stopped Command : /usr/sbin/sshd -D stdin path : /dev/null stdout path : /var/log/sshd.log stderr path : /var/log/sshd.log Environment : CYGWIN="ntsec tty" Process Type : Own Process Startup : Automatic Dependencies : tcpip Account : LocalSystem Cygwin Package Information Last downloaded files to: C:\Documents and Settings\Administrator\Desktop Last downloaded files from: http://mirror.rhsmith.umd.edu/pub/cygwin Package Version _update-info-dir 00557-1 alternatives 1.3.29a-1 ash 20040127-3 base-files 3.7-1 base-passwd 2.2-1 bash 3.2.25-17 binutils 20060817-1 bzip2 1.0.3-2 cocom 0.995-1 coreutils 6.9-5 crypt 1.1-1 cvs 1.11.22-1 cygrunsrv 1.17-1 cygutils 1.3.2-1 cygwin 1.5.24-2 cygwin-doc 1.4-4 dejagnu 20021217-2 editrights 1.01-1 expat 1.95.8-2 expect 20030128-1 findutils 4.3.10-1 gawk 3.1.6-1 gcc 3.4.4-3 gcc-core 3.4.4-3 gcc-g++ 3.4.4-3 gcc-mingw-core 20050522-1 gcc-mingw-g++ 20050522-1 grep 2.5.1a-4 groff 1.18.1-2 gzip 1.3.12-2 less 382-1 libbz2_1 1.0.3-2 libdb4.2 4.2.52-1 libdb4.3 4.3.28-1 libexpat0 1.95.8-2 libgdbm4 1.8.3-8 libiconv2 1.11-1 libintl2 0.12.1-3 libintl3 0.14.5-1 libintl8 0.15-1 libncurses8 5.5-3 libpcre0 7.2-1 libpopt0 1.6.4-4 libreadline6 5.2.7-9 login 1.9-7 make 3.81-1 man 1.6e-1 mingw-runtime 3.13-1 minires 1.01-1 mktemp 1.5-4 openssh 4.7p1-2 openssl 0.9.8g-1 perl 5.8.8-4 rebase 2.4.3-1 run 1.1.10-1 sed 4.1.5-2 tar 1.19-1 tcltk 20060202-1 termcap 20050421-1 terminfo 5.5_20061104-1 texinfo 4.8a-1 vim 7.1-1 w32api 3.10-1 which 1.7-1 zlib 1.2.3-2 Use -h to see help about each section --------------020305050802030008020508 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------020305050802030008020508--