Windows Update Blocker
2019-04-23Windows 10 offers less UI control over the updating behavior of the operating system than previous versions of Windows , There is no option to turn off Windows Updates using the Control Panel or Settings app in Windows 10, it checks for updates automatically and install any updates they find, 阅读全文...
file命令
2019-04-22file依赖文件
1、ldd /usr/bin/file
ldd /usr/bin/file
linux-vdso.so.1 => (0x00007ffde79f7000)
libmagic.so.1 => /usr/lib64/libmagic.so.1 (0x0000003fab200000)
libz.so.1 => /lib64/libz.so.1 (0x0000003faae00000)
libc.so.6 => /lib64/libc.so.6 (0x0000003fa9e00000)
/lib64/ld-linux-x86-64.so.2 (0x000055f17918f000)
2、ldd file.exe
cygwin1.dll => /usr/bin/cygwin1.dll (0x180040000)
cygmagic-1.dll => /usr/bin/cygmagic-1.dll (0x3ff9d0000)
cygz.dll => /usr/bin/cygz.dll (0x3ff3d0000) 阅读全文...
str1=${1:-crl.pem}
2019-04-16#!/bin/sh
CRL=${1:-crl.pem}
openssl crl -text -noout -in "$CRL" 阅读全文...
linux下删除-号开头的文件
2019-04-16linux删除特殊符号开头的文件 阅读全文...
openvpn吊销客户端证书
2019-04-16用户证书吊销后,登陆OpenVPN显示VERIFY ERROR: depth=0, error=CRL has expired。 OpenSSL: error:140890B2:SSL routines:SSL3_GET_CLIENT_CERTIFICATE:no certificate returned,TLS_ERROR: BIO read tls_read_plaintext error,TLS Error: TLS object -> incoming plaintext read error,TLS Error: TLS handshake failed,Fatal TLS error (check_tls_errors_co), restarting。 阅读全文...
nginx禁止未绑定域名访问
2019-04-16对于未绑定的域名指向你的服务器时,匹配不到你配置的虚拟主机域名后,会默认使用这个虚拟主机,然后直接返回404。 阅读全文...
openldap用户和本地用户
2019-04-12如果user同时存在,密码且不相同,两个密码都可以登陆。 阅读全文...
openldap增加密码策略
2019-04-11OpenLDAP的密码控制策略很强大: 阅读全文...
openldap-server增加group分组
2019-04-11openldap-server安装好之后,用ldapadd增加几个目录为了管理用户和分组分组,然后就可以用ldapadmin登陆管理openldap了。 阅读全文...
openldap-client安装和配置
2019-04-11centos8-openldap客户端安装 阅读全文...
openldap-server安装和配置
2019-04-11openldap-server支持windows/linux/unix/可以通过源码编译安装或者yum安装rpm包。 阅读全文...
openldap概念
2019-04-11OpenLDAP Software is an open source implementation of the Lightweight Directory Access Protocol. 阅读全文...
adduser的GECOS
2019-04-09问:adduser --gecos GECOS是什么意思呢? 阅读全文...
CentOS 7 时间同步
2019-04-07在CentOS 6版本,时间设置有date、hwclock命令,从CentOS 7开始,使用了一个新的命令timedatectl。 阅读全文...
GeoIP-database
2019-04-04GeoLite2 数据库是一个免费的 IP 地理定位数据库,与 MaxMind 的商业 GeoIP2 数据库有一定可比性,但不如后者准确。 阅读全文...