Category: Z. etc
Posted by: hajime osako
Category: Z. etc
Posted by: hajime osako
VMware Communities: Christian FERRERO: How to change IP Address on ESX Server

#esxcfg-vswif -l
#esxcfg-vswif -p Service\ Console -i IP_Address -n IP_Mask
#esxcfg-vswif -p Service\ Console -i x.x.x.x -n x.x.x.x vswif0

Change GW
Edit this file "/etc/sysconfig/network" and change IP GW
Category: Z. etc
Posted by: hajime osako
Category: Z. etc
Posted by: hajime osako
CygwinによるSSHサーバ構築 インストール ii [HiTo!サポートサイト Tech.info]

Admin項目から『cygrunsrv』を選択します。このパッケージはSSHデーモンの制御を行います。選択できたら、『次へ』をクリックします。

install画面2ダウンロードするパッケージ選択の2画面目です。Net項目から『openssh』と『openssl』を選択します。このパッケージはSSH機能を提供します。選択できたら、『次へ』をクリックします。

install画面3ダウンロードするパッケージ選択の3画面目です。System項目から『procps』を選択します。このパッケージはシステム情報を取得する「vmstat」や「free」などのコマンドを提供します。選択できたら、『次へ』をクリックします。
Category: Z. etc
Posted by: hajime osako

04/28: Linux > ROUTE

Category: Z. etc
Posted by: hajime osako
Category: Z. etc
Posted by: hajime osako
Category: Z. etc
Posted by: hajime osako
Category: Z. etc
Posted by: hajime osako
なぜかリダイレクトするページがキャッシュされて、exit()が使用されていない場合、Internet Explorerのアドレスバーにリダイレクトを実行するURLが表示されたままになる。

直すには、
   header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
   header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past
   header("Location: http://www.osakos.com/");
   exit();
Category: Z. etc
Posted by: hajime osako
Crispy JavaScript Cookies: JavaScript Cookie Functions - Doc JavaScript
function setCookie(name, value, expires, path, domain, secure) {
   if(!expires)
   {
      expires = new Date();
      var yy = expires.getYear();
      if (yy < 2000) yy += 1900;
      expires.setYear(yy+1);
   }

   if(value.length <= 4000)
   {
      var curCookie = name + "=" + escape(value) +
         ((expires) ? "; expires=" + expires.toGMTString() : "") +
         ((path) ? "; path=" + path : "") +
         ((domain) ? "; domain=" + domain : "") +
         ((secure) ? "; secure" : "");

      document.cookie = curCookie;
   }
}