月曜日, 8月 10, 2009

十七条の憲法 : 現代語訳

ネット上で目にして、ぐっと来た文章。
≪ 十七条の憲法 : 現代語訳 ≫


第1条 お前ら仲良くしろよ
第2条 仏様とお経と坊さんは大切にしろよ
第3条 天皇陛下の詔勅は謹んで受けろ

第4条 役人は礼儀と身分をわきまえろ
第5条 人を裁く奴は賄賂とかに惑わされんなよ
第6条 ならず者は叩け。良いことしろ

第7条 役人はちゃんと自分の仕事をしろ
第8条 役人は朝早く出勤して夜遅く帰れ。きっちり定時なんかに帰るなよ
第9条 信用は大切だぞ

第10条 他人が何か間違ったことをしても、度を過ぎた叱責はよせ。お互いさまだ
第11条 功績や過ちはハッキリさせて、賞罰とかその辺はキッチリさせろよ
第12条 役人は住民から搾取しちゃダメだぞ

第13条 役人ども、お前らは同僚が何やってるかはきっちり知っておけよ
第14条 役人は他の市とかの方が給料高いからって妬んだりすんな
第15条 役人どもは自分の財布のことばっかり考えてないで国のために働け

第16条 国民に何かを課すときは、必ず時期とか空気読んでやれよ
第17条 重要事項は会議して決めろ。一人でコソコソやんなよ

月曜日, 4月 27, 2009

How to install etch on CompactFlash

母艦にDebianEtchをInstall。
tasksel全選択解除。
Network Update:No
Grub Install:Yes

再起動

vi /etc/apt/sources.list
cd行コメントアウト。
下記2行追加。
deb http://cdn.debian.or.jp/debian/ etch main
deb-src http://cdn.debian.or.jp/debian/ etch main

apt-get update
apt-get install ssh dosfstools
wget ftp://ftp.debian.org/debian/pool/main/l/live-helper/live-helper_1.0.4-1_all.deb
dpkg -i live-helper_1.0.4-1_all.deb
apt-get install debootstrap
apt-get -f install

lh_clean
mkdir -p config/chroot_sources
echo "deb http://live.debian.net/debian/ etch main" >config/chroot_sources/live.bootstrap
lh_config
lh_config -b iso -d etch --initramfs casper --tasksel tasksel --bootloader grub --hostname cfboot --packages "apache2 perl bridge-utils" --union-filesystem unionfs

vi config/chroot
適宜編集。


lh_build


fdisk /dev/hdb
n
p
1
1
505
t
0b
n
p
2
506
568
n
p
3
569
3884
a
1
w

# fdisk -l
Disk /dev/sdX: 2063 MB, 2063597568 bytes
64 heads, 62 sectors/track, 1015 cylinders
Units = cylinders of 3968 * 512 = 2031616 bytes

Device Boot Start End Blocks Id System
/dev/hdb1 1 505 1001889 b W95 FAT32
/dev/hdb2 506 568 124992 83 Linux
/dev/hdb3 * 569 3884 ???????? 83 Linux


mkdosfs -F 32 /dev/hdb1
mkfs.ext3 /dev/hdb2 -L home-rw
mkfs.ext3 /dev/hdb3


