测试环境 CPU: 64位双核处理器 内存: 4G DDR3 数据库:mysql 版本大于等于 5.6 mariadb 版本大于等于 5.5.6 环境 系统: CentOS 7 IP: 192.168.244.144 设置 selinux 和防火墙 $ firewall-cmd --zone=pub ...
分类:
其他好文 时间:
2020-01-30 15:47:45
阅读次数:
108
df命令用于显示目前在Linux系统上的文件系统的磁盘使用情况统计。 ...
分类:
系统相关 时间:
2020-01-30 12:48:10
阅读次数:
97
我们都知道军队里,哨兵的角色很重要,敌人来了先把哨兵解决了。猴子,在企业网站 架构里,这个监控系统就相当于哨兵的作用,监控系统非常重要。体检。。 监控系统都需要监控: 1、本地资源:负载uptime, CPU(top,sar), 磁盘(df h),内存(free swap ),lO(iostat), ...
分类:
移动开发 时间:
2020-01-30 09:41:25
阅读次数:
89
1、打开Anaconda Prompt 2、搭建TensorFlow的环境: conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --set show_cha ...
分类:
其他好文 时间:
2020-01-30 09:37:16
阅读次数:
220
下载&安装&运行 首先打开官网: https://www.autodesk.com/products/eagle/overview 点这里FREE DOWNLOAD: 里面有3个下载按钮,该点哪个,自己选择: 在这个网址注册一个Autodesk账户(在安装时可能需要登录): https://acco ...
分类:
其他好文 时间:
2020-01-29 12:44:02
阅读次数:
73
for I := cxpgcntrl1.PageCount - 1 downto 0do begin if cxpgcntrl1.Pages[i].Caption <> '首页' then begin cxpgcntrl1.Pages[i].Free; if cxpgcntrl1.PageCount ...
分类:
其他好文 时间:
2020-01-27 13:47:19
阅读次数:
57
#include <stdio.h>#include <stdlib.h> typedef struct NODE{ int data ; struct NODE * pNext ;} * PNODE , NODE ; PNODE create_list(void) ;void traverse_l ...
分类:
编程语言 时间:
2020-01-27 09:34:51
阅读次数:
57
开源项目相关的各种许可证 LicenseLicense keyword Academic Free License v3.0 afl-3.0 Apache license 2.0 apache-2.0 Artistic license 2.0 artistic-2.0 Boost Software ...
分类:
其他好文 时间:
2020-01-26 23:49:21
阅读次数:
268
AVFrame: 1)存储解码后的音频数据或视频数据. 2)AVFrame必须由av_frame_alloc() 来创建(Note:这只是用来创建AVFrame自身的内存空间,AVFrame结构体中的数据缓冲区,必须由其他方法来管理) 3)AVFrame必须由av_frame_free来释放 4)A ...
分类:
其他好文 时间:
2020-01-26 23:48:45
阅读次数:
114