学习资料
go知识图谱:https://www.processon.com/view/link/5a9ba4c8e4b0a9d22eb3bdf0
go入门指南、go语言圣经、go Web编程:https://go.wuhaolin.cn/gopl/ch1/ch1-07.html
go下载:https://golang.google.cn/dl/
ubuntu go及VSCODE环境搭建:https://blog.csdn.net/yk150915/article/details/80020413(注意项目要放在$GOPATH)
docker入门教程:http://www.docker.org.cn/book/docker/docker-install-package-9.html
docker官方教程:
docker操作命令集合:https://blog.csphere.cn/archives/22
镜像集合:https://hub.docker.com/explore/?page=1
k8s基本概念:https://blog.csdn.net/TM6zNf87MDG7Bo/article/details/79621510
k8s视频教程及学习资料:
网盘:https://pan.baidu.com/s/1UhTATAMi_71nyypbndIu8w
密码:yhwu
git关联github和gitee
https://blog.csdn.net/Small_boy_/article/details/81588283
https://blog.csdn.net/weixin_36191602/article/details/80946242
git关联gitee
git常用操作
//初始化
git config –global user.name yourname # “你的名字或昵称”
git config –global user.email youremail@xxx.com # “你的邮箱”
//关联本地和云端Gitee仓库
git remote add origin https://gitee.com/YourGiteeName/YourProjName.git
//对比查看云端本地项目版本
git remote -v
//克隆项目到本地
git clone <项目地址>
//同步(拉取)
git pull origin master
master是分支名,如果你本地是其他分支,请换成其他分支的名字
加入到暂存区
git add
-A # 文件的修改,删除,新建添加到暂存区。(git add -A)
git commit # 提交到本地库
-m “说明”#-m后面的是本次提交的说明(git commit -m “第一次提交”)
git push # 发送给远程库
git push origin master#将分支推送到云端
ubuntu常用操作
配置环境变量
sudo vim /etc/profile #设置所有用户环境变量
vim ~/.bashrc #设置当前用户环境变量
压缩
tar -cvf jpg.tar *.jpg //将目录里所有jpg文件打包成jpg.tar
tar -czf jpg.tar.gz *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用gzip压缩,生成一个gzip压缩过的包,命名为jpg.tar.gz
tar -cjf jpg.tar.bz2 *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用bzip2压缩,生成一个bzip2压缩过的包,命名为jpg.tar.bz2
tar -cZf jpg.tar.Z *.jpg //将目录里所有jpg文件打包成jpg.tar后,并且将其用compress压缩,生成一个umcompress压缩过的包,命名为jpg.tar.Z
rar a jpg.rar *.jpg //rar格式的压缩,需要先下载rar for linux
zip jpg.zip *.jpg //zip格式的压缩,需要先下载zip for linux
解压
tar -xvf file.tar //解压 tar包
tar -xzvf file.tar.gz //解压tar.gz
tar -xjvf file.tar.bz2 //解压 tar.bz2
tar -xZvf file.tar.Z //解压tar.Z
unrar e file.rar //解压rar
unzip file.zip //解压zip
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 2291184112@qq.com