WireGuard 来源 https://www.cnblogs.com/ryanyangcs/p/13253212.html 原文链接:https://fuckcloudnative.io/posts/wireguard-docs-theory/ WireGuard 是由 Jason Donenf ...
分类:
其他好文 时间:
2020-12-14 13:50:02
阅读次数:
7
###1.查看Linux内核依赖 kernel version >= 3.8 查看代码: uname -a | awk '{split($3, arr, "-"); print arr[1]}' ###2.使用Docker repository安装 1)更新apt包索引: sudo apt-get ...
分类:
系统相关 时间:
2020-12-03 12:27:19
阅读次数:
14
上图三位大家应该很熟悉吧😄,借助这三者可以让我们的服务在Linux环境下持续集成、容器中持续部署。 本篇博客的项目是core webapi, .NET 5.0 在11号已经正式发布了,你们的项目都升级了吗?😊 在开始之前,所需要的的环境要提前准备一下 Centos7.x(连Linux系统都没有还 ...
分类:
其他好文 时间:
2020-11-30 16:09:55
阅读次数:
12
在CentOS容器内执行 yum install passwd openssl openssh-server -y # Ubuntu把yum改成apt-get ssh-keygen -q -t rsa -b 2048 -f /etc/ssh/ssh_host_rsa_key -N '' ssh-ke ...
分类:
系统相关 时间:
2020-11-27 11:39:01
阅读次数:
15
编译日志 1> 已启动全部重新生成: 项目: ES_project2, 配置: Debug x64 1> Moc'ing es_project2.h... 1> Uic'ing es_project2.ui... 1> Moc'ing essystemconfig.h... 1> Moc'ing e ...
分类:
其他好文 时间:
2020-11-16 13:10:55
阅读次数:
6
系统服务管理 systemctl 启动服务:systemctl start httpd.service 关闭服务:systemctl stop httpd.service 重启服务(不管是否在运行):systemctl restart httpd.service 重新载入配置(不中断服务):syst ...
分类:
系统相关 时间:
2020-11-12 13:41:09
阅读次数:
58
一、配置JAVA环境 [root@server1 opt]# tar zxf jdk-8u91-linux-x64.tar.gz [root@server1 opt]# mv jdk1.8.0_91/ /usr/local/java [root@server1 opt]# cd /etc/profi ...
分类:
其他好文 时间:
2020-11-08 17:41:41
阅读次数:
20
Docker 安装教程 1. 卸载旧版本 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker- ...
分类:
其他好文 时间:
2020-11-01 21:56:20
阅读次数:
22
centos7 网卡配置错误问题解决办法(ifcfg-Wired_connection_1)
分类:
其他好文 时间:
2020-11-01 21:01:05
阅读次数:
17
https://www.acwing.com/problem/content/93/ \(dp[S][i]\) 表示经过点的状态为 \(S\) , 当前在 \(i\) 点时的最短路 时间复杂度$O(n2*2n)$ #include<cstdio> #include<cstring> #include ...