libtool

linux 安装clickhouse

六月ゝ 毕业季﹏ 提交于 2020-08-14 05:32:46
linux 安装clickhouse https://www.cnblogs.com/change4now/p/11443882.html https://blog.csdn.net/weixin_34248487/article/details/91636006 https://blog.csdn.net/otmqixi/article/details/81564515 https://www.cnblogs.com/tsxylhs/p/7837707.html https://blog.csdn.net/zwq_zwq_zwq/article/details/80791226 安装yum: https://blog.csdn.net/qq805934132/article/details/82901568 wget http://mirrors.163.com/centos/7/os/x86_64/Packages/python-iniparse-0.4-9.el7.noarch.rpm wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm wget http://mirrors.163.com/centos/7/os/x86_64

Linux服务安装和配置-编译安装svn和配置svn多仓库

有些话、适合烂在心里 提交于 2020-08-09 02:50:29
特别说明:把svn的代码托管仓库配置到服务器空间最大的目录下,df -h查看目录空间 1、编译安装subversion和依赖软件,删除subversion的rpm安装包 yum remove subversion -y yum -y install libtool libtool-ltdl libtool-ltdl-devel expat-devel perl-ExtUtils-Embed perl perl-devel lz4-devel zlib-devel 2、下载 subversion和其它软件 wget -P /usr/local/src/ https://mirrors.bfsu.edu.cn/apache/subversion/subversion-1.14.0.tar.gz wget -P /usr/local/src/ https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz wget -P /usr/local/src/ https://downloads.apache.org/apr/apr-util-1.6.1.tar.gz wget -P /usr/local/src/ https://downloads.apache.org/apr/apr-1.7.0.tar.gz 3、编译安装apr-1.7 tar zxf /usr

生产环境下搭建 nagios+nconf+cacti+npc的整合

扶醉桌前 提交于 2020-07-28 18:53:48
系统:CentOS6.5 内核版本系统: 2.6.32-431.23.3.el6.x86_64 关闭iptables 、selinux chkconfig iptables off 安装前的准备工作 y um install -y httpd-* mysql-* php-* net-snmp* gcc glibc glibc-common gd gd-devel openss l* 一、 nagios 环境的搭建 1.安装nagios useradd nagios tar zxf nagios-3.2.0.tar.gz cd nagios-3.2.0 ./configure -prefix=/var/www/html/nagios make all make install && make install-init && make install-commandmode && make install-config && make install-webconf 2.安装中文的nagios 这个比较简单就跟打补丁一样 tar zxf nagios-cn-3.2.0.tar.bz2 cd nagios-cn-3.2.0 ./configure -prefix=/var/www/html/nagios make all make install && make install-init

编译安装apache2.2对应的mod_proxy_fcgi.so模块步骤,因为使用apache--phpfpm 需要这个

本秂侑毒 提交于 2020-07-26 23:33:41
编译安装apache2.2对应的mod_proxy_fcgi.so模块步骤,因为使用apache--phpfpm 需要这个 #mod-proxy-fcgi-master 模块步骤 [root@iZ25ja2kaemZ apache]# wget https://github.com/ceph/mod-proxy-fcgi/archive/master.zip unzip master.zip cd mod-proxy-fcgi-master autoconf; ./configure; sed -i "s>top_srcdir\=>top_srcdir\=.>" Makefile; mkdir -p build; ln -sf /usr/share/apache2/build/instdso.sh build/instdso.sh; make; make install; make clean; #执行完成后,发现已经生成对应模块so,直接在http引入就可以。直接加载模块,不用写路径。看下面make install中显示 模块生成在 /usr/lib64/httpd/modules/, #进入目录,查看有 -rwxr-xr-x 1 root root 74483 Jun 5 00:36 mod_proxy_fcgi.so 该文件应该放到apache的模块目录下

How a c++ program (.cpp) work with header(.h) and libtool (.la)?

不想你离开。 提交于 2020-07-10 07:29:50
问题 I have create a folder in linux called helloworld. Inside this folder have sub-directory: include lib src include/ In this directory I have create a header file called helloworld.h content are: class helloworld{ public: void getvalue(); }; lib/ In lib directory I have create a cpp file called helloworld.cpp content are mainly functions: #include<iostream> #include<helloworld.h> using namespace std; void helloworld::getvalue() { } src/ In src directory I have create a main cpp file called main

using libtool e gdb

