推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html
全部博文(594)
发布时间:2016-04-06 16:05:38
使用命令passwd修改密码时,遇到如下问题:# echo 'utf8'|passwd zhangsan --stdinChanging password for user zhangsan.passwd: Have exhausted maximum number of retries for service可以尝试改用密码chpasswd修改zhangsan的密码:echo 'zhangsan:utf8' |chpasswd有可能就可以了.........【阅读全文】
发布时间:2016-04-05 17:00:07
使用示例:./mooon_upload -h=192.168.10.11,192.168.10.12 -p=6000 -u=root -P='root123' -s=./abc -d=/tmp/表示将本地的文件./abc上传到两台机器192.168.10.11和192.168.10.12的/tmp/目录// 批量上传工具#include "mooon/net/libssh2.h"#include "mooon/sys/stop_watch.h"#i.........【阅读全文】
发布时间:2015-11-24 15:41:53
openssh间免密码登录.pdf以下针对的是openssh,而不是ssh,也不是ssh2。配置分两部分:一是对登录机的配置,二是对被登录机的配置,其中登录机为客户端,被登录机为服务端,也就是解决客户端到服务端的无密码登录问题。下述涉及到的命令,可以直接拷贝到Linux终端上执行,已全部验证通过,操作环境为CentOS Linux&n.........【阅读全文】
发布时间:2015-08-24 10:38:59
flux.zip
#!/bin/sh
# 流量统计工具
# 可带一个参数:网卡名,如eth0或eth1等
# 输出格式:统计时间,入流量(Kbps),入流量(Mbps),出流量(Kbps),出流量(Mbps)
......【阅读全文】
发布时间:2015-08-13 15:20:48
lsof用法
A.查看端口被谁占用
lsof -i:port,如:lsof -i:80
B.查看tcp监听端口
netstat -lpnt
C.查看udp监听端口
netstat -lpnu
D.查看本机IP
netstat -ie
E.lsof高级用法
lsof -i [46][protocol][@hos.........【阅读全文】
发布时间:2015-06-09 18:37:21
只需要增加如下一个Server配置,可直接放在其它所有Server配置之前:server { listen 80 default_server; server_name _; return 508;}508 Loop Detected(服务器发现请求中出现一个无穷循环)有关“_”的说明,可参考官方说明:http://wiki.nginx.org/NginxVirtualHostEx.........【阅读全文】
发布时间:2015-05-28 19:30:56
GitHub官方的Git Shell和GitHub for Windows配置示例,配置文件“.gitconfig”位于用户主目录下,假设用户名为zhangsan,在Windows7上为:C:\Users\zhangsan\.gitconfig。[user] 配置登录GitHub的用户名和邮箱[http] 配置访问GitHub的代理,一些公司内部网经常需要配置,家庭拨号上网直连的则不用[core] 在Windows和Lin.........【阅读全文】
发布时间:2015-04-01 09:40:18
在linux上使用unzip解压一个.zip文件时,如果遇到下面这样的错误:Archive: common_library.zip End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central direc.........【阅读全文】
发布时间:2014-04-17 16:01:17
1) 临时修改主机名临时修改使用hostname即可,格式为:hostname 新主机名。Hostname命令除可以临时修改主机名外,还可以用它来查看主机名,不带参数执行它,即为查看主机名。 2) 永久修改主机名修改文件/etc/HOSTNAME即可:cat /etc/HOSTNAME.........【阅读全文】
yuanxy20132014-01-14 14:48
LZ,你的基于C++的纯面向对象的通用高性能大并发TCP-SERVER/CLIENT开发框架实践系列之《前言篇》,《基础篇》写得非常棒,但是《服务器篇》、《客户端篇》却找不到,恳请楼主赐读。