2.1 介绍 2.1.1 工具链简介 一个编译工具链模块是允许为系统编译代码的一组工具。它由一个编译器(在我们的例子中是 gcc)、像汇编器和链接器这样的二进制 utils(一般是 binutils)和一个C标准库(例如 GNU Libc, uClibc-ng)组成。 一个交叉编译工具链是可有在主机 ...
分类:
其他好文 时间:
2020-06-14 18:19:49
阅读次数:
70
1.下载nginx安装包,放进Linux系统中 nginx下载地址:https://nginx.org/download/ 2.安装依赖 yum -y install gcc pcre-devel zlib-devel openssl openssl-devel 3.解压nginx安装包 tar - ...
分类:
其他好文 时间:
2020-06-13 11:27:19
阅读次数:
67
redis单机安装1、redis安装需要c语言的编译环境。如果没有gcc 需要在线安装 rmp -qa | grep gcc-c++2、在/user/local/upload 下解压redis的软件包 tar -zxvf redis-3.0.0.tar.gz3、得到解压后的目录 redis-3.0. ...
分类:
系统相关 时间:
2020-06-13 10:49:20
阅读次数:
75
#pragma GCC optimize(2) #include<bits/stdc++.h> #define ll long long #define maxn 1000005 #define inf 1e9 #define pb push_back #define rep(i,a,b) for( ...
分类:
其他好文 时间:
2020-06-12 21:47:58
阅读次数:
79
1. 下载nginx http://nginx.org/download/nginx-1.18.0.tar.gz 并将下载的压缩包scp到指定服务器 2.选定安装目录 ,下载安装依赖 cd /usr/loca/src yum install gcc yum install pcre-devel yu ...
分类:
系统相关 时间:
2020-06-12 14:50:45
阅读次数:
129
首先你要有自己的代理端口 ss v二ray 之类。 git上下载 proxychains git clone https://github.com/rofl0r/proxychains-ng 编译安装 yum install gcc cd proxychains-ng ./configure --p ...
分类:
其他好文 时间:
2020-06-11 16:33:16
阅读次数:
56
执行 yum install gcc-c++ ./configure 成功会看到 ...
分类:
其他好文 时间:
2020-06-10 22:58:18
阅读次数:
80
nginx安装 //安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel //安装 PCRE 让 Nginx 支持 Rewrite 功能 wget http://downloads.s ...
分类:
其他好文 时间:
2020-06-10 19:25:09
阅读次数:
68
1.下载地址 https://nginx.org/download/ 解压 2. 配置 yum -y install gcc pcre-devel zlib-devel openssl openssl-devel ./configure --prefix=/usr/local/nginx make ...
分类:
其他好文 时间:
2020-06-09 14:35:45
阅读次数:
76
Tensorflow testing for Ubuntu 18.04.1 首先,安装Ubuntu 18.04.1 Desktop系统,系统安装完后再安装 NVIDIA显卡驱动。Ubuntu 18.04的系统使用NVxxx.run安装时会提示GCC版本不匹配,所以这里换一种方式安装NVIDIA驱动, ...
分类:
系统相关 时间:
2020-06-08 12:36:45
阅读次数:
88