Update README.md

This commit is contained in:
spiritlhl 2023-12-27 23:07:10 +08:00 committed by GitHub
parent 7c24c06457
commit 913523fdcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,7 @@
* [安装gitea](#安装gitea)
* [卸载aapanel](#卸载aapanel)
* [查询是什么东西占用硬盘大于100M](#查询是什么东西占用硬盘大于100M)
* [卸载dns缓存机制避免配置覆写](#卸载dns缓存机制避免配置覆写)
* [安装docker和docker-compose](#安装docker和docker-compose)
* [通过docker安装code-server](#通过docker安装code-server)
* [友链](#友链)
@ -331,6 +332,13 @@ apt install sysv-rc-conf -y && service bt stop && sysv-rc-conf bt off && rm -f /
find / -type f -size +100M -exec ls -lh {} \;
```
### 卸载dns缓存机制避免配置覆写
```bash
systemctl stop systemd-resolved
systemctl disable systemd-resolved
```
### 安装docker和docker-compose
```bash