摘要: 官方参考地址:https://docs.docker.com/install/linux/docker-ce/centos/ 下载地址: https://download.docker.com/linux/centos/7/x86_64/stable/Packages/ • 设置语言环境 echo 阅读全文
posted @ 2020-02-18 00:24 朱思年 阅读(597) 评论(1) 推荐(1) 编辑
摘要: git pull https://xxx/xxxxxxx.git --allow-unrelated-histories 阅读全文
posted @ 2020-02-12 19:07 朱思年 阅读(147) 评论(0) 推荐(0) 编辑
摘要: package com.test; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplu 阅读全文
posted @ 2019-10-17 18:28 朱思年 阅读(356) 评论(0) 推荐(0) 编辑
摘要: import java.util.List;/** * 分页对象 */public class PageBean<T> { /** * 当前页显示的数据 */ private List<T> items; /** * 当前页码 */ private long currentPageNum; /** 阅读全文
posted @ 2019-10-13 19:59 朱思年 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 原因:国内网无法从Google获取资源,貌似搭了梯子也没用 修改flutter sdk Path/packages/flutter_tools/gradle/flutter.gradle这个文件,使用阿里云源 阅读全文
posted @ 2019-09-18 00:37 朱思年 阅读(1355) 评论(0) 推荐(0) 编辑
摘要: [SEVERE] Conflicting outputs were detected and the build is unable to prompt for permission to remove them. These outputs must be removed manually or 阅读全文
posted @ 2019-09-17 00:13 朱思年 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 卸载mariadb 安装参考:https://www.cnblogs.com/wlwl/p/9686809.html 阅读全文
posted @ 2019-09-16 16:36 朱思年 阅读(169) 评论(0) 推荐(0) 编辑
摘要: ubuntu18.04默认的swap文件在根目录/下,名字是swapfile 1、查看交换分区大小 也可以使用系统监视器查看 2、创建一个swap文件 :大小为8g 3、创建swap文件系统 4、开启swap 5、关闭和删除原来的swapfile 6. 将里面的swapfile改为刚刚创建的swap 阅读全文
posted @ 2019-09-15 16:39 朱思年 阅读(564) 评论(0) 推荐(0) 编辑
摘要: #对拷文件夹 (包括文件夹本身) scp -r /home/slk root@192.168.1.5:/home # 对拷文件并重命名 scp /home/a.txt root@192.168.1.5:/home//b.text 阅读全文
posted @ 2019-09-14 01:27 朱思年 阅读(659) 评论(0) 推荐(0) 编辑
摘要: window下 1.导出整个数据库mysqldump -u 用户名 -p 数据库名 > 导出的文件名mysqldump -u dbuser -p dbname > dbname.sql2.导出一个表mysqldump -u 用户名 -p 数据库名 表名> 导出的文件名mysqldump -u dbu 阅读全文
posted @ 2019-09-14 00:40 朱思年 阅读(3841) 评论(0) 推荐(0) 编辑