linux 非root怎么安装libssl-dev
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 非root怎么安装libssl-dev相关的知识,希望对你有一定的参考价值。
参考技术A 这是ubuntu上面的命名方式,opensuse下dev的包结尾都是 devel 所以你就需要在root下用 zypper in libopenssl-devel zypper in gtk2-devel 这样两个包就装好了 Good luck!本回答被提问者采纳 参考技术B 使用sudo命令Linux 非root 用户安装openresty
首先得用root用户安装依赖包
yum install perl
yum install gcc
yum install gcc-c++
yum install zlib
yum install zlib-devel;
接着 安装openresty
1,下载openssl
wget https://www.openssl.org/source/openssl-1.0.2k.tar.gz
解压openssl
tar -zvxf openssl-1.0.2k.tar.gz
cd openssl-1.0.2k/
patch -p1 < /path/to/openresty/patches/openssl-1.0.2h-sess_set_get_cb_yield.patch
红色标注的是openresty下载包解压之后的路径
cd ..
下载prce 安装包
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.40.tar.gz
解压pcre包
tar -xvf pcre-8.40.tar.gz wget https://openresty.org/download/openresty-1.11.2.5.tar.gz
解压openresty安装包
tar -zxvf openresty-1.11.2.5.tar.gz cd openresty-1.11.2.5/
## assuming your have 4 spare logical CPU cores
./configure --prefix=../opt/openresty --with-openssl=../openssl-1.0.2k --with-pcre=../pcre-8.40 -j4
gmake
gmake install
以上是关于linux 非root怎么安装libssl-dev的主要内容,如果未能解决你的问题,请参考以下文章
linux下依赖库的版本问题引起的安装失败:libssl-dev版本问题无法安装 :libssl-dev : 依赖: libssl1.0.0 (= 1.0.1-4ubuntu3) 但是 1.0.1-4
编译mosquitto客户端报错:fatal error: openssl/opensslconf.h: No such file or directory(需要安装开发包:libssl-dev)