发布时间:2013-03-26 15:53:16
因修改/etc/ssh权限导致的ssh不能连接异常解决方法现象:$ssh XXX@192.168.5.21出现以下问题Read from socket failed: Connection reset by peer起因;$sudo chmod 777 /etc/ -R (千万不要做,这是一个误操作)导致了上面的结果解决方法:#chmod 400 /etc/ssh/* 在重新连接就可以了。.........【阅读全文】
发布时间:2013-03-18 16:57:18
在shell中常用的特殊符号罗列如下:# ; ;; . , / / 'string'| .........【阅读全文】
发布时间:2013-03-15 15:24:26
http://www.doc88.com/p-331776060207.htmlhttp://wenku.baidu.com/view/5565e94bf7ec4afe04a1dfac.html......【阅读全文】
发布时间:2013-03-14 16:43:28
ssh无密码登入设置(完全版)/linux下免输入密码ssh登录作者: feng 日期: 2011/05/22发表评论 (0)查看评论配置ssh不需要密码登录远程主机,网上有很多文章,但好像完整的不多,笔者参照操作,但得到消息:Agent admitted failure to sign using the key.原来是没有启动ssh-age.........【阅读全文】
发布时间:2013-03-13 11:33:04
关于shell中的for循环用法很多,一直想总结一下,今天网上看到上一篇关于for循环用法的总结,感觉很全面,所以就转过来研究研究,嘿嘿...1、 for((i=1;i<=10;i++));do echo $(expr $i \* 4);done2、在shell中常用的是 for i in $(seq 10)3、for i in `ls`4、for i in ${arr[@]}5、for i in $* ; do6、for Fil.........【阅读全文】