摘要: # main.go package main /* 定义这个文件属于main包,每个go语言必须包含main包 */ import "fmt" /* 引入包 */ func main() { /* 定义函数,必须包含的函数,启动函数*/ fmt.Println("Hello, World!") /* 阅读全文
posted @ 2021-12-02 09:39 自动侠 阅读(44) 评论(0) 推荐(0) 编辑
摘要: # 下载链接 https://studygolang.com/dl # 优先访问 https://golang.google.cn/dl/ https://golang.org/dl/ # 开发工具 https://wwww.jebrains.com/ # 安装 ## window *.msi 双击 阅读全文
posted @ 2021-12-02 09:35 自动侠 阅读(31) 评论(0) 推荐(0) 编辑
摘要: dockfile vim Dockerfile FROM centos 上一级别镜像 MAINTAINER xxx@sina.com 容器作者信息 ENV myCat=fluffy 设置环境变量信息 RUN ["./test.php", "dev", "offline"] 执行命令 RUN yum 阅读全文
posted @ 2021-07-28 14:22 自动侠 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 命令总结示意图 docker运行流程示意图 镜像命令 docker images 查看本地镜像 docker images centos REPOSITORY TAG IMAGE ID CREATED SIZE centos latest 300e315adb2f 7 months ago 209M 阅读全文
posted @ 2021-07-28 09:27 自动侠 阅读(41) 评论(0) 推荐(0) 编辑
摘要: YUM源配置 cp -a /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak wget -O /etc/yum.repos.d/CentOS-Base.repo https://repo.huaweiclou 阅读全文
posted @ 2021-07-28 09:04 自动侠 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 带宽计算 https://www.jisuan.mobi/vmbN3HNb6BHuUPxy.html 子网掩码计算器 https://www.sojson.com/convert/subnetmask.html Mac地址查看厂商 https://mac.bmcx.com/ 查看出口IP地址 cur 阅读全文
posted @ 2021-07-24 17:30 自动侠 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 操作手册 https://esofar.github.io/cnblogs-theme-silence/#/guide 操作步骤 申请CSS、JS修改权限,进入博客设置 将以下内容复制到页面定制 CSS 代码 https://cdn.jsdelivr.net/gh/esofar/cnblogs-th 阅读全文
posted @ 2021-07-20 09:08 自动侠 阅读(172) 评论(1) 推荐(0) 编辑
摘要: 文章中包含个人理解,有误请留言 001-web基础 访问流程 浏览器输入web地址(URL Uniform Resource Locator)。 PC DNS地址解析地址获得访问IP地址。 PC发送HTTP数据包请求web服务器资源。 web服务器根据HTTP数据包的请求资源路径,读取相关文件,通过 阅读全文
posted @ 2021-05-25 08:50 自动侠 阅读(44) 评论(0) 推荐(0) 编辑
摘要: Vue https://es6.ruanyifeng.com/ YAML https://www.runoob.com/w3cnote/yaml-intro.html http://www.ruanyifeng.com/blog/2016/07/yaml.html 阅读全文
posted @ 2021-04-02 15:05 自动侠 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por 阅读全文
posted @ 2021-03-29 11:03 自动侠 阅读(55) 评论(0) 推荐(0) 编辑