This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ssh to 2003 server exist immediately


Larry Hall (Cygwin) wrote:
Andrew DeFaria wrote:
Larry Hall (Cygwin) wrote:
Andrew DeFaria wrote:
Larry Hall (Cygwin) wrote:
Andrew DeFaria wrote:
I'm trying to set up ssh access to a Windows 2003 server. I am having a problem in that when I ssh to this server it immediately exits and I find the following in /var/log/sshd.log:

5 [main] sshd 12912 C:\Cygwin\usr\sbin\sshd.exe: *** fatal error - could not load ws2_32, Win32 error 0

Forgive me I did do some research about setting up ssh on a 2003 server and I believe I've very close to having it set up correctly but I'm still missing something. I created a local sshd_server user and added things like "Act as part of the operating system", "Replace process level token", etc. I did not see a setting for "Increase quota". Note that I am using a local sshd_server users (i.e. <machine>\sshd_server) as the logon for the sshd service. I don't believe I'm using privilege separation.

I had to use mmc and a Group Policy editor for the domain to add this local user into the rights at the domain level before this would work. Still when I try to ssh in I get a password prompt but after that the above gets written into the sshd.log and the prompt returns.

Note that I also use this local sshd_server user for inetd so that rsh can and does work. Insecure I know and I'd like to switch this client over to using all ssh but I gotta get it working for them.

Thanks in advance.
Why not use ssh-host-config to set up sshd? It will create sshd_server for you in the proper way.
I did! sshd_server would not have been my choice of a username had I done this by hand (the user daemon comes to mind). However that was not working. This is a domain environment so the sshd_server user could be <domain>\sshd_server or <local machine>\sshd_server. I don't think I have enough privilege to add a domain user so I made it a local user.

Plus I believe that domain policies did not allow me to modify the user rights of this local user. (From memory) I believe I went into mmc and added the Group Policy Editor snapin then attempted to add the local sshd_server to the users that have say "Act as part of the operating system" rights but the add button was grayed out. Last night while trying again I noticed I could add Domain Group Policy snapin and much to my surprise I was able to add the <local server>\sshd_server user to the "Act as part of operating system" and "replace process level token" lists. Again I didn't see an "Increase quota". This got inetd and rsh working but ssh still produces an error.

Actually, assuming I can create say a domain "daemon" user for use with sshd and inetd, etc., would it be better to do this at the domain level. I would like to allow others in the domain to set up ssh or inetd with the rights to SU...
No tweaking of the permissions for sshd_server is necessary and it's not required to add sshd_server to any other users to get things to work. sshd_server is a local user created to run the service and nothing else. To login via 'ssh' with a domain user, just make sure the domain user is in your '/etc/passwd' file and your '/etc/group' file contains the proper
domain groups. See 'man mkpasswd' and 'man mkgroup' if these users and groups are not already in these files.
/etc/passwd and /etc/group are symlinks to a shared and up to date copy of the output of mkpasswd/mkgroup. That's not the issue. As I understand it, for sshd (or in.rlogind) to "switch user" it needs special privileges. Indeed the documentation alludes to that. And until I added those permissions to the sshd_server user ssh/rsh would not work at all.
But if you ran /bin/ssh-host-config and told it to create sshd_server when it asked you to, it will add these rights automatically. There's no need to do it yourself. Just take a look at /bin/ssh-host-config. The calls to "editrights" in the section that handles the creation of the sshd_server user/group specifically adds the privileges that are necessary to switch the user context on W2K3. If it failed to set these permission you should have been warned.
I don't recall getting errors from ssh-host-config initially. I thought that perhaps some sort of domain policy might be overriding me. In any event I had high hopes that redoing this would correct the problems but it doesn't appear to have. Here's what I did:

* Stopped current sshd service (net stop sshd)
* Removed service (cygrunsrv -R sshd)
* Removed local sshd_server account since I want ssh-host-config to recreate it
* Removed /var/empty and /var/log/sshd.log, again I want ssh-host-config to create these properly
* Ran ssh-host-config:


$ ssh-host-config
Overwrite existing /etc/ssh_config file? (yes/no) yes
Generating /etc/ssh_config file
Overwrite existing /etc/sshd_config file? (yes/no) yes
Privilege separation is set to yes by default since OpenSSH 3.3.
However, this requires a non-privileged account called 'sshd'.
For more info on privilege separation read /usr/share/doc/openssh/README.privsep.


Should privilege separation be used? (yes/no) no
Generating /etc/sshd_config file


Warning: The following functions require administrator privileges!


