在XP下安装vsphere client 5.5后,连接VCENTER 5.5或esxi5.5 出现错误如下:
vSphere Client could not connect to “FQDN or IP Address”
An unknown connection error occurred. (The Client could not send a complete request t...
分类:
其他好文 时间:
2014-11-24 15:25:16
阅读次数:
1030
首先要提醒,mu4e发送邮件是基于gnus的,如果不知道这点,基本上是不会发送成功的。我持续遇到503认证失败错误。配置如下:首先在.emacs.d/init.el文件中如下:;; alternatively, for emacs-24 you can use:
(setq message-send-mail-function 'smtpmail-send-it
smtpmail-def...
分类:
其他好文 时间:
2014-11-23 15:59:32
阅读次数:
166
概述Unlike TCP, UDP has no notion of connections. A UDP socket can receive datagrams from any server on the network and send datagrams to any host on th...
分类:
其他好文 时间:
2014-11-21 18:08:38
阅读次数:
447
利用SecureCRT上传、下载文件(使用sz与rz命令) 借助securtCRT,使用linux命令sz可以很方便的将服务器上的文件下载到本地,使用rz命令则是把本地文件上传到服务器。 其中,对于sz和rz的理解与记忆我用了如下的方法(很多时候容易搞混): sz中的s意为send(发送),告诉客户...
分类:
Web程序 时间:
2014-11-21 14:04:37
阅读次数:
197
#!/usr/bin/expect -f set ip 192.168.20.200 set password admin set timeout 10 spawn ssh root@$ip -p 2169 expect { ##"*yes/no" { send "yes\r"; exp_conti...
分类:
其他好文 时间:
2014-11-21 12:18:30
阅读次数:
165
用一个线程循环检测各个TimerID,到时则发送一个完成通知消息,消息里包含类型TIMER(还可能有网络消息,Accept,Recv,Send)和TimerID,由等待线程根据消息类型来执行OnTimer.
分类:
其他好文 时间:
2014-11-20 23:34:02
阅读次数:
445
我的win7貌似是自带的curl curl的安装http://jingyan.baidu.com/article/a681b0dec4c67a3b1943467c.html 可以通过curl --help查看使用方法 发送POST请求 curl -d "send data ..." localhost:30000 -d代表发送POS...
一、通过Cocoa Pods安装MQTTKit
MQTTKit在github上链接https://github.com/NormanLeeIOS/MQTTKit#send-a-message...
分类:
其他好文 时间:
2014-11-19 15:58:11
阅读次数:
294
在SecureCRT这样的ssh登录软件里, 通过在Linux界面里输入rz/sz命令来上传/下载文件. 对于RHEL5, rz/sz默认没有安装所以需要手工安装.sz: 将选定的文件发送(send)到本地机器;rz:运行该命令会弹出一个文件选择窗口, 从本地选择文件上传到服务器(receive)....
分类:
系统相关 时间:
2014-11-18 23:24:44
阅读次数:
204
在Android中实现分享有一种比较方便的方式,调用系统的分享面板来分享我们的应用。最基本的实现如下: public Intent getShareIntent(){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, "这是测试分享...
分类:
移动开发 时间:
2014-11-17 17:55:36
阅读次数:
248