摘要: 取消私钥中的密码:1. 使用openssl命令去掉私钥的密码openssl rsa-in~/.ssh/id_rsa-out~/.ssh/id_rsa_new2. 备份旧私钥mv~/.ssh/id_rsa~/.ssh/id_rsa.backup3. 使用新私钥mv~/.ssh/id_rsa_new~/... 阅读全文
posted @ 2015-08-12 11:46 圆旭 阅读(1896) 评论(0) 推荐(1)
摘要: 1)curl -L get.rvm.io | bash -s stable2)把下面一行加到~/.zshrc中:[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"3)source ~/.zshrc4)修改rvm的ruby安装... 阅读全文
posted @ 2015-07-30 15:29 圆旭 阅读(999) 评论(0) 推荐(1)
摘要: 刚好找到了一个临时的解决方法,chrome其实已经内部实现了断点续传功能,不过应该还没完善,所以要自己打开。方法:用chrome在地址栏输入chrome://flags用搜索找到resumption(断点续传),打开就可以了转自:http://www.zhihu.com/question/19895... 阅读全文
posted @ 2015-07-23 15:04 圆旭 阅读(2073) 评论(0) 推荐(0)
摘要: ls|wc-l转自:http://bbs.csdn.net/topics/60387132 阅读全文
posted @ 2015-07-23 10:40 圆旭 阅读(131) 评论(0) 推荐(0)
摘要: 转自:http://tieba.baidu.com/p/3020839207 阅读全文
posted @ 2015-07-22 16:31 圆旭 阅读(678) 评论(0) 推荐(0)
摘要: cat path/to/file/filename1 >> path/to/file/filename2例如:cat id_rsa.pub >> ~/.ssh/authorized_keys可以把文件id_rsa.pub的内容增加到authorized_keys文件的尾部 阅读全文
posted @ 2015-07-22 15:02 圆旭 阅读(4217) 评论(0) 推荐(0)
摘要: 需要用到authorized_keys文件具体请参阅:http://chenlb.iteye.com/blog/211809 阅读全文
posted @ 2015-07-22 14:55 圆旭 阅读(137) 评论(0) 推荐(0)
摘要: 答:Disconnecting will close all underlying sockets in the connection pool. If this instance is used again it will be automatically re-opened.转自:http://... 阅读全文
posted @ 2015-07-17 14:52 圆旭 阅读(3752) 评论(0) 推荐(0)
摘要: office分为零售版和批量授权版零售版(文件名以cn开头)需要提供序列号才可以安装,而批量授权版(文件名以SW开头)可以先安装试用一段时间。 阅读全文
posted @ 2015-07-14 10:22 圆旭 阅读(351) 评论(0) 推荐(0)
摘要: wget -i download.txt这样就会把download.txt里面列出的每个URL都下载下来。wget -chttp://the.url.of/incomplete/file使用断点续传。转自:http://tomrose.iteye.com/blog/1055640 阅读全文
posted @ 2015-07-04 13:35 圆旭 阅读(546) 评论(0) 推荐(0)