|
1 | | -# 操作系统 |
| 1 | +# Linux 教程 |
2 | 2 |
|
3 | | -> :dart: 所有配套源码整理归档在 [**linux-tutorial**](https://github.com/dunwu/linux-tutorial) 项目中。 |
| 3 | +## [Linux 命令](linux/cli) |
4 | 4 |
|
5 | | -## :memo: 知识点 |
| 5 | +> 根据应用场景,将常见 Linux 命令分门别类的一一介绍。 |
| 6 | +> |
| 7 | +> 如果想快速学习,推荐参考这篇文章:[命令行的艺术(转载)](linux/cli/命令行的艺术.md) |
6 | 8 |
|
7 | | -- [Linux](linux) |
8 | | -- [Windows](windows) |
9 | | -- [Docker](docker) |
| 9 | +1. [查看 Linux 命令帮助信息](linux/cli/01.查看Linux命令帮助信息.md) - 关键词:`help`, `whatis`, `info`, `which`, `whereis`, `man` |
| 10 | +2. [Linux 文件目录管理](linux/cli/02.Linux文件目录管理.md) - 关键词:`cd`, `ls`, `pwd`, `mkdir`, `rmdir`, `tree`, `touch`, `ln`, `rename`, `stat`, `file`, `chmod`, `chown`, `locate`, `find`, `cp`, `mv`, `rm` |
| 11 | +3. [Linux 文件内容查看命令](linux/cli/03.Linux文件内容查看编辑.md) - 关键词:`cat`, `head`, `tail`, `more`, `less`, `sed`, `vi`, `grep` |
| 12 | +4. [Linux 文件压缩和解压](linux/cli/04.Linux文件压缩和解压.md) - 关键词:`tar`, `gzip`, `zip`, `unzip` |
| 13 | +5. [Linux 用户管理](linux/cli/05.Linux用户管理.md) - 关键词:`groupadd`, `groupdel`, `groupmod`, `useradd`, `userdel`, `usermod`, `passwd`, `su`, `sudo` |
| 14 | +6. [Linux 系统管理](linux/cli/06.Linux系统管理.md) - 关键词:`reboot`, `exit`, `shutdown`, `date`, `mount`, `umount`, `ps`, `kill`, `systemctl`, `service`, `crontab` |
| 15 | +7. [Linux 网络管理](linux/cli/07.Linux网络管理.md) - 关键词:关键词:`curl`, `wget`, `telnet`, `ip`, `hostname`, `ifconfig`, `route`, `ssh`, `ssh-keygen`, `firewalld`, `iptables`, `host`, `nslookup`, `nc`/`netcat`, `ping`, `traceroute`, `netstat` |
| 16 | +8. [Linux 硬件管理](linux/cli/08.Linux硬件管理.md) - 关键词:`df`, `du`, `top`, `free`, `iotop` |
| 17 | +9. [Linux 软件管理](linux/cli/09.Linux软件管理.md) - 关键词:`rpm`, `yum`, `apt-get` |
10 | 18 |
|
11 | | -## :books: 学习资源 |
| 19 | +## [Linux 工具](linux/tool) |
12 | 20 |
|
13 | | -## :door: 传送门 |
| 21 | +- [Git](linux/tool/git) |
| 22 | +- [Vim](linux/tool/vim.md) |
14 | 23 |
|
15 | | -| [回首頁](https://github.com/dunwu/linux-tutorial) | |
| 24 | +## [Linux 脚本](lang) |
| 25 | + |
| 26 | +- [一篇文章让你彻底掌握 shell 语言](lang/shell.md) |
| 27 | +- [一篇文章让你彻底掌握 python 语言](lang/python.md) |
| 28 | + |
| 29 | +## [Linux 运维](linux/ops) |
| 30 | + |
| 31 | +### Linux 服务器运维 |
| 32 | + |
| 33 | +- [Linux 典型运维应用](linux/ops/linux典型运维应用.md) |
| 34 | +- [samba 使用详解](linux/ops/samba使用详解.md) |
| 35 | + |
| 36 | +### 软件安装、配置、调优 |
| 37 | + |
| 38 | +> :bulb: **说明** |
| 39 | +> |
| 40 | +> 这里总结了一些常用开发软件的安装、配置、使用指南。 |
| 41 | +> |
| 42 | +> 此外,提供了一键安装、配置脚本,:point_right: [**软件安装配置脚本**](https://github.com/dunwu/linux-tutorial/tree/master/codes/linux/soft)。 |
| 43 | +> |
| 44 | +> [环境部署工具](https://github.com/dunwu/linux-tutorial/tree/master/codes/deploy) :适合开发、运维人员,在 [CentOS](https://www.centos.org/) 机器上安装常用命令工具或开发软件。 |
| 45 | +
|
| 46 | +| 软件 | 说明 | |
| 47 | +| ----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | |
| 48 | +| [JDK 安装](linux/soft/jdk.md) | 不解释 | |
| 49 | +| [Elastic 安装](linux/soft/elastic) | 常被称为 ELK ,是 Java 世界最流行的分布式日志解决方案 。 ELK 是 Elastic 公司旗下三款产品 ElasticSearch 、Logstash 、Kibana 的首字母组合。 | |
| 50 | +| [Gitlab 安装](linux/soft/kafka.md) | Git 代码管理平台 | |
| 51 | +| [Jenkins 安装](linux/soft/jenkins.md) | 持续集成和持续交付平台。 | |
| 52 | +| [Kafka 安装](linux/soft/kafka.md) | 应该是 Java 世界最流行的消息中间件了吧。 | |
| 53 | +| [Maven 安装](https://github.com/dunwu/java-tutorial/blob/master/docs/javatool/build/maven/maven-install.md) | Java 构建工具 | |
| 54 | +| [Nexus 安装](https://github.com/dunwu/java-tutorial/blob/master/docs/javatool/build/maven/nexus.md) | Maven 私服 | |
| 55 | +| [Nginx 教程](https://github.com/dunwu/nginx-tutorial) | 反向代理服务器 | |
| 56 | +| [Nodejs 安装](linux/soft/nodejs.md) | 不解释 | |
| 57 | +| [RocketMQ 安装](linux/soft/rocketmq.md) | 阿里巴巴开源的消息中间件。 | |
| 58 | +| [Svn 安装](linux/soft/svn.md) | Svn 是 Subversion 的简称,是一个开放源代码的版本控制系统,它采用了分支管理系统。 | |
| 59 | +| [Tomcat 安装](linux/soft/tomcat.md) | Java 应用服务器 | |
| 60 | +| [Zookeeper 安装](linux/soft/zookeeper.md) | 分布式系统协调软件 | |
| 61 | + |
| 62 | +## [Docker](docker) |
0 commit comments