- 简介
- 目录大纲
- 最新文档
- 文集下载
linux 配置阿里云ddns
通过github进行下载:https://github.com/NewFuture/DDNS 步骤 去阿里云控制台增加accesskey配置:https://help.aliyun.com/document_detail/28637.html 上传文件到服务器 修改文件执行权限 shell $ chmod 777 create-task.sh $ chmod 777 ...……
czbiao - 2021年5月19日 20:31
docker 修改国内镜像源
```shell vim /etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com", "https://docker.mirrors.ustc.edu.cn"] } systemctl restart docker.service ``` 国内可选地址: ``` Docker中国区官方镜像...……
czbiao - 2021年5月19日 19:40
debian 10提示找不到service命令解决方法
debian 10用root执行提示bash: service: command not found(找不到service命令)解决方法 问题 想要执行service,发现找不到命令,原因是没有把 /sbin 的目录路径(系统用户目录)添加到 $PATH 变量中。 shell root@debian:/home/biao# service ssh start bash: service:co...……
czbiao - 2021年5月19日 15:00
debian 配置fcitx中文输入
执行命令后,重启电脑 shell sudo apt-get install fcitx fcitx-ui-classic fcitx-config-gtk2 fcitx-frontend-gtk* fcitx-frontend-qt*
czbiao - 2021年5月19日 14:19