Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions] [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin] [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin/mounts v2] "cygdrive prefix"="/cygdrive" "cygdrive flags"=dword:00000022 [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin/mounts v2//] "native"="E://cygwin" "flags"=dword:0000000a [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin/mounts v2//usr/bin] "native"="E://cygwin/bin" "flags"=dword:0000000a [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin/mounts v2//usr/lib] "native"="E://cygwin/lib" "flags"=dword:0000000a [HKEY_LOCAL_MACHINE/SOFTWARE/Cygnus Solutions/Cygwin/Program Options] |
(2) 前面的弄好之后,运行cygwin.bat后仍然有问题:
Your group is currently "mkpasswd". This indicates that the /etc/passwd (and possibly /etc/group) files should be rebuilt. See the man pages for mkpasswd and mkgroup then, for example, run mkpasswd -l [-d] > /etc/passwd mkgroup -l [-d] > /etc/group Note that the -d switch is necessary for domain users. $ |
主要是因为我原来的windows系统用户名与新装的系统用户名不一样所致
按照提示运行
$ mkpasswd -l > /etc/passwd
$ mkgroup -l > /etc/group
再重新运行cygwin.bat就好了.
也可以直接修改/etc/passwd,把里面涉及到原系统用户名的地方都更新为现在的用户名,也能好使。