会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
helloworld899
博客园
首页
新随笔
联系
订阅
管理
2018年4月4日
rsync
摘要: http://rsync.samba.org/https://download.samba.org/pub/rsync/rsync.html
阅读全文
posted @ 2018-04-04 15:39 helloworld899
阅读(149)
评论(0)
推荐(0)
2018年3月20日
ping判断网络连通性(检测IP是否可达)
摘要: #shellfor x in `seq 1 255`do #echo $x ip=10.10.1.$x ping -c 2 $ip > /dev/null if [ $? == 0 ];then echo "$ip is alive" else echo "$ip is unavialable" f
阅读全文
posted @ 2018-03-20 16:11 helloworld899
阅读(1083)
评论(0)
推荐(0)
2017年12月21日
threading
摘要: 执行结果: 我在听音乐 夜空中最亮的星. Wed Dec 6 15:15:16 2017我在听音乐 夜空中最亮的星. Wed Dec 6 15:15:19 2017我在看电影 英伦对决. Wed Dec 6 15:15:22 2017我在看电影 英伦对决. Wed Dec 6 15:15:27 20
阅读全文
posted @ 2017-12-21 15:40 helloworld899
阅读(200)
评论(0)
推荐(0)
2017年12月20日
awk_sed
摘要: AWK: tail -f access.log | awk -F"," '$7!~/"200"/{print $7}' cat rechargeOK_2015-11-16.log | awk -F'[][]' '{print $(NF-3)}' | awk '{sum+=$1} END {print
阅读全文
posted @ 2017-12-20 23:13 helloworld899
阅读(118)
评论(0)
推荐(0)
2017年12月15日
iproute2
摘要: 安装包: https://www.kernel.org/pub/linux/utils/net/iproute2/ 获取帮助信息: man ip NAME ip - show / manipulate routing, devices, policy routing and tunnels SYNO
阅读全文
posted @ 2017-12-15 17:37 helloworld899
阅读(317)
评论(0)
推荐(0)
php编译安装
摘要: Centos6 环境: yum install libxml2-devel curl-devel libpng-devel freetype-devel -y ./configure --prefix=/usr/local/php-7.x.x \--with-mysqli=mysqlnd \--wi
阅读全文
posted @ 2017-12-15 15:21 helloworld899
阅读(130)
评论(0)
推荐(0)
2017年12月5日
python socket
摘要: ###socketserver: https://docs.python.org/3.5/library/socketserver.html server: client: #利用socket实现简单的ssh server: client:
阅读全文
posted @ 2017-12-05 17:00 helloworld899
阅读(324)
评论(0)
推荐(0)
paramiko
摘要: #SSHClient (用户连接远程服务器执行基本的命令) 基于用户名及密码 import paramiko ssh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect(
阅读全文
posted @ 2017-12-05 15:47 helloworld899
阅读(185)
评论(0)
推荐(0)
2017年11月10日
php相关扩展安装及报错总结
摘要: #系统环境: ubuntu #imap扩展 # cd /opt/packages/php-7.1.4/ext/imap # ./configure --with-php-config=/usr/local/php-7.1.4/bin/php-config --with-kerberos=/usr/k
阅读全文
posted @ 2017-11-10 09:50 helloworld899
阅读(194)
评论(0)
推荐(0)
2017年9月27日
python小技巧
摘要: 命令行启动简单的httpserver: python3: $ python3 -m http.serverServing HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...10.1.21.242 - - [27/Sep/2017 18:24:34
阅读全文
posted @ 2017-09-27 18:40 helloworld899
阅读(179)
评论(0)
推荐(0)
下一页
公告
点击右上角即可分享