mount /dev/hdb3 /mnt/hdb3/
cd /mnt/hdb3
mkdir -p boot/grub
cp /boot/grub/* boot/grub
echo '(hd1) /dev/hdb' > boot/grub/device.map
grub-install --root-directory=/mnt/hdb3 --no-floppy '(hd1)'

vi /mnt/hdb3/boot/grub/menu.lst
適宜編集。

# menu.lst - See: grub(8), info grub, update-grub(8)
default saved
timeout 5
color cyan/blue white/blue
#
title Debian live
kernel /casper/vmlinuz bootkbd=es vga=791 ramdisk_size=100000 boot=casper username=user hostname=debian persistent
initrd /casper/initrd.img
boot

title Debian live nopersistent
kernel /casper/vmlinuz bootkbd=es vga=791 ramdisk_size=100000 boot=casper username=user hostname=debian nopersistent
initrd /casper/initrd.img
boot

title Debian live-failsafe
kernel /casper/vmlinuz bootkbd=es ramdisk_size=100000 boot=casper username=user hostname=debian nopersistent noapic noapm nodma nomce nolapic nosmp vga=normal
initrd /casper/initrd.img
boot

title Memtest
kernel /casper/memtest
boot


mkdir /tmp/iso
mount -o loop binary.iso /tmp/iso
cp -a /tmp/iso/* /mnt/hdb3/
cd /mnt/hdb3
#rm -Rf isolinux(多分存在しない)
umount /dev/hdb3


mkdir /mnt/hdb2
mount /dev/hdb2 /mnt/hdb2
cp -a /home/* /mnt/hdb2/
umount /dev/hdb2

reboot

水曜日, 3月 11, 2009

DebianでConsole接続

blog.shimazu.org参照。

Debian GNU/Linux (Etch) でのシリアルコンソール接続

おそらくサーバ運用における基本のキなんだろうけど、シリアルコンソール接続をはじめて設定してみて、思いのほかてこずったので、メモしておく(DebianマシンにWindows PCからアクセスする想定)。

/etc/inittab の以下を修正。

■修正前
#T0:23:respawn:/sbin/getty -L ttyS0 9600 vt100
■修正後
T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100
#コメントアウトを削除の上、通信速度を変更。

反映のため、以下コマンドを実行。

# init q

/etc/securetty の以下を修正。

■修正前
#ttyS0
■修正後
ttyS0
#コメントアウトを削除

/boot/grub/menu.lst の以下を修正。

■追加
serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1
terminal --timeout=10 serial console

■kernel部分に「console=ttyS0,115200n8」を追加
title Debian GNU/Linux, kernel 2.6.18-5-686
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-5-686 root=/dev/hda1 ro console=tty0 console=ttyS0,115200n8
initrd /boot/initrd.img-2.6.18-5-686
savedefault
title Debian GNU/Linux, kernel 2.6.18-5-686 (single-user mode)
root (hd0,0)
kernel /boot/vmlinuz-2.6.18-5-686 root=/dev/hda1 ro single console=tty0 console=ttyS0,115200n8
initrd /boot/initrd.img-2.6.18-5-686
savedefault

火曜日, 3月 03, 2009

特定のポートをオープンしているプロセスを調べるには

@ITより
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/664useportps.html

apt-get install lspf

# lsof -i:22
など。

月曜日, 2月 16, 2009

killall on debian

apt-get install psmisc

apt-getの鍵問題。

apt-get update
Get:1 http://ftp.jp.debian.org lenny Release.gpg [386B]
Ign http://ftp.jp.debian.org lenny/main Translation-en_US
Get:2 http://ftp.jp.debian.org lenny Release [63.2kB]
Get:3 http://ftp.jp.debian.org lenny/main Packages [5295kB]
Get:4 http://ftp.jp.debian.org lenny/main Sources [2304kB]
Get:5 http://security.debian.org etch/updates Release.gpg [189B]
Ign http://security.debian.org etch/updates/main Translation-en_US
Ign http://security.debian.org etch/updates/contrib Translation-en_US
Get:6 http://security.debian.org etch/updates Release [37.6kB]
Ign http://security.debian.org etch/updates/main Packages/DiffIndex
Ign http://security.debian.org etch/updates/contrib Packages/DiffIndex
Ign http://security.debian.org etch/updates/main Sources/DiffIndex
Ign http://security.debian.org etch/updates/contrib Sources/DiffIndex
Get:7 http://security.debian.org etch/updates/main Packages [315kB]
Hit http://security.debian.org etch/updates/contrib Packages
Get:8 http://security.debian.org etch/updates/main Sources [50.4kB]
Hit http://security.debian.org etch/updates/contrib Sources
Fetched 8065kB in 9s (862kB/s)
Reading package lists... Done
W: There is no public key available for the following key IDs:
4D270D06F42584E6
W: You may want to run apt-get update to correct these problems

上記のように鍵が・・・と言われる事がある。
その時はすかさず、
apt-get install debian-archive-keyring
これで問題解消。

木曜日, 1月 29, 2009

XORP on debian

vi /etc/apt/sources.list

etch -> testing

apt-get update;apt-get upgrade;apt-get dist-upgrade
reboot

apt-get -s install xorp

maybe need to update dpkg.
you have to download apt_0.7.20.1_i386.deb or higher before update.

apt-get install xorp

echo "xorp:x:root," >> /etc/group

reboot

xorp_rtrmgr &

xorpsh

木曜日, 10月 02, 2008

squidで構文チェック

# /usr/local/squid/sbin/squid -k parse
でsquid.confの構文確認。

apacheのapachectl configtestみたいなもの。

月曜日, 9月 29, 2008

Xen on Debian amd64

Install Debian amd64

apt-get install xen-linux-system-2.6.18-6-xen-amd64 xen-tools bridge-utils

vi /etc/xen/xend-config.sxp
(network-script network-bridge)
#(network-script network-dummy)

vi /etc/xen-tools/xen-tools.conf
dir =
debootstrap = 1
gateway =
netmask =
kernel = /boot/vmlinuz-2.6.18-6-xen-amd64
initrd = /boot/initrd.img-2.6.18-6-xen-amd64
passwd = 1


mkdir -p /home/xen/domains

xen-create-image --ip 192.168.0.1 --hostname hoge

xm create /etc/xen/hoge.cfg

xm console hoge

火曜日, 6月 17, 2008

Xen on Debian

Install Debian

apt-get install xen-linux-system-2.6.18-4-xen-686 libc6-xen xen-tools bridge-utils

vi /etc/xen/xend-config.sxp
(network-script network-bridge)
#(network-script network-dummy)

vi /etc/xen-tools/xen-tools.conf
dir =
debootstrap = 1
gateway =
netmask =
kernel = /boot/vmlinuz-2.6.18-4-xen-686
initrd = /boot/initrd.img-2.6.18-4-xen-686
passwd = 1


mkdir -p /home/xen/domains

xen-create-image --ip 192.168.0.1 --hostname hoge

xm create /etc/xen/hoge.cfg

xm console hoge

金曜日, 5月 09, 2008

Gallery2 のアップロードファイルサイズが2MBの制限

* アップロードファイルサイズが2MBの制限
o Why can't I upload big files (over a megabyte or two)?
o これはGalleryではなくPHPの制限である。php.ini のupload_max_filesize と post_max_size を変更する。

post_max_size = 12M
upload_max_filesize = 12M

o .htaccess で設定することもできる。

php_value post_max_size 10M
php_value upload_max_filesize 10M

o しかし、"Internal Server Error" が発生する場合がある。これはサーバが変更を許可していないからである。


以上、Agorian.comより。

水曜日, 2月 27, 2008

FreeBSD perl upgrade

#cd /usr/ports/lang/perl5
#make install clean
#use.perl

#perl-after-upgrade

水曜日, 1月 16, 2008

Ubuntu 7.10 on Virtual PC

何も考えずにInstallしたらハマった。

http://yk.tea-nifty.com/netdev/2007/10/ubuntu_710_on_v_066b.html
http://blog.tofu-kun.org/070222113040.php
を参考にした。

まだ試用中。

水曜日, 1月 09, 2008

Network/Server Mgmt using Nagios

http://d.hatena.ne.jp/babie/20071126/1196077906

上記のサイトを見つつDebianでやったら簡単に出来た。
以前、FreeBSDでやったときにはハマったのに。。。

火曜日, 1月 08, 2008

NZNOG2008のお知らせ(January 23 to January 25 2008)

NANOG,SANOG,AusNOGにて受信 たぶんNZNOGとPacNOGからもDigestでくるかも。

Denedin という古い街で開催らしい。(とは言っても150年くらいしか歴史がないが)

A quick reminder that the NZNOG 2008 conference is only two weeks
away now.

http://conference.nznog.org

We need to finalise numbers very shortly now, so go ahead and
register NOW if you intend to come and haven't already.

The largely-finalised programme is up on the website, there's been
some great new additions over the past month so do check it out at:

http://conference.nznog.org/conferenceprogramme.html

Thanks, and looking forward to seeing you in Dunedin!
Jonny.

月曜日, 1月 07, 2008

2007年度12月分アクセス解析結果

私が管理しているWeb/Blogの12月分統計です。
BloggerとMSNLiveから来られる方が多いようです。
検索エンジンはダントツGoogleですが。
検索フレーズ・ワード共にFreeBSD/NetBSD/Debian関連と英語エントリで固まってきました。
アクセス元ドメインはOCNが依然Topですがリードは減ってきています。
OSはXPが増え、Vistaは増えません。
ブラウザはFirefoxが伸びを見せ、IEは50%を切ってきました。
英語環境の方が増えてきたようですね。

今年も一年よろしくお願いいたします。

リンク元統計
1 不詳(ブックマーク等) 7.7% 29
2 http://eatbma.blogspot.com/2006/07/maisen-tonkats... 1.6%
3 http://search.live.com/results.aspx?q=value&m... 1.6%
4 http://search.live.com/results.aspx?q=owner&m... 1%
5 http://www.google.co.jp/search?sourceid=navclient... 0.5%
6 http://www.google.com/search?q=%E9%83%A8%E5%B1%8B... 0.5%
7 http://www.google.co.jp/search?hl=ja&q=narita... 0.5%
8 http://www.google.co.jp/search?hl=ja&q=%22Cel... 0.5%
9 http://mixi.jp/show_friend.pl?id=1... 0.5%
10 http://images.google.com/imgres?imgurl=http://bp1... 0.5%
11 http://www.google.co.jp/search?hl=ja&client=f... 0.5%
12 http://www.google.com/search?hl=en&q=tokyo+po... 0.5%
13 http://www.google.co.jp/search?hl=ja&q=good+p... 0.5%
14 http://www.google.co.jp/search?sourceid=navclient... 0.5%
15 http://www.google.co.jp/search?hl=ja&q=apt-ge... 0.5%

検索エンジン
1 Google 94.3%
2 BIGLOBE 1.3%
3 Goo 1.3%
4 Yahoo!JAPAN 1.3%
5 OCN 0.6%
6 @nifty 0.3%
7 infoseek 0.3%
8 livedoor 0.3%

検索ワード
1 [Google] tokyo 8.3%
2 [Google] guide 3%
3 [Google] food 2.7%
4 [Google] japan 2.3%
5 [Google] japanese 2%
6 [Google] in 2%
7 [Google] culture 1.8%
8 [Google] qemu 1.4%
9 [Google] to 1.4%
10 [Google] pop 1.3%
11 [Google] debian 1.2%
12 [Google] market 1.1%
13 [Google] fish 1.1%
14 [Google] tsukiji 1.1%
15 [Google] Tokyo 1.1%
16 [Google] sample 1%
17 [Google] tour 1%
18 [Google] gallery2 0.7%
19 [Google] freebsd 0.7%
20 [Google] sightseeing 0.7%

検索フレーズ
1 [Google] culture pop tokyo 2.6%
2 [Google] freebsd qemu 2.3%
3 [Google] food sample 1.3%
4 [Google] hitori japanese nabe 0.9%
5 [Google] ブログ 写真 部屋の模様替え 0.9%
6 [Google] debian qemu 0.6%
7 [Google] Food sample 0.6%
8 [Google] club guide tokyo 0.6%
9 [Google] debian gallery2 0.6%
10 [Google] cobalt netbsd raq2 0.6%
11 [Google] auction fish tsukiji 0.6%
12 [Google] "Cell Culture" Phone 0.6%
13 [Google] izakaya japan 0.6%
14 [Google] 塩分 過多 0.6%
15 [Google] airport food narita 0.6%

アクセス元ドメイン
1 ocn.ne.jp 6.5%
2 dion.ne.jp 5%
3 bbtec.net 4.7%
4 ucom.ne.jp 3.7%
5 61.211.*.* 3.5%
6 live.com 3.2%
7 plala.or.jp 3%
8 so-net.ne.jp 2.7%
9 vectant.ne.jp 2.2%
10 infoweb.ne.jp 2%
11 asahi-net.or.jp 1.7%
12 mesh.ad.jp 1.5%
13 odn.ne.jp 1.5%
14 wakwak.ne.jp 1.5%
15 2iij.net 1.2%
16 com.sg 1.2%
17 iprevolution.ne.jp 1.2%
18 verizon.net 1.2%
19 sbcglobal.net 1.2%
20 dti.ne.jp 1%

OS
1 Windows XP 68.3%
2 Macintosh 12.9%
3 Windows Vista 6%
4 Windows Server 2003 4.4%
5 FreeBSD 3.4%
6 Linux 2.1%
7 Windows 2000 2.1%
8 -AskJeevesJapan 0.2%
9 -MyWay 0.2%

ブラウザ
1 Firefox 39%
2 Internet Explorer 6.0 30.4%
3 Internet Explorer 7.0 18.7%
4 Safari 5.8%
5 Sleipnir 1.5%
6 Googlebot/2.1 1%
7 Googlebot-Image/1.0 0.7%
8 Mozilla 5.0 0.7%
9 Internet Explorer 5.5 0.2%
10 Internet Explorer 5.16 0.2%
11 Mozilla 1.8.1.10 0.2%
12 Mozilla 1.8.1.11 0.2%
13 Opera 9.23 0.2%
14 Opera 9.24 0.2%
15 Netscape 7.1 0.2%

国/言語
1 日本語 56.6%
2 英語 38.9%
3 フランス語 1%
4 タイ語 1%
5 ドイツ語 0.5%
6 ポルトガル語 0.5%
8 チェコ語 0.2%
9 デンマーク語 0.2%
10 イタリア語 0.2%
11 中国語 0.2%

火曜日, 12月 04, 2007

Hyper Estraier Install memo

#Hyper Estraier Install
cd /usr/ports/textproc/hyperestraier; make install clean
cd /usr/ports/textproc/pdftohtml; make -D WITHOUT_X11 install clean
cd /usr/ports/japanese/xpdf;make install clean

#adding PATH /usr/local/share/hyperestraier/filter

mkdir -p /mnt/hdd/estraier/index/

#Making Index about PDF
estcmd gather -cl -pc UTF-8 -fx ".pdf" "H@estfxpdftohtml" -fz -ic UTF-8 -sd -cm /mnt/hdd/estraier/index/ /mnt/hdd/root/share/PDFs/
#Search directory is /mnt/hdd/root/share/PDFs/ making index on /mnt/hdd/estraier/index/

#Copy the search script
cp /usr/local/libexec/estseek.cgi /usr/local/www/cgi-bin/

#Copy the search script config file
cp /usr/local/share/hyperestraier/estseek.conf /usr/local/www/cgi-bin/

#Copy the search script template file
cp /usr/local/share/hyperestraier/estseek.tmpl /usr/local/www/cgi-bin/

#Copy the search script top page file
cp /usr/local/share/hyperestraier/estseek.top /usr/local/www/cgi-bin/

#edit config file

vi /usr/local/www/cgi-bin/estseek.conf

indexname: /mnt/hdd/estraier/index/
lprefix: /usr/local/
showlreal: true
replace:

estcmd gather -tr -cl -pc UTF-8 -fx ".pdf" "H@estfxpdftohtml" -fz -ic
UTF-8 -sd -cm -cs 256 /mnt/hdd/estraier/index/ /usr/local/


estcmdの中に textサイズ 128KB, 元のファイルサイズ30MBという制限があったので、
これを 1MB, 96MBに緩和して食わせてみた。

# /usr/ports/textproc/hyperestraier/work/hyperestraier-1.4.10/estcmd.c

#define LIMITTSIZ (1024*1024) /* text size limitation */
#define LIMITFSIZ (1048576*96) /* file size limitation */

