I am unable to find the etc/passwd file in cygwin
Asked Answered
K

2

18

I recently installed cygwin, and have been unable to find my passwd/etc file in order set to HOME. Is there any way to force cygwin to generate the file?

Kurtzman answered 18/2, 2015 at 0:23 Comment(1)
Did you mean /etc/passwd? I checked its creation date on my PC, which was almost the same as Cygwin.ico. /etc/passwd was created 3 minutes before the icon file. Which means that it was created during the install (2013.09.19).Praemunire
T
31

The /etc/passwd and group files are no longer generated by default, starting with Cygwin 1.7.34.

You can still generate them. Cygwin will use these files preferentially if present, by default, but only to cater to existing installs and special situations.

When these files are not present, Cygwin now uses the native Windows user management mechanisms: Active Directory where present, or SAM where not.

It is therefore recommended that you use this new mechanism to change your home directory. The easiest way I know of to do this is to add a line like this to your /etc/nsswitch.conf file:

db_home: /%H

That will change your Cygwin home directory to be equal to your Windows user profile directory. There are many other legal % tokens you can use here to achieve different results. See the previous link for details.

Timorous answered 19/2, 2015 at 4:12 Comment(3)
So where are they in the Win dir if they were created?Peon
@square_eyes: They're not in the Windows directory at all. /etc/passwd and /etc/group are POSIX paths, not Windows paths. By default, /etc is part of the Cygwin root, so it appears as as c:\cygwin\etc or c:\cygwin64\etc, if you used the default Cygwin installation directory. The mechanism that maps Windows paths to POSIX paths is configurable, however, so these files could be elsewhere.Timorous
This db_home approach has saved me after many hours of googlingObstetric
S
4

In my case, I set db_home: /%H in /etc/nsswitch.conf file, and change permission of my .ssh dirctory to "full control".

Scathing answered 5/8, 2015 at 12:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.