From cfb3973efd67d3be957101a1d52cef49705c42be Mon Sep 17 00:00:00 2001 From: nick Date: Thu, 26 Apr 2018 12:55:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SUMMARY.md | 28 ++++++++++++++++++++++++++-- book.json | 1 + cd-ls-pwd.md | 9 ++++++++- file-dir.md | 1 + user-group.md | 1 + 5 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 file-dir.md create mode 100644 user-group.md diff --git a/SUMMARY.md b/SUMMARY.md index 763edf6..7976ca4 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -1,8 +1,32 @@ # Summary -* 入门必看 +* [入门必看](cd-ls-pwd.md) * [cd-ls-pwd](cd-ls-pwd.md) +* [用户与用户组](user-group.md) + * [user-group](user-group.md) +* [文件与目录](file-dir.md) + * [file-dir](file-dir.md) +* 文件目录权限 + * [file-dir-permissions](file-dir-permissions.md) +* 查找搜索相关 + * [find-search](find-search.md) +* 查看编辑相关 + * [cat-less-tail-head-vim](cat-less-tail-head-vim.md) +* 网络与系统资源 + * [netstat-system](netstat-system.md) * 打包压缩相关 - * [tar-zip-gzip-bzip2-xz](tar-zip-gzip-bzip2-xz.md) + * [tar-zip-gzip-bzip2-xz](tar-zip-gzip-bzip2-xz.md) +* 软件包管理器 + * [apt-get-yum](apt-get-yum.md) +* 防火墙 + * [firewall](firewall.md) +* 其他 + * [other](other.md) +* 插件工具 + * [tool](tool.md) +* shell 脚本 + * [shell](shell.md) +* 实用 shell 例子 + * [demo](demo.md) diff --git a/book.json b/book.json index bf6ead0..489633f 100644 --- a/book.json +++ b/book.json @@ -16,6 +16,7 @@ "sitemap", "-sharing", "splitter", + "toggle-chapters", "sharing-plus" ], "pluginsConfig": { diff --git a/cd-ls-pwd.md b/cd-ls-pwd.md index d431e0c..309d85a 100644 --- a/cd-ls-pwd.md +++ b/cd-ls-pwd.md @@ -1,10 +1,17 @@ ## Linux 是什么 `Linux` 是一个开源系统内核,1991年由托瓦兹 (Linus Torvalds) 开发出来的,我们平时讲的 `Liunx` 系统其实并不是很准确,`Ubuntu` `CentOS` 这些才是系统,`Linux` 是参考 `Uinx` 系统开发出来的。 -现实生活中有哪些软件或系统是基于 `Linux` 开发出来的呢? `嵌入式`开发 `Android` 系统,我们经常浏览的网站服务器,基本都是运行 `Linux` 系统之上。 +现实生活中有哪些软件或系统是基于 `Linux` 开发出来的呢? `嵌入式`开发 `Android` 系统,我们经常浏览的网站服务器,基本都是运行 `Linux` 系统之上。`Linx` 是一个支持多用户、多任务的系统。 `Linux` 系统上一切都是以文件的形式存在,所有文件命名要提现文件的格式或内容,`demo.php` 代表这是一个 `php` 文件,`demo.txt` 代表 `txt` 文件,`demo.tar.gz` 代表以 `gzip` 压缩的打包文件。 +## Linux 的优势 +- 跨平台 +- 安全 +- 多用户多任务 +- 占用系统资源少 +- 网络功能强大 +- 稳定 #### cd 命令 change dirname 的缩写形式,进入指定目录 diff --git a/file-dir.md b/file-dir.md new file mode 100644 index 0000000..968780e --- /dev/null +++ b/file-dir.md @@ -0,0 +1 @@ +#### file dir \ No newline at end of file diff --git a/user-group.md b/user-group.md new file mode 100644 index 0000000..2ad807a --- /dev/null +++ b/user-group.md @@ -0,0 +1 @@ +#### user group \ No newline at end of file