末鹿安然 提交于 2020-07-05 10:22:34
问题 I'm working on a project that uses GNU autotools, so in order to debug the code using gdb, I'm running gdb from within libtool: libtool --mode=execute gdbtui foobar Is it possible to reload a modified version of the project without the annoyance of having to quit gdb/libtool and restart? 回答1: libtool --mode=execute creates a temporary executable which is passed to gdb. This executable is removed upon rebuild. The trick is to recreate it with something like libtool --mode=execute echo ./hello

yum更换国内源、用yum下载rpm包和源码包的安装

不羁的心 提交于 2020-05-08 19:49:02
10月10日任务 7.6 yum更换国内源 7.7 yum下载rpm包 7.8/7.9 源码包安装 7.6、更换国内yum源 #首先备份/etc/yum.repos.d/ [root@localhost yum.repos.d]# cp -r /etc/yum.repos.d/ /etc/yum.repos.d.bak [root@localhost yum.repos.d]# ls /etc/yum.repos.d.bak/ CentOS-Base.repo CentOS-Debuginfo.repo CentOS-Media.repo CentOS-Vault.repo CentOS-CR.repo CentOS-fasttrack.repo CentOS-Sources.repo [root@localhost ~]# cd /etc/yum.repos.d/ #删除/etc/yum.repos.d/下的源文件CentOS-Base.repo [root@localhost yum.repos.d]# rm -rf CentOS-Base.repo #下载国内163yum源。 [root@localhost yum.repos.d]# curl -O http://mirrors.163.com/.help/CentOS7-Base-163.repo [root

Ubuntu 18.04 安装 Nginx

我们两清 提交于 2020-05-04 03:39:14
一、安装包安装 安装 Nginx sudo apt- get update sudo apt-get install nginx 名称 目录 配置文件 /etc/nginx/nginx.conf 程序文件 /usr/sbin/nginx 日志 /varlog/nginx 默认虚拟主机 /var/www/html 启动 Nginx 服务 sudo systemctl start nginx 开机自动启动 nginx 服务 sudo systemctl enable nginx 关闭开机自动启动 nginx 服务 sudo systemctl disable nginx 打开浏览器, 在地址栏输入 127.0.0.1 or localhost, 出现 Nginx 经典网页即表示成功。 也可以用 Nginx 命令去测试 sudo nginx -t 查看端口 sudo lsof -i: 80 测试nginx.conf文件 /usr/sbin/nginx -t -c /etc/nginx/nginx.conf 二、源代码安装 命令 $cd /usr/local // 进入local目录 $ wget http: // nginx.org/download/nginx1.12.1.tar.gz // 指定版本在线安装 $ tar -zxvf nginx- 1.12 .1. tar .gz //

CentOS7下rabbitmq的详细安装教程

大城市里の小女人 提交于 2020-05-04 00:11:12
一、安装前的准备工作: 【rabbitmq下载】 rabbitmq下载官网地址:http://www.rabbitmq.com/ 具体的安装包的下载【这里安装的版本是3.7.5】:https://github.com/rabbitmq/rabbitmq-server/releases/tag/v3.7.5 提供一个百度网盘地址:链接:https://pan.baidu.com/s/1K_dWn2u-NqSnZ1r8xR-5bw 提取码:1c19 注意事项: erlang的版本会影响到rabbitmq的安装,两者有个版本对照 查看对照的地址:http://www.rabbitmq.com/which-erlang.html 【erlang下载】 具体的安装包的下载【这里安装的版本是19.3】:http://www.erlang.org/downloads/19.3 提供一个百度网盘地址:链接:https://pan.baidu.com/s/1F6dEThHbf2jRmJdOL_OiXQ 提取码:378x 二、安装步骤: 上传这两个要安装的文件: 【二----<<<<>>>>安装erlang】 [root@iZj56jkasko6onZ opt]# tar -zxvf otp_src_19.3.tar.gz [root@iZj56jkasko6onZ opt]# cp -R otp

centos7安装BitCoin客户端

允我心安 提交于 2020-04-29 04:18:45
一、安装依赖环境 [root@localhost src]# yum install autoconf automake libtool libdb-devel boost-devel libevent-devel -y 二、从github上下载源代码 [root@localhost src]# git clone https: // github.com/bitcoin/bitcoin.git 正克隆到 ' bitcoin ' ... remote: Enumerating objects: 2 , done . remote: Counting objects: 100 % ( 2 / 2 ), done . remote: Total 150662 (delta 1 ), reused 1 (delta 1 ), pack-reused 150660 接收对象中: 100 % ( 150662 / 150662 ), 134.33 MiB | 33.00 KiB/s, done . 处理 delta 中: 100 % ( 105182 / 105182 ), done . [root@localhost src]# 三、运行autogen.sh,生成configure文件 [root@localhost bitcoin]# ./autogen. sh libtoolize: