ESI(Edge Side Include)

説明はoracleのページが一番わかりやすい。

Akamai,OracleがESIの中心になっているのかな。

このESIは、2001年4月に米Akamai TechnologiesがOracleとともに提唱した技術だ。その後、BEA Systems、IBM、Vignetteらも共同開発に加わっている。

InternetWatchより

追記: ここここも参照

Posted at 10am on 12/07/07 | Posted in , | no responses | read on

Dell サーバのDiagログをフロッピに

ダイアグのログがRamドライブであるC:\>ドライブにしかないもんだから、しょうがないから、コピーしました。

C:\>COPY AUTO.TXT A:AUTO.TXT

これでコピーでけた。

Posted at 6pm on 12/06/07 | Posted in | no responses | read on

Lantronix SPIDER

これ欲しいんだよな。若松通商で7万強するんだよな。高いな。

spider

spider
Posted at 2pm on 12/05/07 | Posted in | no responses | read on

sysfsメモ

sysfsマウントメモ

マウントしたい場合

%sudo mount -t sysfs sysfs /sys 

ハードウェアに使っているドライバを調べたい場合

%sudo ls -al /sys/class/net/eth0/device/driver
lrwxrwxrwx 1 root root 0 2007-12-05 13:49 /sys/class/net/eth0/device/driver -> ../../../../bus/pci/drivers/pcnet32

%sudo basename `readlink /sys/class/net/eth0/device/driver`
pcnet32
Posted at 1pm on 12/05/07 | Posted in | no responses | read on

Linux Port multiplier

バックアップサーバ用途として、2,3台目のPort Multiplierストレージサーバを作る事となった。

今回はとりあえず、HDDと筐体の玄蔵が正常に動作することを確認するために、/boot/以下のカーネルと、/lib/module/以下のモジュールを新サーバに全コピーして動作確認した。 全部初期不良は無さそうだったので、確認OKとしてここまでとした。

kernel 2.6.18-4(debian etch)では、Port Multiplierに対応していないようなので、2.6.18-1に下げるかと思いきや、最近またパッチサイトが復活していて、最新版に追従しているので、libata-tj、ここの2.6.22.1を使おうかと考え中!!

Posted at 2am on 12/05/07 | Posted in , | no responses | read on

S.M.A.R.Tメモ

Serial ATAのdisk診断する場合のコマンドメモ

%sudo smartctl -d ata -a /dev/sda  

Serial ATAの場合は 「-d」オプションを付ける

HDDのエラーを見たい場合は、「-l error」オプションを付ける

% sudo smartctl -l error -d ata /dev/sda                                                                                                                                                
smartctl version 5.36 [i686-pc-linux-gnu] Copyright (C) 2002-6 Bruce Allen
Home page is http://smartmontools.sourceforge.net/

=== START OF READ SMART DATA SECTION ===
SMART Error Log Version: 1
No Errors Logged

こんな感じでエラーログがあるかないかを見る事が出来る。 いづれもkernel 2.6.15以上でないと駄目なので注意ね。 etchなら問題なく出来るはず。

debianの場合は「smartmontools」パッケージをインストールすれば使える

ちなみに、エラーがある場合は、以下のようなログが出る。非常に残念な事態。

SMART Error Log Version: 1
ATA Error Count: 2
        CR = Command Register [HEX]
        FR = Features Register [HEX]
        SC = Sector Count Register [HEX]
        SN = Sector Number Register [HEX]
        CL = Cylinder Low Register [HEX]
        CH = Cylinder High Register [HEX]
        DH = Device/Head Register [HEX]
        DC = Device Command Register [HEX]
        ER = Error register [HEX]
        ST = Status register [HEX]
Powered_Up_Time is measured from power on, and printed as
DDd+hh:mm:SS.sss where DD=days, hh=hours, mm=minutes,
SS=sec, and sss=millisec. It "wraps" after 49.710 days.