#make;make install

日曜日, 12月 02, 2007

2007年度11月分アクセス解析結果

私が管理しているWeb/Blogの11月分統計です。

ようやくfreebsdネタが検索フレーズで上位に来るようになった模様。
相変わらずQemuでお困りの方が多い感じ。
あとはBlogをBloggerから移転したいヒトが多いのかな。

その他注目点。

アクセス元ドメイン:OCNが一躍Topに。
OS:Macintoshが倍増。理由は不明。
ブラウザ:Firefox,Safari,Mozillaが比率上昇。
言語:ドイツ語が3倍増。英語は5%ダウン。ともに理由は分かりません。

来月も集計してみます。

リンク元統計
Top15
1 不詳(ブックマーク等) 9.2%
2 http://search.live.com/results.aspx?q=value&m... 2.4%
3 http://mixi.jp/view_diary.pl?id=... 2.4%
4 http://www.google.co.jp/search?sourceid=navclient... 2%
5 http://search.live.com/results.aspx?q=login&m... 1.2%
6 http://search.live.com/results.aspx?q=views&m... 1.2%
7 http://www.google.co.jp/ig?hl=ja 0.8%
8 http://takabsd.jp/d/?date=20070801 0.8%
9 http://www.google.co.jp/search?sourceid=navclient... 0.8%
10 http://www.google.co.jp/search?q=gallery2&hl=... 0.8%
11 http://www.blogger.com/rearrange?blogID=15024082 0.8%
12 http://www.google.co.jp/search?hl=ja&q=churra... 0.8%
13 http://www.google.co.jp/search?q=allintext:%E3%83... 0.8%
14 http://www.google.co.jp/search?num=50&hl=ja&a... 0.8%
15 http://blogsearch.google.co.jp/blogsearch?hl=ja&a... 0.8%

