发布时间:2016-02-23 11:07:59
#!/usr/bin/perluse Modern::Perl;use Mail::POP3Client;use Email::MIME;use IO::Socket::SSL;use Encode;use HTML::Strip;# Set output to UTF8use utf8;use open ':std', ':encoding(UTF-8)';#binmode(STDOUT, ":utf8");#binmode(STDIN, ':encoding(utf8)');#binmode(STDOUT, ':encoding(utf8)');#bi.........【阅读全文】
发布时间:2016-02-22 17:39:42
原理: 图形程序都是客户端,通过Xwindows网络协议访问Xserver服务器端来显示图形,CS结构,所有理论上可以在ms windows上安装Xserver,linux客户端的图形程序就可以展示到windows下1. ms windows安装Xming二进制程序2. 利用secureCRT ssh登陆linux服务器,配置secureCRT的 Forward X11 packets 功能,去.........【阅读全文】
发布时间:2016-02-18 12:36:58
#!/bin/bashif [ $# -eq 2 ]; then user="$1" ip="$2"else echo "Usage: $0 username ip" exitfi#user='root'#ip='localhost'.........【阅读全文】