Manages devices, memory, and processes管理設(shè)備、內(nèi)存和進(jìn)程
Controls the functions between the system programs/utilities and the system hardware控制系統(tǒng)程序/工具和系統(tǒng)硬件之間的功能。
Manages swap space, daemons, file systems, and other functions管理交換空間、精靈進(jìn)程(后臺(tái)進(jìn)程)、文件系統(tǒng)和其他功能。
A shell is an interface between the user and the kernel,which acts as an interpreter or translator。shell是用戶和內(nèi)核之間的接口linux常用命令,充當(dāng)解釋程序或翻譯程序。
Unix中常見(jiàn)shell及其命令(shell的縮寫(xiě))
Bourne shell(sh)基于B語(yǔ)言
Korn shell(ksh)sh增強(qiáng)版
C shell(csh)基于C語(yǔ)言,增加歷史記錄功能
Bourne-again shell(bash)現(xiàn)在最常用
命令 history 查看歷史記錄 !數(shù)字 執(zhí)行那條歷史記錄
A hierarchy of directories, subdirectories, and filesgrouped together for a specific purpose. 為特定目的分組在一起的目錄、子目錄和文件的層次結(jié)構(gòu)。
Directory – A location for other files and directories. The directory structure enables you to create files and directories accessed through a hierarchy of directories. 目錄-其他文件和目錄的位置。目錄結(jié)構(gòu)使您能夠創(chuàng)建通過(guò)目錄層次結(jié)構(gòu)訪問(wèn)的文件和目錄。
Subdirectory – Any directory below another directory. For example, some of the subdirectories under the /directory are /usr, /etc, and /kernel.子目錄-任何目錄下的另一個(gè)目錄。例如,目錄下的一些子目錄是/UR、/ETC和/內(nèi)核。
A pathname uniquely identifies a particular file or directory by specifying its location路徑名通過(guò)指定其位置來(lái)唯一標(biāo)識(shí)特定文件或目錄。
A slash (/) between each directory name in the path to indicate different directories路徑中每個(gè)目錄名之間的斜杠(/)以指示不同目錄。
A slash in the first position represents the / directory第一個(gè)位置的斜杠表示/目錄。
Absolute Pathname絕對(duì)路徑
Specifies a file or directory in relation to the / directory指定與目錄相關(guān)的文件或目錄
Begin with a slash從斜杠開(kāi)始
Relative Pathname相對(duì)路徑
Specifies a file in relation to the current working directory指定與當(dāng)前工作目錄相關(guān)的文件