検索エンジン
1 Google 95.5%
2 Yahoo!JAPAN 1.6%
3 BIGLOBE 1.1%
4 @nifty 1.1%
5 Goo 0.5%

検索ワード
Top20
1 [Google] tokyo 9%
2 [Google] guide 3.3%
3 [Google] pop 2.8%
4 [Google] in 2.8%
5 [Google] culture 2.6%
6 [Google] debian 2.6%
7 [Google] qemu 2.6%
8 [Google] tour 2%
9 [Google] gallery2 1.6%
10 [Google] japan 1.5%
11 [Google] food 1.3%
12 [Google] Tokyo 1.3%
13 [Google] freebsd 1.3%
14 [Google] japanese 1.3%
15 [Google] Japan 1.3%
16 [Google] lunch 1.3%
17 [Google] school 1.1%
18 [Google] best 1.1%
19 [Google] Michelin 0.9%
20 [Google] site:blogspot.com/ 0.9%

検索フレーズ
Top15
1 [Google] culture pop tokyo tour 3.9%
2 [Google] freebsd qemu 3.9%
3 [Google] best guide in tokyo 2.2%
4 [Google] debian qemu 2.2%
5 [Google] churrasco tokyo 2.2%
6 [Google] guide tokyo tower 2.2%
7 [Google] gallery2 1.6%
8 [Google] japanese lunch school 1.6%
9 [Google] Qemu freeBSD 1.1%
10 [Google] install qemu 1.1%
11 [Google] allintext:ブログ site:blogspot.com/ 移転 1.1%
12 [Google] Tokyo showplace 1.1%
13 [Google] culture pop tokyo 1.1%
14 [Google] Canadians Japan gaijinpot in 1.1%
15 [Yahoo!JAPAN] HDA コメント ニコニコ動画 1.1%

