2019-08-01 15:56:21
857
0
0
wget https://www.openssl.org/source/openssl-1.1.1c.tar.gz
tar zxvf openssl-1.1.1c.tar.gz
cd openssl-1.1.1c
./config shared zlib --prefix=/usr/local/ssl
一定记得加上shared选项,不然重新编译php的openssl扩展的时候,OpenSSL Library Version和OpenSSL Header Version会不一致。用--prefix
指定安装路径
make && make install
mv /usr/bin/openssl /usr/bin/openssl.bak
mv /usr/include/openssl /usr/include/openssl.bak
# ① 用find / -name openssl查询一下(如果PHP采用了--with-openssl=/usr/local/openssl选项来编译,一般和这个选项的值相同),所以也有可能是这个路径
# mv /usr/local/openssl /usr/local/openssl.bak
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
ln -s /usr/local/ssl/include/openssl /usr/include/openssl
# 用find / -name openssl查询一下,也有可能是这个路径(同① )
# ln -s /usr/local/ssl/include/openssl /usr/local/openssl
echo "/usr/local/ssl/lib" >> /etc/ld.so.conf
ldconfig
OpenSSL未与PHP一起编译的情况下的升级
- 进入PHP源码中的openssl扩展文件夹
cd /root/lnmp/src/php-7.2.20/ext/openssl
- 准备
c
2018-12-18 15:56:45
234
0
0
语法为:chmod abc file
其中a,b,c各为一个数字,分别表示User、Group、及Other的权限。
* `r`=`4` 读
* `w`=`2` 写
* `x`=`1` 执行
若要rwx属性则4+2+1=7(可读、写、执行);
若要rw-属性则4+2=6(可读、写);
若要r-x属性则4+1=5(可读、执行)。
2018-12-16 22:51:23
168
0
0
此方法只针对由于双显卡而导致的卡死
启动电脑,进入elementary 的grub启动,就是那个第一个选项是elementary ,下面是advanced option(大概是这样吧。。) 的那一个界面,在第一行按下e 进入编辑界面,在倒数第二行,就是以linux开头的那一行,在最后加个空格,然后再加上nouveau.modeset=0 然后按下F10,之后登录就能顺利进入 进入之后找显卡驱动安
2018-12-15 11:59:20
117
0
0
1. 查看空间大小: df -hl
显示格式为:文件系统 容量 已用 可用 已用% 挂载点
下面是相关命令的解释:
`df -hl` 查看磁盘剩余空间
`df -h` 查看每个根路径的分区大小
`du -sh [目录名]` 返回该目录的大小
`du -sm [文件夹]` 返回该文件夹总M数
Debian
2018-12-04 17:02:50
191
0
0
# 在系统中添加PPA
首先,您需要在您的系统上添加Dotdeb PPA。在添加PPA之前,首先导入Dotdeb存储库的GPG密钥。
```
$ sudo apt-get install curl
$ curl https://www.dotdeb.org/dotdeb.gpg | sudo apt-key add -
```
现在使用以下命令在系统中添加PPA。
使用命令 `lsb_rele
2018-11-25 04:36:11
283
0
0
一般把xx.so文件复制到/usr/lib
这篇文章主要介绍了Linux系统中提示/usr/bin/ld: cannot find -lxxx错误的通用解决方法,本文以Ubuntu为例给出了一个解决例子,其它linux系统也适用,需要的朋友可以参考下
在linux环境编译应用程式或lib的source code时常常会出现如下的错误讯息:
```
/usr/bin/ld: cannot fi
docker
2018-11-24 16:48:25
319
0
0
先使用下载的镜像启动容器。
```shell
$ sudo docker run -t -i training/sinatra /bin/bash
root@0b2616b0e5a8:/#
```
注意:记住容器的 ID,稍后还会用到。
在容器中添加 json 和 gem 两个应用。
```shell
root@0b2616b0e5a8:/# gem install json
```
当结束后
2018-11-23 00:03:52
174
1
0
搜索当前文件夹下包含内容“admpub”的文件,并列出文件名
```shell
find . | xargs grep -ri "admpub" -l
```
## find过滤目录
使用find命令在linux系统中查找文件时,有时需要忽略某些目录,可以使用
`-path` `<过滤的目录路径>` `-prune` `-o`
参数来进行过滤。
不过必须注意:要忽略的路径参数要紧跟着搜索的路径之后,否则该参数
3/3