Do you want to install sshd as service?
(Say "no" if it's already installed as service) (yes/no) yes

You appear to be running Windows 2003 Server or later.  On 2003 and
later systems, it's not possible to use the LocalSystem account
if sshd should allow passwordless logon (e. g. public key authentication).
If you want to enable that functionality, it's required to create a new
account 'sshd_server' with special privileges, which is then used to run
the sshd service under.

Should this script create a new local account 'sshd_server' which has
the required privileges? (yes/no) yes

Please enter a password for new user 'sshd_server'.  Please be sure that
this password matches the password rules given on your system.
Entering no password will exit the configuration.  PASSWORD=******

WARNING: User sshd_server has password expiry set to system default.
Please check that password never expires or set it to your needs.

User 'sshd_server' has been created with password '******'.
If you change the password, please keep in mind to change the password
for the sshd service, too.

Also keep in mind that the user sshd_server needs read permissions on all
users' .ssh/authorized_keys file to allow public key authentication for
these users!.  (Re-)running ssh-user-config for each user will set the
required permissions correctly.


Which value should the environment variable CYGWIN have when sshd starts? It's recommended to set at least "ntsec" to be able to change user context without password. Default is "ntsec". CYGWIN=ntsec smbntsec

The service has been installed under sshd_server account.
To start the service, call `net start sshd' or `cygrunsrv -S sshd'.
chown: changing ownership of `/var/empty': Invalid argument

Host configuration finished. Have fun!

NOTE: I don't know why I have the chown error on /var/empty. On other working systems it's owned by SYSTEM:SYSTEM so I:

$ chown SYSTEM:SYSTEM /var/empty
$ ls -ld /var/empty
drwxr-xr-x+ 2 SYSTEM SYSTEM 0 May 13 19:52 /var/empty/

* Start sshd (net start sshd)
* Check /var/log/sshd.log

$ ls -l /var/log/sshd.log
-rw-r--r-- 1 sshd_server ???????? 0 May 13 19:56 /var/log/sshd.log

Not sure why it's got a weird group (GID 109).

* Try and ssh into the local machine from the local machine:

$ ssh sons-sc-cc
ccadmin@sons-sc-cc's password:
Connection to sons-sc-cc closed.
$

* Checked the contents of the sshd.log:

$ cat /var/log/sshd.log
4 [main] sshd 8236 C:\Cygwin\usr\sbin\sshd.exe: *** fatal error - could not load ws2_32, Win32 error 0


Same problem.
(rsh, started from inetd that is as inetd was also logging on as the sshd_server user). Still, while rsh works, ssh refuses to work citing the error message above in /var/log/sshd.log. IOW I can rsh <server> and get in. I can also rsh <server> <command> and have <command> run on <server> (provided /etc/passwd on <server> has a blank password for the user). However I cannot ssh <server>. When I do so it prompts for the password then abruptly logs out with the only clue left in <server>:/var/log/sshd.log.
Well you can always run the client and the server in debug mode and track each one's progress. The server is always a little more helpful. But if you can't figure out anything else, I'd go back and retry running /bin/ssh-host-config after deleting the sshd_server user/group. Pay close attention to what it says concerning sshd_server.
Well trying that gives me:

$ /usr/sbin/sshd -d
debug1: sshd version OpenSSH_4.3p2
Could not load host key: /etc/ssh_host_key
Could not load host key: /etc/ssh_host_rsa_key
Could not load host key: /etc/ssh_host_dsa_key
Disabling protocol version 1. Could not load host key
Disabling protocol version 2. Could not load host key
sshd: no hostkeys available -- exiting.

Apparently my user can't read on of those key files...

Chmod'ing them to 644 gets me to be able to start sshd with -d. Attempting to ssh in then works! Hmmm... Chmod'ing back to 600 on those ssh_host_*_key files and restarting sshd fails as before.

Trying to runas sshd_server says that user doesn't have login rights. Used editrights to add SeInteractiveLogin right and remove SeDenyInteractiveLogin right for the sshd_server user. Ran cmd as sshd_server and then sshd -d. Attempted ssh to login and now I see....

Failed publickey for ccadmin from 192.168.0.99 port 4578 ssh2
debug1: userauth-request for user ccadmin service ssh-connection method keyboard
-interactive
debug1: attempt 3 failures 3
debug1: keyboard-interactive devs
debug1: auth2_challenge: user=ccadmin devs=
debug1: kbdint_alloc: devices ''
Failed keyboard-interactive for ccadmin from 192.168.0.99 port 4578 ssh2
debug1: userauth-request for user ccadmin service ssh-connection method password


debug1: attempt 4 failures 4
Accepted password for ccadmin from 192.168.0.99 port 4578 ssh2
debug1: Entering interactive session for SSH2.
debug1: server_init_dispatch_20
debug1: server_input_channel_open: ctype session rchan 0 win 65536 max 16384
debug1: input_session_request
debug1: channel 0: new [server-session]
debug1: session_new: init
debug1: session_new: session 0
debug1: session_open: channel 0
debug1: session_open: session 0: link with channel 0
debug1: server_input_channel_open: confirm session
debug1: server_input_channel_req: channel 0 request pty-req reply 0
debug1: session_by_channel: session 0 channel 0
debug1: session_input_channel_req: session 0 req pty-req
debug1: Allocating pty.
debug1: session_pty_req: session 0 alloc /dev/tty5
debug1: server_input_channel_req: channel 0 request shell reply 0
debug1: session_by_channel: session 0 channel 0
debug1: session_input_channel_req: session 0 req shell
4 [main] sshd 5480 C:\Cygwin\usr\sbin\sshd.exe: *** fatal error - could not load ws2_32, Win32 error 0
debug1: Received SIGCHLD.
debug1: session_by_pid: pid 5480
debug1: session_exit_message: session 0 channel 0 pid 5480
debug1: session_exit_message: release channel 0
debug1: session_pty_cleanup: session 0 release /dev/tty5
syslogin_perform_logout: logout() returned an error
debug1: session_by_channel: session 0 channel 0
debug1: session_close_by_channel: channel 0 child 0
debug1: session_close: session 0 pid 0
debug1: channel 0: free: server-session, nchannels 1
Connection closed by 192.168.0.99
debug1: do_cleanup
Closing connection to 192.168.0.99


So this verifies the same thing I see in /var/log/sshd.log: sshd cannot load ws2_32 for some reason!
--
FATAL ERROR! SYSTEM HALTED! - Press any key to do nothing.
Cygwin Configuration Diagnostics
Current System Time: Sat May 13 20:04:59 2006

Windows 2003 Server Ver 5.2 Build 3790 Service Pack 1

Running in Terminal Service session

Path:	.\
	\\sonscentral\users\ccadmin\bin
	\\sons-sc-cc\Views\official\Tools\adm\bin
	\\sons-sc-cc\Views\official\Tools\bin
	\\sons-clearcase\Tools\Perl\bin
	C:\cygwin\bin
	C:\Cygwin\bin
	C:\Cygwin\usr\X11R6\bin
	C:\Cygwin\usr\X11R6\bin
	C:\Cygwin\usr\local\bin
	C:\Cygwin\usr\sbin
	c:\WINDOWS\System32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem
	C:\Program Files\Rational\ClearCase\bin
	C:\Program Files\Rational\common
	C:\Program Files\Rational\SqlAnywhere8\win32
	C:\Program Files\Rational\SqlAnywhere8\Sybase Central 4.1

Output from C:\cygwin\bin\id.exe (nontsec)
UID: 1322(ccadmin)     GID: 513(Domain Users)
1834(clearcase)        512(Domain Admins)     513(Domain Users)

Output from C:\cygwin\bin\id.exe (ntsec)
UID: 1322(ccadmin)     GID: 513(Domain Users)
1834(clearcase)        512(Domain Admins)     513(Domain Users)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'ccadmin'
PWD = '/apps/Rational/ClearCase/var/shipping/ms_ship'
CYGWIN = 'ntsec smbntsec'
HOME = '/us/ccadmin'
MAKE_MODE = 'unix'

build = '/view/ccadmin_view/salira/neopon/build'
CLEARCASE_BLD_HOST_TYPE = 'Windows'
SITE_REGION = 'SC'
HOMEPATH = '\Documents and Settings\ccadmin'
MANPATH = ':/usr/ssl/man:/usr/share/man'
APPDATA = 'C:\Documents and Settings\ccadmin\Application Data'
SITE_VIEW_SHARENAME = 'Views'
SITE_ADMIN_EMAIL = 'JStribling@Salira.com'
CLEARTOOL = 'C:/Program Files/Rational/ClearCase/Bin/Cleartool'
SHELL = '/bin/bash'
TERM = 'cygwin'
PROCESSOR_IDENTIFIER = 'x86 Family 15 Model 4 Stepping 3, GenuineIntel'
source = '/view/ccadmin_view/salira/neopon/src'
WINDIR = 'C:\WINDOWS'
TISDIR = 'C:\Program Files\Rational\common'
WINDOWID = '4486848'
OLDPWD = '/us/ccadmin'
USERDOMAIN = 'SALIRA'
OS = '5'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
LOGS = 'C:/Program Files/Rational/ClearCase/var/log'
SITE_ADMIN = 'Jeff Stribling'
!:: = '::\'
SITE_NAME_LONG = 'Santa Clara'
TEMP = '/dev/c/DOCUME~1/ccadmin/LOCALS~1/Temp/1'
COMMONPROGRAMFILES = 'C:\Program Files\Common Files'
SITE_RELEASE_PATH = 'Release Corporate/Software/Release'
interactive = 'false'
IBMLDAP_ALTHOME = 'C:\Program Files\Rational\common\codeset'
SITE_OFFICIAL_VIEW = 'official'
SITE_DYNAMIC_VIEW_PATH = '/dview'
SITE_HOME_SERVER = 'sonscentral'
RATL_RTHOME = 'C:\Program Files\Rational\Rational Test'
USERNAME = 'ccadmin'
CLUSTERLOG = 'C:\WINDOWS\Cluster\cluster.log'
PAGER = 'less -s'
RGY = 'C:/Program Files/Rational/ClearCase/var/atria/rgy'
NUTSUFFIX = '1'
PROCESSOR_LEVEL = '15'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
ASANYSH8 = 'C:\Program Files\Rational\SqlAnywhere8'
SITE_SNAPSHOT_VIEW_PATH = '/view'
ASANY8 = 'C:\Program Files\Rational\SqlAnywhere8'
common = '//sonscentral/Corporate2/Software'
SITE_VIEW_SERVER = 'sons-sc-cc'
USERPROFILE = 'C:\Documents and Settings\ccadmin'
CLIENTNAME = 'VOYAGER'
SITE_ANON_FTP_SERVER = 'sons-sc-cc'
SLOGS = 'C:/Program Files/Rational/ClearCase/var/log/sync_logs'
salira = '/view/ccadmin_view/salira'
SYSNAME = 'sons-sc-cc'
PS1 = '\[\e]0;ms_ship    /apps/Rational/ClearCase/var/shipping/ms_ship\a\e[41m[ccadmin] sons-sc-cc:\e[0m'
LOGONSERVER = '\\SONS-SC-DC1'
tools = '/view/ccadmin_view/salira/tools/Tornado'
SITE_VIEW_STORAGE = '//sons-sc-cc/Views'
PROCESSOR_ARCHITECTURE = 'x86'
SB = 'C:/Program Files/Rational/ClearCase/var/shipping/ms_ship'
SITE_TOOLS_VIEW = 'official'
SITE_HOME_SHARENAME = 'users'
MULTITOOL = 'C:/Program Files/Rational/Clearcase/Bin/Multitool.exe'
SITE_VOB_SERVER = 'sons-sc-cc'
SHLVL = '1'
PS4 = '${0##*/} line $LINENO:'
COLORFGBG = '15;default'
USERDNSDOMAIN = 'SALIRA.COM'
RWPHOME = 'C:\Program Files\Rational\common\rwp'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = 'C:'
myview = '/view/ccadmin_view'
NUT_SUFFIXED_SEARCHING = '1'
VENDOR = 'Unknown'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
LESS = 'eiXP?f%f :[stdin] .?pt(%pt\%):?bt(%bt bytes):-..'
TMP = '/dev/c/DOCUME~1/ccadmin/LOCALS~1/Temp/1'
SYSTEMROOT = 'C:\WINDOWS'
VISUAL = 'vim'
GNU_SECURE = '/us/ccadmin/.gnuhosts'
PROCESSOR_REVISION = '0403'
SITE_TOOLS_VOB = 'Tools'
MSHOME = 'C:/Program Files/Rational/Clearcase'
PROGRAMFILES = 'C:\Program Files'
SITE_BUILD_SERVER = 'sons-sc-cc'
DISPLAY = ':0'
HOMESHARE = '\\sonscentral\ccadmin$'
CCHOME = 'C:/Program Files/Rational/ClearCase'
NUMBER_OF_PROCESSORS = '4'
SITE_TOOLS_PATH = '/view/official/Tools'
SITE_NAME = 'SC'
SESSIONNAME = 'RDP-Tcp#1'
COMPUTERNAME = 'SONS-SC-CC'
SITE_RELEASE_SERVER = 'sc-swlab-ftp sonscentral'
COLORTERM = 'rxvt-xpm'
rlogin = '() {  /usr/bin/rlogin "$@"
}'
set_prompt = '() {  uid=$(id | cut -f2 -d= | cut -f1 -d\();
 if [ $uid -eq 0 ]; then
 if [ "$TERM" = "hpterm" -o "$TERM" = "hp" -o "$TERM" = "2392A" -o "$TERM" = "dtterm" -o ! -z "$DTTERM" ]; then
 ROOT="${RED}Wizard$NORMAL ";
 else
 if [ "$TERM" = "vt100" -o "$TERM" = "vt220" ]; then
 ROOT="${BOLD}${BLINK}Wizard$NORMAL ";
 fi;
 fi;
 else
 ROOT=;
 fi;
 if [ "$TERM" = "vt100" -o "$TERM" = "vt220" ]; then
 PS1="$ROOT$BOLD$SYSNAME:$NORMAL";
 fi
}'
unregister = '() {  ct unregister "$@"
}'
cdiff = '() {  if [ $# = 1 ]; then
 ct diff -diff -pred "$1";
 else
 ct diff -diff "$@";
 fi
}'
rellic = '() {  if [ "_$1" == "_" ]; then
 echo "You must specify username(s) to release Clearcase licenses";
 else
 clearlicense -product ClearCase MultiSite -release "$@";
 fi
}'
llview = '() {  if [ $# = 0 ]; then
 ct lsview -long | less;
 else
 ct lsview -long "$@";
 fi
}'
startview = '() {  ct startview "$@"
}'
endview = '() {  ct endview "$@"
}'
set_title = '() {  uid=$(id | cut -f2 -d= | cut -f1 -d\();
 if [ $uid -eq 0 ]; then
 ROOT="Wizard ";
 else
 ROOT=;
 fi;
 view_name="$(pwv -short)";
 if [[ $view_name = *NONE* ]]; then
 view_name="";
 if [ "$HOME" = "$PWD" ]; then
 title_bar "$ROOT~";
 else
 if [ "${PWD#$HOME}" != "$PWD" ]; then
 title_bar "$ROOT~    ${PWD#$HOME/*}";
 else
 title_bar "$ROOT$(basename $PWD)    ${PWD#$HOME/*}";
 fi;
 fi;
 else
 title_bar "${ROOT}$(basename $PWD)    ${PWD#/view/$view_name*}    [$view_name]";
 fi;
 icon_name "${SYSNAME##*:}"
}'
killview = '() {  ct endview -server "$@"
}'
_cd = '() {  if [ "_$1" = "_" ]; then
 dir="$HOME";
 else
 dir="$1";
 fi;
 \cd "$dir";
 set_title;
 set_prompt
}'
space = '() {  ct space "$@"
}'
register = '() {  ct register "$@"
}'
pwv = '() {  "$CLEARTOOL" pwv "$@"
}'
softkeys = '() {  if [ "$TERM" = "hpterm" -o "$TERM" = "hp" ]; then
 echo "${ESC}&f1k0a16d2Lesc esc Complete${ESC}${ESC}${ESC}&f2k0a16d2L esc =  Possible${ESC}=${ESC}&f3k0a16d7L 2>&1 & NoStderr 2>&1 &${ESC}&f4k0a16d2L esc *   Expand ${ESC}*${ESC}&f5k0a16d2L esc #   Comment${ESC}#${ESC}&f6k0a16d2L esc _  Last Arg${ESC}_${ESC}&f7k0a16d6L ps -ef         ps -ef${ESC}&f8k2a16d4L exit           exit\c";
 fi
}'
ctdiff = '() {  if [ $# = 1 ]; then
 ct xdiff -vstack -pred "$1";
 else
 ct xdiff -vstack "$@";
 fi
}'
mktag = '() {  ct mktag "$@"
}'
lsview = '() {  if [ $# = 0 ]; then
 ct lsview | less;
 else
 if [ $# = 1 ]; then
 ct lsview | grep "$1";
 else
 ct lsview "$@";
 fi;
 fi
}'
icon_name = '() {  if [ "$TERM" = "hpterm" -o "$TERM" = "hp" -o "$TERM" = "2392A" ]; then
 string=$(echo "$1");
 echo -n "${ESC}&f-1k${#string}D$string";
 else
 if [ "$TERM" = "dtterm" -o "$TERM" = "vt100" -a "$DTTERM" = "True" ]; then
 echo -n "${ESC}]1;$@\007";
 fi;
 fi
}'
llvob = '() {  if [ $# = 0 ]; then
 ct lsvob -long | less;
 else
 ct lsvob -long "$@";
 fi
}'
mkview = '() {  ct mkview "$@"
}'
lsvob = '() {  if [ $# = 0 ]; then
 ct lsvob | less;
 else
 if [ $# = 1 ]; then
 ct lsvob | grep "$1";
 else
 ct lsvob "$@";
 fi;
 fi
}'
catcs = '() {  ct catcs "$@"
}'
title_bar = '() {  if [ "$TERM" = "hpterm" -o "$TERM" = "hp" -o "$TERM" = "2392A" ]; then
 string=$(echo "${SYSNAME##*:}:$@");
 echo -n "${ESC}&f0k${#string}D$string";
 else
 if [ "$TERM" = "dtterm" -o "$TERM" = "vt100" -o "$TERM" = "vt221" ]; then
 string=$(echo "${SYSNAME##*:}:$@");
 echo -n "${ESC}]2;$string\007";
 else
 if [ "$TERM" = "cygwin" ]; then
 if [ $USER = "adefaria" ]; then
 PS1="\[\e]0;$@\a\e[41m$SYSNAME:\e[0m";
 else
 PS1="\[\e]0;$@\a\e[41m[$USER] $SYSNAME:\e[0m";
 fi;
 fi;
 fi;
 fi
}'
rmtag = '() {  ct rmtag "$@"
}'
ct = '() {  "$CLEARTOOL" "$@"
}'
title = '() {  title_bar "$@";
 icon_name "${SYSNAME##*:}"
}'
describe = '() {  ct describe "$@"
}'
rmview = '() {  ct rmview "$@"
}'
lslic = '() {  clearlicense -product ClearCase
}'
edcs = '() {  ct edcs "$@"
}'
rsh = '() {  /usr/bin/rsh "$@"
}'
setcs = '() {  ct setcs "$@"
}'
setview = '() {  echo "Warning: Setview not supported on Windows platforms!"
}'
unco = '() {  if [ $# = 0 ]; then
 echo "Error: No files specified to unco.";
 else
 ct unco -rm "$@";
 fi
}'
_ = '/bin/cygcheck'
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_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_CURRENT_USER\Software\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = '/dev'
  cygdrive flags = 0x0000002a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = 'C:\Cygwin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/apps
  (default) = 'C:\Program Files'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/bin
  (default) = 'C:\cygwin\bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/China
  (default) = '\\sons-shanghai\users'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/dview
  (default) = 'm:'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/release
  (default) = '\\sc-swlab-ftp\release'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/tools
  (default) = '\\sons-sc-cc\Tools'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/us
  (default) = '\\sonscentral\users'
  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\mounts v2\/view
  (default) = '\\sons-sc-cc\Views'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\00
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\01
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\02
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\03
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\04
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\05
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\06
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\07
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\08
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\09
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0D
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0E
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\0F
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\10
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\11
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\12
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\13
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\14
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\15
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\16
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\17
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\18
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\19
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1A
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1B
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1C
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\CYGWIN.DLL setup\b15.0\mounts\1D

c:  hd  NTFS     12291Mb  63% CP CS UN PA FC     
d:  hd  NTFS    139752Mb  10% CP CS UN PA FC     
e:  hd  NTFS     22340Mb   1% CP CS UN PA FC     
f:  cd             N/A    N/A                    
m:  net MVFS      1000Mb  50% CP CS              CCase
t:  net NTFS    139752Mb  10% CP CS UN PA FC     

C:\Cygwin               /         system  binmode
C:\Program Files        /apps     system  binmode
C:\cygwin\bin           /bin      system  binmode
\\sons-shanghai\users   /China    system  binmode
m:                      /dview    system  binmode
\\sc-swlab-ftp\release  /release  system  binmode
\\sons-sc-cc\Tools      /tools    system  binmode
\\sonscentral\users     /us       system  binmode
C:\Cygwin/bin           /usr/bin  system  binmode
C:\Cygwin/lib           /usr/lib  system  binmode
\\sons-sc-cc\Views      /view     system  binmode
.                       /dev      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:\cygwin\bin\cpp.exe
Found: C:\cygwin\bin\crontab.exe
Found: C:\cygwin\bin\find.exe
Found: C:\cygwin\bin\gcc.exe
Found: C:\cygwin\bin\gdb.exe
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:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Not Found: patch
Found: \\sons-clearcase\Tools\Perl\bin\perl.exe
Found: C:\cygwin\bin\perl.exe
Warning: \\sons-clearcase\Tools\Perl\bin\perl.exe hides C:\cygwin\bin\perl.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Found: C:\cygwin\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

  160k 2006/02/18 C:\cygwin\bin\cygapr-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygapr-1-0.dll" v0.0 ts=2006/2/18 1:56
  111k 2006/02/18 C:\cygwin\bin\cygaprutil-1-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygaprutil-1-0.dll" v0.0 ts=2006/2/18 2:02
  113k 2005/07/16 C:\cygwin\bin\cygatk-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygatk-1.0-0.dll" v0.0 ts=2005/7/15 12:37
   56k 2005/07/09 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2005/7/8 22:09
    7k 2005/11/20 C:\cygwin\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2005/11/19 18:24
    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
 1108k 2005/10/17 C:\cygwin\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2005/10/17 2:16
 1047k 2005/10/11 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=2005/10/11 5:47
  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
  174k 2004/10/14 C:\cygwin\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/10/14 1:34
  129k 2004/03/11 C:\cygwin\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2004/3/10 16:12
   40k 2006/03/24 C:\cygwin\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2006/3/23 23:16
   45k 2001/04/25 C:\cygwin\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/24 22:28
   35k 2002/01/09 C:\cygwin\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/8 22:03
   48k 2003/08/09 C:\cygwin\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 2:25
  375k 2005/09/06 C:\cygwin\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2005/9/6 15:51
   28k 2003/07/20 C:\cygwin\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 0:58
   30k 2003/08/11 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 19:12
   19k 2003/03/22 C:\cygwin\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 19:05
   15k 2003/07/20 C:\cygwin\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 1:00
   15k 2003/08/11 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/10 19:13
  451k 2005/12/27 C:\cygwin\bin\cyggdk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk-x11-2.0-0.dll" v0.0 ts=2005/12/26 3:20
   77k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf-2.0-0.dll" v0.0 ts=2005/12/26 3:11
   54k 2005/12/27 C:\cygwin\bin\cyggdk_pixbuf_xlib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdk_pixbuf_xlib-2.0-0.dll" v0.0 ts=2005/12/26 4:03
  557k 2006/01/04 C:\cygwin\bin\cygglib-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygglib-2.0-0.dll" v0.0 ts=2006/1/4 1:48
   10k 2006/01/04 C:\cygwin\bin\cyggmodule-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmodule-2.0-0.dll" v0.0 ts=2006/1/4 1:49
  229k 2006/01/04 C:\cygwin\bin\cyggobject-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggobject-2.0-0.dll" v0.0 ts=2006/1/4 1:49
   14k 2006/01/04 C:\cygwin\bin\cyggthread-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggthread-2.0-0.dll" v0.0 ts=2006/1/4 1:50
 2764k 2005/12/27 C:\cygwin\bin\cyggtk-x11-2.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggtk-x11-2.0-0.dll" v0.0 ts=2005/12/26 3:43
   17k 2001/06/28 C:\cygwin\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 20:34
   29k 2003/08/10 C:\cygwin\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 16:16
   24k 2006/03/25 C:\cygwin\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2006/3/25 6:05
  527k 2006/03/07 C:\cygwin\bin\cyghttpd2core.dll - os=4.0 img=1.0 sys=4.0
                  "cyghttpd2core.dll" v0.0 ts=2006/3/7 12:07
  947k 2005/11/20 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2005/11/19 18:24
   22k 2001/12/13 C:\cygwin\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 1:28
   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
   21k 2001/06/20 C:\cygwin\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 10:09
  132k 2003/08/11 C:\cygwin\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/10 17:37
   48k 2005/11/19 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2005/11/19 3:22
   21k 2006/03/24 C:\cygwin\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2006/3/23 23:16
   26k 2001/04/25 C:\cygwin\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/24 22:27
   20k 2002/01/09 C:\cygwin\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/8 22:03
   29k 2003/08/09 C:\cygwin\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 2:25
   21k 2004/10/22 C:\cygwin\bin\cygminires.dll - os=4.0 img=1.0 sys=4.0
                  "cygminires.dll" v0.0 ts=2004/10/22 13:28
   67k 2006/03/24 C:\cygwin\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2006/3/23 23:17
  156k 2001/04/25 C:\cygwin\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/24 22:29
  175k 2002/01/09 C:\cygwin\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/8 22:03
  227k 2006/03/24 C:\cygwin\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2006/3/23 20:51
  226k 2001/04/25 C:\cygwin\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/24 22:17
  202k 2002/01/09 C:\cygwin\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/8 22:03
  224k 2003/08/09 C:\cygwin\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 2:24
   12k 2006/03/24 C:\cygwin\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2006/3/23 23:16
   15k 2001/04/25 C:\cygwin\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/24 22:27
   12k 2002/01/09 C:\cygwin\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/8 22:03
   19k 2003/08/09 C:\cygwin\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 2:24
  198k 2005/07/18 C:\cygwin\bin\cygpango-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpango-1.0-0.dll" v0.0 ts=2005/7/18 4:26
  134k 2005/07/18 C:\cygwin\bin\cygpangoft2-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoft2-1.0-0.dll" v0.0 ts=2005/7/18 4:28
   33k 2005/07/18 C:\cygwin\bin\cygpangowin32-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangowin32-1.0-0.dll" v0.0 ts=2005/7/18 4:29
   36k 2005/07/18 C:\cygwin\bin\cygpangox-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangox-1.0-0.dll" v0.0 ts=2005/7/18 4:27
   22k 2005/07/18 C:\cygwin\bin\cygpangoxft-1.0-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpangoxft-1.0-0.dll" v0.0 ts=2005/7/18 4:29
  176k 2005/09/06 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2005/9/6 13:49
  299k 2005/09/06 C:\cygwin\bin\cygpcrecpp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcrecpp-0.dll" v0.0 ts=2005/9/6 14:26
    6k 2005/09/06 C:\cygwin\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2005/9/6 14:26
 1249k 2005/12/30 C:\cygwin\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8.dll" v0.0 ts=2005/12/29 17:48
  230k 2005/07/11 C:\cygwin\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2005/7/11 16:50
   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
  108k 2001/06/28 C:\cygwin\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 20:34
  148k 2003/08/10 C:\cygwin\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 16:16
  152k 2006/03/25 C:\cygwin\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2006/3/25 6:05
  231k 2005/10/17 C:\cygwin\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2005/10/17 2:16
  215k 2005/10/11 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=2005/10/11 5:47
  282k 2003/08/11 C:\cygwin\bin\cygtiff4.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff4.dll" v0.0 ts=2003/8/10 19:32
   65k 2005/08/23 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2005/8/22 19:03
 1763k 2006/01/20 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2006/1/20 10:28
    Cygwin DLL version info:
        DLL version: 1.5.19
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 150
        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: Fri Jan 20 13:28:43 EST 2006
        CVS tag: cr-0x5ef
        Shared id: cygwin1S4

  243k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2005/2/23 6:42
   26k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2005/2/23 6:42
   21k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2005/2/23 6:45
   36k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygFS-6.dll" v0.0 ts=2005/2/23 6:34
  358k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2005/2/23 6:39
  438k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2005/2/23 6:41
   75k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2005/2/23 6:28
    9k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2005/2/23 6:28
 1413k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2005/2/23 6:39
   20k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2005/2/23 6:42
   30k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2005/2/23 6:28
  877k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2005/2/23 6:28
  254k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2005/2/23 6:31
  356k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2005/2/23 6:32
  363k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005/2/23 6:33
    9k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2005/2/23 6:44
   30k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2005/2/23 6:43
    9k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2005/2/23 6:44
    7k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXevie-1.dll" v0.0 ts=2005/2/23 6:43
   49k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2005/2/23 6:28
   16k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2005/2/23 6:43
   56k 2004/03/11 C:\Cygwin\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/17 17:42
   63k 2004/03/23 C:\Cygwin\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2004/3/23 14:20
   27k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2005/2/23 6:34
  125k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2005/2/23 6:34
   12k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbui-1.dll" v0.0 ts=2005/2/23 6:34
   76k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2005/2/23 6:30
   11k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2005/2/23 6:30
   26k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005/2/23 6:31
   52k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2005/2/23 6:30
   12k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2005/2/23 6:43
   28k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2005/2/23 6:42
    8k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2005/2/23 6:43
   40k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrx-6.dll" v0.0 ts=2005/2/23 6:53
   25k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrxnest-6.dll" v0.0 ts=2005/2/23 6:53
  282k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2005/2/23 6:29
   27k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2005/2/23 6:43
   17k 2005/02/23 C:\Cygwin\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2005/2/23 6:34

Service             : cqd
Display name        : Clearquest Daemon
Description         : This daemon handles request for ClearQuest information
Current State       : Running
Controls Accepted   : Stop
Command             : C:/Cygwin/usr/local/bin/cqd -v
stdin path          : /dev/null
stdout path         : /var/log/cqd.log
stderr path         : /var/log/cqd.log
Process Type        : Own Process
Startup             : Automatic
Account             : LocalSystem

Service             : cron
Display name        : Cygwin cron
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/cron -D
stdin path          : /dev/null
stdout path         : /var/log/cron.log
stderr path         : /var/log/cron.log
Environment         : MAILTO="JStribling@Salira.com" CYGWIN="ntsec smbntsec" 
Process Type        : Own Process
Startup             : Automatic
Account             : LocalSystem

Service             : sshd
Display name        : CYGWIN sshd
Current State       : Running
Controls Accepted   : Stop
Command             : /usr/sbin/sshd -D
stdin path          : /dev/null
stdout path         : /var/log/sshd.log
stderr path         : /var/log/sshd.log
Environment         : CYGWIN="ntsec smbntsec" 
Process Type        : Own Process
Startup             : Automatic
Dependencies        : tcpip
Account             : .\sshd_server


Cygwin Package Information
Last downloaded files to: D:\Tools\Cygwin
Last downloaded files from: http://mirrors.kernel.org/sources.redhat.com/cygwin

Package              Version
_update-info-dir     00387-1
alternatives         1.3.20a-2
apache2              2.2.0-1
ash                  20040127-3
atk                  1.9.1-1
atk-runtime          1.9.1-1
base-files           3.7-1
base-passwd          2.2-1
bash                 3.0-14
binutils             20050610-1
bzip2                1.0.3-1
coreutils            5.94-1
cron                 3.0.1-19
crypt                1.1-1
cygrunsrv            1.15-1
cygutils             1.3.0-1
cygwin               1.5.19-4
cygwin-doc           1.4-3
dejagnu              20021217-2
diffutils            2.8.7-1
editrights           1.01-1
expat                1.95.8-1
expect               20030128-1
file                 4.16-1
findutils            4.2.27-1
fontconfig           2.2.2-1
freetype2            2.1.9-1
gawk                 3.1.5-4
gcc                  3.4.4-1
gcc-core             3.4.4-1
gcc-g++              3.4.4-1
gcc-mingw            20040810-1
gcc-mingw-core       20050522-1
gcc-mingw-g++        20050522-1
gcc-testsuite        3.4.4-1
gdb                  20041228-3
gdbm                 1.8.3-7
gettext              0.14.5-1
glib2                2.6.6-2
glib2-runtime        2.6.6-2
grep                 2.5.1a-2
groff                1.18.1-2
gtk2-x11             2.6.10-1
gtk2-x11-runtime     2.6.10-1
gvim                 6.4-1
gzip                 1.3.5-1
inetutils            1.3.2-35
less                 381-1
libapr1              1.2.2-1
libaprutil1          1.2.2-1
libbz2_1             1.0.3-1
libcharset1          1.9.2-2
libdb4.2             4.2.52-1
libdb4.3             4.3.28-1
libfontconfig1       2.2.2-1
libfreetype26        2.1.9-1
libgdbm              1.8.0-5
libgdbm-devel        1.8.3-7
libgdbm3             1.8.3-3
libgdbm4             1.8.3-7
libiconv             1.9.2-2
libiconv2            1.9.2-2
libintl              0.10.38-3
libintl1             0.10.40-1
libintl2             0.12.1-3
libintl3             0.14.5-1
libjpeg62            6b-11
libncurses-devel     5.5-2
libncurses5          5.2-1
libncurses6          5.2-8
libncurses7          5.3-4
libncurses8          5.5-2
libpcre0             6.3-1
libpng12             1.2.8-2
libpopt0             1.6.4-4
libreadline4         4.1-2
libreadline5         4.3-5
libreadline6         5.1-5
libtiff4             3.6.0-5
libXft               2.1.6-1
libXft1              1.0.0-1
libXft2              2.1.6-1
login                1.9-7
make                 3.80-1
man                  1.5p-1
mingw-runtime        3.9-2
minires              1.00-1
mktemp               1.5-3
ncftp                3.1.7-1
ncurses              5.5-2
openssh              4.3p2-3
openssl              0.9.8a-1
openssl097           0.9.7i-1
pango                1.8.1-1
pango-runtime        1.8.1-1
pcre                 6.3-1
pcre-devel           6.3-1
pcre-doc             6.3-1
perl                 5.8.7-5
perl-Tk              804.027-4
perl_manpages        5.8.7-5
ping                 1.0-1
procps               3.2.6-1
proftpd              1.2.10-1
readline             5.1-5
rsync                2.6.6-1
run                  1.1.8-1
rxvt                 2.7.10-6
sed                  4.1.5-1
sharutils            4.5.3-1
shutdown             1.7-1
ssmtp                2.60.9-3
tar                  1.15.1-4
tcltk                20030901-1
termcap              20050421-1
terminfo             5.5_20060323-1
texinfo              4.8-1
unzip                5.50-5
vim                  6.4-4
w32api               3.6-1
wget                 1.10.2-1
which                1.7-1
whois                4.7.11-1
X-startup-scripts    1.0.11-1
xinetd               2.3.9-1
xorg-x11-base        6.8.2.0-1
xorg-x11-bin         6.8.2.0-1
xorg-x11-bin-dlls    6.8.2.0-1
xorg-x11-bin-lndir   6.8.2.0-1
xorg-x11-etc         6.8.2.0-1
xorg-x11-fenc        6.8.1.0-2
xorg-x11-fnts        6.8.1.0-3
xorg-x11-libs-data   6.8.2.0-1
xorg-x11-xwin        6.8.2.0-4
xterm                202-1
zip                  2.3-6
zlib                 1.2.3-1
Use -h to see help about each section

--
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/

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]