CentOS 7修改主机名hostname

2017-09-16

CentOS7之前的版本修改主机名/etc/sysconfig/network,7.0修改主机名/etc/hostname.  阅读全文...

awk实例

2017-09-15

awk是一个强大的文本分析工具,简单来说awk就是把文件逐行的读入,以空格为默认分隔符将每行切片,切开的部分再进行各种分析处理。结合grep和sed,能快捷的处理文本。有专门介绍awk的书。  阅读全文...

linux普通用户之间的ssh无密码访问

2017-09-11

普通用户test(两台服务器都有这个用户),在/home/test/.ssh下配置ssh无密码访问,运行scp命令,仍要求我输入密码。  阅读全文...

linux tracert

2017-09-09

tracert/traceroute/mtr  阅读全文...

fping

2017-09-07

fping is a program like ping which uses the Internet Control Message Protocol (ICMP) echo request to determine
if a target host is responding.  fping differs from ping in that you can specify any number of targets on the
command line, or specify a file containing the lists of targets to ping.  阅读全文...

linux安装rar和unrar

2017-09-05

WinRAR is a powerful archive manager.  阅读全文...

Linux 中将文件编码转换为 UTF-8

2017-09-05

有时候我们需要将文件转换编码格式,比如index.html页面,nginx.conf等等  阅读全文...

如何在Chrome 中查看SSL证书信息

2017-08-17

IE访问https网站时,地址栏会出现一个小锁图标,双击🔒图标可以看到证书的详细信息。那么Chrome访问https网站时如何查看ssl证书呢?  阅读全文...

nginx: worker process is shutting down

2017-08-17

nginx 用 nginx -s reload 后出现nginx: worker process is shutting down。  阅读全文...

阿里云CDN配置https证书

2017-08-17

CDN配置SSL证书后,用openssl s_client -connect ns:443测试,返回结果一直是*.ucdl.pp.uc.cn。  阅读全文...

scp连接缓慢的解决方法

2017-08-10

scp是linux中很好用的几个命令之一,特别是在服务器之间拷贝文件。但我们在使用scp命令时会遇到敲完命令回车时,连接很慢,要等好久才能出现输入密码的提示符。  阅读全文...

linux查看端口被哪个进程占用

2017-08-10

linux端口被占用,我们需要查出哪个进程或程序启动,以便后续操作。  阅读全文...

在CentOS 7上给一个网卡分配多个IP地址

2017-08-01

CentOS7给一个网卡分配多个IP地址,直接修改ifcfg-em2添加IPADDR2=172.16.1.2即可。例如:  阅读全文...

tinyproxy

2017-07-31

tinyproxy用来实现http或https代理  阅读全文...

很多[sh] defunct进程

2017-07-27

程序调用shell进程导致,很多[sh] defunct进程。  阅读全文...