工具安装
soulsoul_god
慢一点,当你理解的越多,需要记得就越少。
展开
-
linux下安装mysql
参考:https://www.jianshu.com/p/276d59cbc529 C语言调用mysql语句: https://www.cnblogs.com/zhidongjian/p/10097842.html https://www.cnblogs.com/lywy510/p/3615710.html 参考:https://blog.csdn.net/fy_1852003327/article/details/105890494 1、下载rpm包 wget http://dev..原创 2021-01-06 18:41:21 · 104 阅读 · 0 评论 -
docker配合wordpress搭建个人博客
环境:阿里云vps服务器 centos7.2 1、安装docker #执行以下命令自动安装,耐心等待 curl -fsSL https://get.docker.com/ | sh 2、拉取镜像 #拉取 wordpress 镜像 docker pull wordpress:latest #拉取 mysql 镜像 #docker pull mysql:latest docker pull mysql:5.7 //这边是个大坑,使用mysql:latest死活就是连不上,需要换成mysq.原创 2020-05-28 18:35:05 · 716 阅读 · 0 评论 -
Centos7 安装DB2
参考:https://blog.51cto.com/feature09/2046506 1、下载压缩包v11.1_linuxx64_expc.tar.gz 官网下载地址: https://www-01.ibm.com/marketing/iwm/iwm/web/pickUrxNew.do?source=swg-db2expressc 2、解压(路径必须是/home/so...原创 2019-03-15 15:15:24 · 4355 阅读 · 2 评论 -
centos7安装oracle11g
参考: https://blog.csdn.net/Kenny1993/article/details/75038670 https://blog.csdn.net/Jul_11th/article/details/82660088 oracle网址: https://www.oracle.com/technetwork/database/enterprise-edition/downlo...原创 2019-03-15 10:48:38 · 149 阅读 · 0 评论 -
Centos7安装Informix
1、下载安装包 网址: https://www-01.ibm.com/marketing/iwm/iwm/web/pickUrxNew.do?source=ifxids&transactionid=452474400 2、创建informix用户 groupadd informix useradd -g informix informix 3、创建安装目录 m...原创 2019-03-19 15:11:20 · 2836 阅读 · 3 评论 -
Centos7环境安装Sql Server2017
1、centos7环境 内存2g 2、设置sqlserver安装镜像 curlhttps://packages.microsoft.com/config/rhel/7/mssql-server-2017.repo> /etc/yum.repos.d/mssql-server.repo 3、执行安装 yum install -y mssql-server 4、进行配置 ...原创 2019-03-19 15:02:23 · 878 阅读 · 0 评论 -
Centos7安装Postgresql10
https://blog.csdn.net/rudy5348/article/details/79299162转载 2019-03-19 14:42:33 · 667 阅读 · 0 评论 -
glib2.40编译
源码路径:http://ftp.acc.umu.se/pub/gnome/sources/glib/ 安装zlib: 自glib-2.23开始就需要zlib,zlib是提供数据压缩用的函式库。 ———————————————————————————————————————————— 编译zlib: tar -xzvf zlib-1.2.11.tar.gz cd zlib-...原创 2019-01-02 22:32:52 · 1165 阅读 · 0 评论 -
centos7源码编译openvas9
openvas9源码下载网址:https://community.greenbone.net/t/gvm-9-stable-initial-release-2017-03-07/211 依赖包下载网址:https://centos.pkgs.org 参见文档 https://elatov.github.io/2014/06/compile-openvas-7-on-centos-6/ 一、预...原创 2019-01-06 23:22:15 · 1984 阅读 · 0 评论 -
centos7编译gcc4.8.2
先编译依赖库: 安装GMP,MPFR, MPC 编译GMP —————————————————————————————————————————— tar -jxzf tar -jxvf gmp-5.0.1.tar.bz2 cd gmp-5.0.1 ./configure make make install 结果文件: /usr/local/include/gmp.h /usr...原创 2019-01-01 21:31:20 · 842 阅读 · 0 评论 -
centos6.7环境编译winexe1.1
winexe1.0版本执行某些windows设备命令时,无法执行成功,遂编译winexe1.1版本。 ———————————————————————————————————————————————— 获取winexe源码包与samba源码包 git clone git://git.code.sf.net/p/winexe/winexe-waf winexe-winexe-waf git c...原创 2018-10-12 22:43:08 · 507 阅读 · 0 评论 -
boost库的安装
centos系统下安装boost库 从boost官网https://www.boost.org/ 获取boost源码包 boost_1_69_0.tar.gz 1、解压 tar -xzvf boost_1_69_0.tar.gz 2、执行bootstrap.sh cd boost_1_69_0 ./bootstrap.sh 3、编译 ./b2 参数 4、...原创 2018-12-12 16:30:12 · 898 阅读 · 1 评论