That would be /root, which is the home directory of the root user. Keep in mind, according to the Filesystem Hierarchy Standard, /root is actually optional, but I've never seen a Linux distribution that didn't have it anyway.
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.
You don't mention what you are looking for in terms of a "running configuration file". In Unix/Linux there are many of these. Most of them can be found in the /etc directory or its subdirectories but not all of them are located in /etc.
It is the Home Directory.
The root directory is usually /.
The root directory is /. The home directory is /home/user.
One of the most noticable differences between Linux and Windows is the directory structure. Not only is the format different, but the logic of where to find things is different In Windows, you use this format to access a directory: C:\Folder1\subfolder\file.txt In Linux, this is the basic format: /Folder1/subfolder/file.txt You'll notice that the slashes are forward slashes in Linux versus backslashes in Windows. Also, there is no drive name (C:, D:, etc.) in Linux. At boot, the 'root partition' is mounted at /. All files, folders, devices and drives are mounted under /. Though it is not apparent from this example, it is important to note that files and folders in Linux are case sensitive. /Folder1/subfolder/file.txt is not the same as /folder1/subfolder/file.txt.
mv file /path/to/directory
The Linux Filesystem Hierarchy is used to help determine the file structure in the Linux Operating System. It defines the Directory structure and directory contents.
The /, or root directory.
the command 'cd ~' will get you there .
You change the current working path directory in Linux by issuing the cd command, followed by the directory you want to change to. For example:cd /dev/inputwould take me to the that directory.
"/" is the root directory in Linux. Make sure not to confuse this with the "/root" directory, which is the home directory for the user "root" (similar to "Administrator" on Windows)