读好书,交益友
发布时间:2018-10-19 14:34:25
在ubuntu 16.04上准备安装pyzmq运行sudo pip install pyzmq发现需要升级pip pip install --upgrade pip升级pip后,出现ImportError: cannot import name 'main'重新做一下软连接sudo ln -sf $( type -P pip ) /usr/bin/pip......【阅读全文】
发布时间:2018-10-16 20:00:59
sudo apt-get install asciidocubuntu下jzmq的安装下载libzmq源码tar -zxvf libzmq-4.2.5.tar.gz./configuremakemake install安装jzmqsudo apt-get install asciidoc./configure出现autogen.sh: error: could not find libtool. libtool is required to run autogen.sh.apt install libtool-binmake出.........【阅读全文】
发布时间:2018-10-12 11:07:20
ipsec pki --gen --type ecdsa --size 256 > /etc/ipsec.d/private/caKey.keybuilding CRED_PRIVATE_KEY - ECDSA failed, tried 2 builders编译时加上 --enable-openssl ......【阅读全文】
发布时间:2018-10-11 14:56:28
1 Create a Root CA and generate a server certificate, private key, client certificate, and client key.openssl genrsa -des3 -out ca.key 4096openssl req -new -x509 -days 365 -key ca.key -out ca.crt -subj "/C=CN/ST=beijing/L=haidianO=changyang/CN=Self-Signed CA"openssl genrsa -out client.key 4096.........【阅读全文】