|
15.
|
|
|
Directories and File Systems
|
|
|
|
Каталоги и файловые системы
|
|
Translated and reviewed by
Sergey Sedov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:26(title)
|
|
16.
|
|
|
In Linux and Unix everything is a file. Directories are files, files are files, and devices are files. Devices are usually referred to as nodes; however, they are still files.
|
|
|
|
В Linux и Unix все объекты по существу являются файлами. Каталоги, устройства, сами файлы - всё это ФАЙЛЫ. К устройствам обычно обращаются как к узлами, но при этом они остаются файлами.
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:28(para)
|
|
17.
|
|
|
Linux and Unix file systems are organized in a hierarchical, tree-like structure. The highest level of the file system is the <filename>/</filename> or root directory. All other files and directories exist under the root directory. For example, <filename>/home/konqi/kubuntu.odt</filename> shows the correct full path, or absolute path, to the <filename>kubuntu.odt</filename> file that exists in the <filename>konqi</filename> directory, which is under the <filename>home</filename> directory, which in turn is under the root (<filename>/</filename>) directory.
|
|
|
|
Файловые системы Linux и Unix представляют собой иерархическую древовидную структуру. Высшим уровнем файловой системы является <filename>/</filename> - корневой каталог. Остальные файлы и каталоги находятся в корневом каталоге. Например, <filename>/home/konqi/kubuntu.odt</filename> означает полный путь, или абсолютный путь, к файлу <filename>kubuntu.odt</filename>, расположенному в подкаталоге <filename>konqi</filename>, который в свою очередь расположен в подкаталоге <filename>home</filename>, расположенном в корневом каталоге (<filename>/</filename>).
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:34(para)
|
|
18.
|
|
|
Underneath the root (<filename>/</filename>) directory is a set of important directories common to most Linux distributions. The following is a listing of common directories that are directly under the root (<filename>/</filename>) directory:
|
|
|
|
В корневом каталоге находятся важные каталоги, характерные для большинства систем Linux. Вот список основных каталогов, которые находятся непосредственно в корневом (<filename>/</filename>) каталоге:
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:45(para)
|
|
19.
|
|
|
/bin
|
|
|
|
/bin
|
|
Translated and reviewed by
Sergey Sedov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:53(filename)
|
|
20.
|
|
|
Important commands, which historically have been <emphasis>bin</emphasis>ary, but may also be shell scripts.
|
|
|
|
Важные команды, которые изначально были двоичными файлами (англ. <emphasis>bin</emphasis>ary), но могут представлять из себя и скрипты командной оболочки.
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:55(para)
|
|
21.
|
|
|
/boot
|
|
|
|
/boot
|
|
Translated and reviewed by
Sergey Sedov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:62(filename)
|
|
22.
|
|
|
<emphasis>Boot</emphasis> configuration files, kernels, and other files needed at <emphasis>boot</emphasis> time.
|
|
|
|
Загрузочные (англ. <emphasis>boot</emphasis>) файлы конфигурации, ядра, и другие файлы, необходимые при загрузке системы.
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:64(para)
|
|
23.
|
|
|
/dev
|
|
|
|
/dev
|
|
Translated and reviewed by
Sergey Sedov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:71(filename)
|
|
24.
|
|
|
The <emphasis>dev</emphasis>ice files.
|
|
|
|
Устройства (англ. <emphasis>dev</emphasis>ices) и оборудование системы, представленные как файлы в соответствии с традициями Unix-систем.
|
|
Translated and reviewed by
Yuri Efremov
|
|
|
|
Located in
basic-commands/C/basic-commands.xml:73(para)
|