Error 2 occurred at disk power-on lifetime: 1939 hours (80 days + 19 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  84 51 00 5e 99 77 e0  Error: ICRC, ABRT at LBA = 0x0077995e = 7838046

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 08 57 99 77 e0 00      10:47:44.491  READ DMA EXT
  25 00 08 87 c9 78 e0 00      10:47:44.479  READ DMA EXT
  25 00 08 77 3b 7b e0 00      10:47:44.477  READ DMA EXT
  25 00 08 97 94 7c e0 00      10:47:44.475  READ DMA EXT
  25 00 08 3f 44 7e e0 00      10:47:44.464  READ DMA EXT

Error 1 occurred at disk power-on lifetime: 1928 hours (80 days + 8 hours)
  When the command that caused the error occurred, the device was active or idle.

  After command completion occurred, registers were:
  ER ST SC SN CL CH DH
  -- -- -- -- -- -- --
  84 51 1f 52 2d a6 e0  Error: ICRC, ABRT 31 sectors at LBA = 0x00a62d52 = 10890578

  Commands leading to the command that caused the error were:
  CR FR SC SN CL CH DH DC   Powered_Up_Time  Command/Feature_Name
  -- -- -- -- -- -- -- --  ----------------  --------------------
  25 00 00 71 2c a6 e0 00   1d+12:34:14.968  READ DMA EXT
  25 00 00 71 2a a6 e0 00   1d+12:34:14.942  READ DMA EXT
  25 00 00 71 29 a6 e0 00   1d+12:34:15.243  READ DMA EXT
  25 00 00 71 27 a6 e0 00   1d+12:34:15.229  READ DMA EXT
  25 00 00 71 25 a6 e0 00   1d+12:34:15.220  READ DMA EXT
Posted at 12pm on 12/03/07 | Posted in | no responses | read on

TechNet入りたいなぁ。

Microsoft technet Plus Direct Subscription
これ入りたいんだよなー。年間39800円かー。高いけど、諸々考えたら絶対安いよなーー。

Posted at 12am on 12/03/07 | Posted in , | no responses | read on

ThinkPad Z61tが1周年

この12月で1周年を迎えました。 今はもう亡きZシリーズです。。。。。
あと1年分割払いが残っているのですが、1年後買うものについてスペックを挙げておく。。
(僕は2年間24分割支払で毎回NotePCを買っていて、1年後は買い替え時期。 2年毎にNotePCを買い変えてる訳です。)

  • ThinkPadであること
  • Wide液晶ディスプレイであること
  • Intel 64bit CPUを搭載であること
  • Windows Vistaであること。 そして64bit版であること
  • メモリが4G以上載ること(今も3G)
  • 802.11nでMIMOなこと
  • できれば、SSD(Sumsangが遂にSerialATA SSD出しましたね。メーカ出荷ですけども。。)
  • PCI Express Mini Card搭載(これは当たり前か。)

特にCPU64bitでVista64bitでメモリ4G以上のものは次に買うときは買いたいです。
逆にこのモデルが出るまでは、今のZ61tを使い続けるつもり。(ひょっとしたら、Macに移行するかもしれないですが。。。。。。)

Posted at 7am on 12/01/07 | Posted in | no responses | read on

PCG-FX33G/BPを触った

PCG-FX33G/BP だけども、スペックが低い。低い。低い。異常に低い。。。。 このパソコン直してって言われてもなぁ。。。直してもどうにもならんよ。。 せめてLinuxマシンにするくらいしかないよな。。。。

Posted at 7am on 12/01/07 | Posted in | no responses | read on

imapで日本語検索

imapでメールを受信しているが、メール検索で、日本語の部分の検索が出来ない事に気付いた。ちなみに、アルファベットは問題なく出来た。 うーん。なんでだろ??と思っていたら、検索時にキャラクタセットを指定する必要があるんですね。 今さら気づきましたよ。

例: 「Becky!」をメーラに使用して、キャラクタセット UTF-8を指定して、はてなのメルマガのヘッダで「その場」と記載があるものを検索した場合(キャラクタセットを指定しない場合は、検索結果が何もでてこない。)

いろいろ選べるが、自分のところはサーバのキャラクタセットがUTF-8なので、UTF-8で検索したところうまくいった。

Posted at 1pm on 11/28/07 | Posted in | no responses | read on

Older posts: 1 2 3 4