添加内容
This commit is contained in:
parent
cfb3973efd
commit
235ac6980e
18
Introduction.md
Normal file
18
Introduction.md
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
## Linux 是什么
|
||||||
|
|
||||||
|
`Linux` 是一个开源系统内核,1991年由托瓦兹 (Linus Torvalds) 开发出来的,我们平时讲的 `Liunx` 系统其实并不是很准确,`Ubuntu` `CentOS` 这些才是系统,`Linux` 是参考 `Uinx` 系统开发出来的。
|
||||||
|
|
||||||
|
现实生活中有哪些软件或系统是基于 `Linux` 开发出来的呢? `嵌入式` 程序开发 `Android` 手机系统,我们经常浏览的网站服务器,基本都是运行 `Linux` 系统之上。
|
||||||
|
|
||||||
|
`Linx` 是一个支持多用户、多任务的系统。
|
||||||
|
|
||||||
|
`Linux` 系统上一切都是以文件的形式存在,所有文件命名要提现文件的格式或内容,`demo.php` 代表这是一个 `php` 文件,`demo.txt` 代表 `txt` 文件,`demo.tar.gz` 代表以 `gzip` 压缩的打包文件。
|
||||||
|
|
||||||
|
## Linux 的优势
|
||||||
|
|
||||||
|
- 跨平台
|
||||||
|
- 安全
|
||||||
|
- 多用户多任务
|
||||||
|
- 占用系统资源少
|
||||||
|
- 网络功能强大
|
||||||
|
- 稳定
|
70
SUMMARY.md
70
SUMMARY.md
@ -1,32 +1,46 @@
|
|||||||
# Summary
|
# Summary
|
||||||
|
|
||||||
* [入门必看](cd-ls-pwd.md)
|
* [前言](introduction.md)
|
||||||
* [cd-ls-pwd](cd-ls-pwd.md)
|
|
||||||
* [用户与用户组](user-group.md)
|
## 入门必看
|
||||||
* [user-group](user-group.md)
|
* [cd-ls-pwd](cd-ls-pwd.md)
|
||||||
* [文件与目录](file-dir.md)
|
|
||||||
* [file-dir](file-dir.md)
|
## 用户与用户组
|
||||||
* 文件目录权限
|
* [user-group](user-group.md)
|
||||||
* [file-dir-permissions](file-dir-permissions.md)
|
|
||||||
* 查找搜索相关
|
## 文件与目录
|
||||||
* [find-search](find-search.md)
|
* [file-dir](file-dir.md)
|
||||||
* 查看编辑相关
|
|
||||||
* [cat-less-tail-head-vim](cat-less-tail-head-vim.md)
|
## 文件目录权限
|
||||||
* 网络与系统资源
|
* [file-dir-permissions](file-dir-permissions.md)
|
||||||
* [netstat-system](netstat-system.md)
|
|
||||||
* 打包压缩相关
|
## 查找搜索相关
|
||||||
* [tar-zip-gzip-bzip2-xz](tar-zip-gzip-bzip2-xz.md)
|
* [find-search](find-search.md)
|
||||||
* 软件包管理器
|
|
||||||
* [apt-get-yum](apt-get-yum.md)
|
## 查看编辑相关
|
||||||
* 防火墙
|
* [cat-less-tail-head-vim](cat-less-tail-head-vim.md)
|
||||||
* [firewall](firewall.md)
|
## 网络与系统资源
|
||||||
* 其他
|
* [netstat-system](netstat-system.md)
|
||||||
* [other](other.md)
|
|
||||||
* 插件工具
|
## 打包压缩相关
|
||||||
* [tool](tool.md)
|
* [tar-zip-gzip-bzip2-xz](tar-zip-gzip-bzip2-xz.md)
|
||||||
* shell 脚本
|
|
||||||
* [shell](shell.md)
|
## 软件包管理器
|
||||||
* 实用 shell 例子
|
* [apt-get-yum](apt-get-yum.md)
|
||||||
* [demo](demo.md)
|
|
||||||
|
## 防火墙
|
||||||
|
* [firewall](firewall.md)
|
||||||
|
|
||||||
|
## 其他
|
||||||
|
* [other](other.md)
|
||||||
|
|
||||||
|
## 插件工具
|
||||||
|
* [tool](tool.md)
|
||||||
|
|
||||||
|
## shell 脚本
|
||||||
|
* [shell](shell.md)
|
||||||
|
|
||||||
|
## 实用 shell 例子
|
||||||
|
* [demo](demo.md)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"author": "Nick",
|
"author": "Nick",
|
||||||
"description": "Gitbook 描述",
|
"description": "PHPer 必知必会的 Linux 命令",
|
||||||
"title" : "Gitbook title",
|
"title" : "PHPer 必知必会的 Linux 命令",
|
||||||
"language": "zh-hans",
|
"language": "zh-hans",
|
||||||
"links": {
|
"links": {
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
|
15
cd-ls-pwd.md
15
cd-ls-pwd.md
@ -1,18 +1,3 @@
|
|||||||
## Linux 是什么
|
|
||||||
|
|
||||||
`Linux` 是一个开源系统内核,1991年由托瓦兹 (Linus Torvalds) 开发出来的,我们平时讲的 `Liunx` 系统其实并不是很准确,`Ubuntu` `CentOS` 这些才是系统,`Linux` 是参考 `Uinx` 系统开发出来的。
|
|
||||||
现实生活中有哪些软件或系统是基于 `Linux` 开发出来的呢? `嵌入式`开发 `Android` 系统,我们经常浏览的网站服务器,基本都是运行 `Linux` 系统之上。`Linx` 是一个支持多用户、多任务的系统。
|
|
||||||
`Linux` 系统上一切都是以文件的形式存在,所有文件命名要提现文件的格式或内容,`demo.php` 代表这是一个 `php` 文件,`demo.txt` 代表 `txt` 文件,`demo.tar.gz` 代表以 `gzip` 压缩的打包文件。
|
|
||||||
|
|
||||||
## Linux 的优势
|
|
||||||
|
|
||||||
- 跨平台
|
|
||||||
- 安全
|
|
||||||
- 多用户多任务
|
|
||||||
- 占用系统资源少
|
|
||||||
- 网络功能强大
|
|
||||||
- 稳定
|
|
||||||
|
|
||||||
#### cd 命令 change dirname 的缩写形式,进入指定目录
|
#### cd 命令 change dirname 的缩写形式,进入指定目录
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
|
/*隐藏底部gitbook */
|
||||||
.gitbook-link {
|
.gitbook-link {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
.summary > li:nth-child(3) {
|
.summary > li:nth-child(3) {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
li.chapter {
|
||||||
|
padding-left: 20px;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user