#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
本人使用的是CentOS 6.2 64位系统,由于在安装系统的时候并没有勾选安装gcc编译器,因此需要自行安装gcc编译器。 系统信息查看命令: cat /etc/redhat-release 使用yum安装gcc 对于配备了yum的Linux发行版而言,安装gcc编译器就变得so easy。我们只 ...
分类:
系统相关 时间:
2020-06-07 19:45:25
阅读次数:
78
OBJ=test.o zhan.o duilie.o ditu.o welcome.o init.o menu.o time.o user.o data.o test:$(OBJ) zhan.h duilie.h ditu.h welcome.h init.h menu.h time.h user. ...
分类:
数据库 时间:
2020-06-07 19:44:07
阅读次数:
79
难记的大端小端 曾经被电面到一个题目,如何判断一个系统是大端还是小端, 方法其实很简单 int main(){ int i = 0x12345678; // 注意必须是16进制,否则难以判断 return *(char*)&i; } 在linux 的执行结果 gcc test.c $./a.out ...
分类:
数据库 时间:
2020-06-07 19:31:40
阅读次数:
68