码迷,mamicode.com
首页 >  
搜索关键字:ssh scp error    ( 47807个结果
scp 详细总结
转自:http://www.ha97.com/4169.htmlscp命令跟cp命令类似,只不过cp命令是在同一台机器上用的,scp是在两台机器上复制传输数据的命令。scp实质相当于利用SSH协议来传输数据的cp命令。用法举例:1、复制远程服务器的文件到本地:scp -P888 root@120.....
分类:其他好文   时间:2014-07-22 23:13:35    阅读次数:387
2014华为编程比赛-筷子问题
//华为编程:筷子,找到第一个单对的筷子#include #define max 37int main(){ int n,i,j; int a[max]; int flag=0; int error=-1; scanf("%d",&n); if(n>max) ...
分类:其他好文   时间:2014-07-22 23:13:33    阅读次数:339
PHP (20140429)
mysql_num_rows();返回结果集中行的数目。1 $sql1 = "select * from movie";2 $result1 = mysql_query($sql1) or die(mysql_error());3 $count = mysql_num_rows($result1);...
分类:Web程序   时间:2014-07-22 23:13:33    阅读次数:354
【ERROR】bash: vim: command not found的解决办法
今天在学习鸟哥的菜的时候,发现自己linux不可以启用vim命令,错误为:bash: vim: command not found。 机器环境:VMWare8+RED HAT Enterprise5 解决方法: 发现问题的根源在于没有安装好vim 输入 rpm -qa|grep vim ...
分类:其他好文   时间:2014-07-22 23:12:56    阅读次数:993
2014华为编程比赛-筷子问题
//华为编程:筷子,找到第一个单对的筷子#include #define max 37int main(){ int n,i,j; int a[max]; int flag=0; int error=-1; scanf("%d",&n); if(n>max) { printf("...
分类:其他好文   时间:2014-07-22 23:12:15    阅读次数:325
shell脚本批量部署ssh
日常运维工作中,需要给几十上百台服务器批量部署软件或者是重启服务器等操作, 这样大量重复性的工作一定很苦恼,本文给大家提供了最基本的批量操作的方法,虽然效率不高,对于初学者来说还是好理解。由于刚开始学习写脚本,什么 puppt这样的高级工具还不会使用,就简单的利用shell脚本、ssh-keygen...
分类:其他好文   时间:2014-07-22 23:11:53    阅读次数:404
数组与指针——参数
引入:#include#includevoidfun(char**q){exit;}voidmain(){char**p,a[6][8];p=a;fun(a);}编译不能通过!ERROR:不能将”char(*)[8]”类型的值分配到”char**”类型的实体。ERROR:”char(*)[8]”类型...
分类:其他好文   时间:2014-07-22 23:11:34    阅读次数:313
解决Oracle ORA-12505, TNS:listener does not currently know of SID given in connect(转)
http://anthon-lx.iteye.com/blog/811460完整的错误信息如下:java.sql.SQLException: Listener refused the connection with the following error:ORA-12505, TNS:listene...
分类:数据库   时间:2014-07-22 23:09:35    阅读次数:430
一个静态的HTML页面用jquery ajax登录到sharepoint页面
$.ajax({type:"get", url:"http://", data:"name="+userid+"&password="+password,async:true, error:function(request){alert("Connectionerror"); }, success:...
分类:Web程序   时间:2014-07-22 23:06:54    阅读次数:373
SecureCRT+SecureFX 7.1.1.264整合版 - SSH和SFTP客户端
http://www.portablesoft.org/securecrt-securefx-integrated/SecureCRT和SecureFX都是由 VanDyke 出品的 SSH 传输工具。在此前的介绍中我们得知,SecureCRT是一款非常好用的、支持多标签的 SSH 客户端,极大方便...
分类:其他好文   时间:2014-05-01 16:02:15    阅读次数:957
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!