ubuntu 安装 nightingale 准备情况 # 三台ubuntu机器 192.168.1.91 master 192.168.1.92 node1 192.168.1.93 node2 # 负载情况 三台都是4cpu 8G 250stroage # 如何查看cpu mem stroage ...
分类:
系统相关 时间:
2020-06-04 19:44:00
阅读次数:
83
在解压完交叉编译工具链和添加完环境变量后 使用arm-linux-gnueabihf-gcc还是提示没有这个文件 这是因为我的ubuntu16.01,是64位 的,但是交叉编译工具是32位的,所以要安装32库的依赖 见这篇博客 https://blog.csdn.net/qq_37781464/ar ...
分类:
系统相关 时间:
2020-06-04 01:50:15
阅读次数:
100
补充如下内容: 配置 GCC 环境 支持 C++ 11 regex代码编译 更换一种 (二) 中 修改编译脚本方式 一 centos 安装devtoolset-3 该篇幅转自:http://www.openskill.cn/article/372 背景:由于gcc 4.8.2不支持C++11的reg ...
分类:
编程语言 时间:
2020-06-03 15:27:19
阅读次数:
99
首先把redis.tar.gz 解压到你想要的路径 检查一下安装环境: yum -y install gcc yum -y install epel-release 执行 make 和 make install PREFIX=/user/... Centos7 安装可能会有一个问题 # 查看gcc版 ...
分类:
其他好文 时间:
2020-06-03 13:46:10
阅读次数:
95
1.安装相关依赖库(工具包) yum install gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel ...
分类:
编程语言 时间:
2020-06-03 10:40:40
阅读次数:
86
#include<bits/stdc++.h> #pragma GCC optimize(3) using namespace std; const int N=1009,M=100009; int n,m,ans,ord,q[M],pre[N]; int ql,qr,dfn[N],lk[N]; i ...
分类:
其他好文 时间:
2020-06-03 00:40:13
阅读次数:
54
参考李文周的博客搭建vscode的go开发环境 在go build 时报如下错误: exec: “gcc”: executable file not found in %PATH% 以及 sorry, unimplemented: 64-bit mode not compiled in 解决方案: ...
分类:
其他好文 时间:
2020-06-02 21:41:56
阅读次数:
65
一、nginx包和依赖下载安装 nginx包下载地址 http://nginx.org/ nginx其他依赖安装 yum -y install gcc zlib pcre-devel openssl-devel 或者从百度网盘下载 链接:https://pan.baidu.com/share/ini ...
分类:
系统相关 时间:
2020-06-02 19:24:30
阅读次数:
116
#include <xxx.h> 以上的#include就是预处理命令。它的作用是将头文件的内容包含到本文件中。 注意:这里的“包含”指的是该头文件中的所有代码都会在#include处展开。 gcc -E xxx.c > xxx.i 预处理xxx.c并把预处理的结果输出到标准输出。 预处理常见的错误 ...
分类:
编程语言 时间:
2020-06-02 19:23:36
阅读次数:
104
https://solutionsreview.com/business-intelligence/top-free-and-open-source-business-intelligence-software-tools/ Searching for business intelligence a ...
分类:
其他好文 时间:
2020-06-02 17:25:17
阅读次数:
259