answersLogoWhite

0


Best Answer

Configuration files are typically stored in the /etc directory. They can, of course, be anywhere the implementer wishes them to be as long as the process knows where to find them.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which UNIX system directory contains configuration files such as the passwd file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which two critical system configuration files are modified when removing a user such as when using the userdel command?

/etc/login.defs and /etc/passwd


Where would data for a user's name be stored in a Linux or UNIX system?

The user's name is stored in /etc/passwd and/or /etc/shadow. The user's data is stored in the /home directory.


What directory contains the kernel and other system initialization files on unix-type system?

/boot


Where are configuration files in Linux located?

System-wide configuration files are usually found in /etc. Personalized configuration files are stored in the user's home directory, in files and subdirectories preceded by a "." in their name.


Which directory contains Windows XP OS system files?

C:\windows


Which memory component on a Cisco router contains the dynamic system configuration?

Ram


What configuration file is used to tell Linux which system to use for name resolution authentication etc?

Name resulution can be provided statically with /etc/hosts which usually contains IP addresses along with corresponding domain names, like: 127.0.0.1 localhost localhost.localdomain 127.0.0.2 test.localhost or dynamically, by performing requests to name servers specified in /etc/resolv.conf . Authentication data for local users is held within several files: /etc/group which contains list of existing groups and memberships, /etc/passwd which contains list of existing users and their attributes like home directory and, if the system has been configured to utilize shadow passwords, /etc/shadow which contains encrypted passwords along with additional account attributes like expiration time.


What command do you use to change your password on a Unix system?

Use the command 'passwd'


In Linux What user ID is associated with a new user?

It depends on system to system. Basically you can find that out by looking at the file "/etc/passwd" You can filter out the username you want to check using "cat /etc/passwd | grep username"


What is the difference between etc and tmp in unix file system?

These two directories are used for different purposes. The /tmp file system is for creating/using temporary files and directories and may be cleaned as a result of a reboot. Scratch files created by utilities and compilers are placed here, and the directory is readable and writable by anyone. The /etc directory is only writeable by an administrator, and contains most of the system configuration file information in multiple directories and files.


How can you get a list of users in Linux?

to get all users of the system : cat /ect/passwd (the 1st words, before the semicolon, are the usernames) You can use the following commands to only display the names of the users (not the rest of the information): cat /etc/passwd | cut -d ":" -f1 == == == == OR you can use the following command to just return users who have a home directory under /home (useful if you are not interested in "special" users): cat /etc/passwd | grep /home | cut -d: -f1 to get only the usernames of people using the system : ls /home/ Answer To see only who is logged on at any given moment, type... who and press the enter key.


What is System32 in a computer?

That is a subdirectory (or subfolder) of the Windows (Or WinNT) directory which contains very important parts of the Windows operating system.