アクセス元ドメイン
Top20
1 ocn.ne.jp 9.4%
2 bbtec.net 4.9%
3 61.211.*.* 4.9%
4 phx.gbl 4.1%
5 dion.ne.jp 3.7%
6 plala.or.jp 3.7%
7 asahi-net.or.jp 3.7%
8 ucom.ne.jp 3%
9 infoweb.ne.jp 2.2%
10 mesh.ad.jp 2.2%
11 66.180.*.* 2.2%
12 so-net.ne.jp 1.8%
13 61.135.*.* 1.5%
14 128.241.*.* 1.5%
15 tcnet.ne.jp 1.5%
16 point.ne.jp 1.5%
17 pacbell.net 1.1%
18 dti.ne.jp 1.1%
19 comcast.net 1.1%
20 2iij.net 1.1%

OS
1 Windows XP 63.6%
2 Macintosh 9.8%
3 Windows Server 2003 5.9%
4 Windows Vista 5.9%
5 Windows 2000 5.5%
6 Linux 4.7%
7 FreeBSD 3.1%
8 Windows 98 0.3%
9 Windows NT 0.3%
10 -MyWay 0.3%

ブラウザ
1 Firefox 33.2%
2 Internet Explorer 6.0 30.5%
3 Internet Explorer 7.0 20.2%
4 Safari 6.4%
5 Mozilla 5.0 1.9%
6 Sleipnir 1.5%
7 Mozilla 1.8.1.8 1.1%
8 Opera 9.20 0.7%
9 Mozilla 1.8.0.13pre 0.7%
10 Opera 9.22 0.7%
11 Opera 9.24 0.7%
12 Mozilla 1.8.1.1 0.3%
13 Opera 9.50 0.3%
14 Googlebot-Image/1.0 0.3%
15 Mozilla 1.7.12 0.3%
16 Internet Explorer 5.5 0.3%

言語
1 日本語 66.2%
2 英語 29.4%
3 ドイツ語 1.9%
4 スペイン語 1.1%
5 オランダ語 0.3%
6 タイ語 0.3%
7 中国語 0.3%