We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e5c4f commit 9a1449bCopy full SHA for 9a1449b
1 file changed
post/杂记.md
@@ -57,12 +57,16 @@ git config --global core.eol lf
57
git config --global core.autocrlf input
58
```
59
60
-### 5. docker 看所有容器 ip
+### 6. docker 看所有容器 ip
61
62
```shell
63
docker ps --format "{{.Names}} {{.Image}}" | while read container_name image; do container_ip=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $container_name); echo "$container_name $image $container_ip"; done
64
65
66
+### 7. Linux 发行版常用软件安装shell生成器
67
+
68
+[https://tuxmate.com/](https://tuxmate.com/)
69
70
## 2. archlinux 相关
71
72
### 1. nvidia,nvidia-open 驱动都无法调用显卡
0 commit comments