一、概述 1、桌面环境: Windows7,OpenSUSE 13.2,Kubuntu(KDE) 2、yum安装回顾 a、yum程序包管理器 C/S: yum client(yum) yum repository(ftp/http/https) base:主包 extras:额外的包 updates ...
分类:
系统相关 时间:
2020-02-27 00:57:00
阅读次数:
108
1. 安装 sudo add-apt-repository ppa:sunderme/texstudio sudo apt-get update && sudo apt-get install texstudio 2. 使用 textstudio ...
分类:
其他好文 时间:
2020-02-26 11:40:08
阅读次数:
73
Jenkins maven SNAPSHOT包在打包上去后,出现别的系统无法拉取,反编译包没有问题,其实是因为SNAPSHOT包maven默认不拉取 解决方案: <repositories> <repository> <id>nexus</id> <url>maven 私库 public地址</ur ...
分类:
编程语言 时间:
2020-02-26 11:37:39
阅读次数:
534
1. 规划 2.设置mysql启动参数 #关于group replication 一些参数 master_info_repository = TABLE relay_log_info_repository = TABLE relay_log_recovery=1 gtid_mode = on enf ...
分类:
数据库 时间:
2020-02-25 14:34:39
阅读次数:
164
1.首先打开Git Bash设置名字和邮箱: git config --global user.name "你的名字" git config --global user.email“你的邮箱" 2.删除.SSH文件下的known_hosts(.SSH在C:\Users\Windows用户名目录下) ...
分类:
数据库 时间:
2020-02-25 12:52:13
阅读次数:
103
初始化GIT仓库 对于Eclipse已有的项目,如果想要初始化为git仓库,可以选中项目右键,选择Team-->Share Project然后在新弹出的界面中勾选use or create repository,选中项目,点击create repository,点击finish完成。 提交项目到远程 ...
分类:
系统相关 时间:
2020-02-25 09:15:42
阅读次数:
76
在 version Control 中有集成好的对应的插件支持. 首先安装好 git 客户端. (仍然需要手动安装) 下边两个都可以 1.找到 version control -> git, 然后找到安装的目录 2. 点 GitHub, 登录 GitHub 账户 Repository 需要在 git ...
分类:
其他好文 时间:
2020-02-23 14:37:40
阅读次数:
54
零.docker常用命令 ~~~yml 镜像名 版本标签 镜像id 创建时间 镜像大小 REPOSITORY TAG IMAGE ID CREATED SIZE hello world latest fce289e99eb9 6 months ago 1.84kB ~~~ ~~~yml docker ...
分类:
其他好文 时间:
2020-02-22 12:16:23
阅读次数:
83
脚本作用 1.批量导出Docker Images;2.部分导出,通过指定Docker Images ID 到脚本“LIST”变量;3.支持相同ID,不同REPOSITORY名称备份; 例如: docker images kry1702/coredns 1.3.1 eb516548c180 5 mon ...
分类:
其他好文 时间:
2020-02-22 11:39:10
阅读次数:
52
关键词master: 默认开发分支origin: 默认远程版本库Index / Stage:暂存区Workspace:工作区Repository:仓库区(或本地仓库)Remote:远程仓库一、新建代码库# 在当前目录新建一个Git代码库$ git init# 新建一个目录,将其初始化为Git代码库$ ...
分类:
其他好文 时间:
2020-02-21 18:38:41
阅读次数:
70