• 雅虎通中文版两个严重Bug - [Test]

    2008-07-18

    Tag:
    一、消息框中文输入,经常莫名其妙字体变得极小,所有的快捷按键全部失效,需要用鼠标点击“发送”才可以

    二、百宝箱的“股票”模块一旦在机器断网后重连接之后,隔几秒就弹出一个对话框,搞得人很烦。

    以上两个问题都只能彻底退出雅虎通再重新登录。都是中文版惹得祸,这么明显的Bug,严重影响用户的使用体验。

  • OpenSSL Examples - [Network]

    2008-06-26

    Tag:
    Example for creating encrypted private key and self-signed certificate for the CA.openssl req -new -x509 -keyout private/cakey.pem -out cacert.pem -days 365 -config openssl.cnf

    Generate certificate request

    openssl x509 -x509toreq ...
  • 翻译 By changyong0314@hotmail.com

    1、如何创建Test Cases

    Test Cases基本要素:
    1 简明的标题(说明测试的目的)
    2 用例的优先级,测试所需时间
    3 初始化条件,如何构造测试环境
    4 执行测试的详细步骤
    5 期望Test Cases执行后的正确结果

    关于测试用例的优先级别的设定:
    pri1 - 基本的功能
    pri2 ...
  • To change phpMyAdmin configuration, you must edit the file config.inc.php. Open the file and locate a group of lines all starting with $cfg['Servers'][$i]; edit the following lines (note: they might not be together or in the order shown here) to suit y...
  • Email Relay Test - [Network]

    2008-06-18

    Tag:
    You type this textServer should respond with thisTELNET mail.example.com 25Trying 10.10.10.1.
    Connected to mail.example.com.
    Escape character is '^]'.
    220 mail.example.comHELO mail.example250 OKMAIL FROM:<sender@example.com>250 OK ...
  • SecureCRT可以使用linux下的zmodem协议来快速的传送文件,你只要设置一下上传和下载的默认目录就可以了:

    options-->session options-->file transfer 下可以设置上传和下载的目录
    剩下的你只要在用SecureCRT登陆linux终端的时候:

      发送文件到客户端:

      sz filename

      zmodem接收可以自行启动.
    ...
  • 使ssh不用输入密码 - [Linux]

    2008-03-14

    Tag:
    首先生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"
          [user1@rh user1]$ ssh-keygen -t rsa
      Generating public/private rsa key pair.
      Enter file in which to save the key (/home/user1/.ssh/id_rsa):
      Cr...
  • SSH (Secure Shell)是一套安全的网络连接程序,它可以实现通过网络远程登录其他系统,它就是加密的telnet协议。但是OPENSSH除了具有远程登录功能以外,更可以建立加密IP隧道。


    我们这里假设Alice.org服务器位于某个企业网的内网,其IP地址为192.168.2.200,它通过NAT方式可以访问互联网。我们现在需要通过位于互联网上的名字为bob.org的机器里访问Alice,也就是远程登录Alice。这时候我们就需要在bob和alice之间...