Windows 2000 SP3 適用後に,Windows Update でエラーが発生
2002-08-28-2
http://www.microsoft.com/japan/support/kb/articles/JP436/4/78.asp
2002-08-28-2
http://www.microsoft.com/japan/support/kb/articles/JP436/4/78.asp
2002-08-28-1
- Doxygen (開発元)
http://www.stack.nl/~dimitri/doxygen/
- Let's use doxygen! - Doxygen を使おう
http://www.fides.dti.ne.jp/~oka-t/doxygen.html
2002-08-09-1
- 入手
http://sourceforge.net/projects/mod-gzip/
- インストール
/usr/local/apache/bin/apxs -i -a -c mod_gzip.c
- 設定
LoadModule gzip_module libexec/mod_gzip.so
AddModule mod_gzip.c
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_keep_workfiles No
mod_gzip_minimum_file_size 1002
mod_gzip_maximum_file_size 0
mod_gzip_maximum_inmem_size 60000
mod_gzip_dechunk Yes
mod_gzip_temp_dir "/tmp"
mod_gzip_item_include mime "application/x-httpd-cgi"
mod_gzip_item_include mime "application/x-httpd-php"
mod_gzip_item_include mime text/*
mod_gzip_item_include mime "httpd/unix-directory"
mod_gzip_item_include file "\.shtml$"
mod_gzip_item_include file "\.htm$"
mod_gzip_item_include file "\.html$"
mod_gzip_item_include file "\.php$"
mod_gzip_item_include file "\.php3$"
mod_gzip_item_include file "\.pl$"
mod_gzip_item_include file "\.cgi$"
mod_gzip_item_exclude file "\.css$"
mod_gzip_item_exclude file "\.js$"
mod_gzip_item_exclude mime "image/.*"
mod_gzip_min_http 1001
</IfModule>
invalid conversion from `size_socket*' to `socklen_t*'
のエラーメッセージがでる場合は,
config.h の
#define SOCKET_SIZE_TYPE int
を
#define SOCKET_SIZE_TYPE size_t
に変更.see INSTALL-SOURCE
2002-08-06-2
CD-ROM サーバ名: cdromserver
クライアント名: client
- CD-ROM サーバ (cdromserver) 側
cdromserver # share -F nfs -o ro /cdrom/cdrom0
o nfs デーモンがあがっている必要がある.
(/etc/init.d/nfs.server start)
- クライアント (client) 側
client % mount cdromserver:/cdrom/cdrom0 /cdrom
- 使用後
client % umount /cdrom
cdromserver # unshare /cdrom/cdrom0
2002-08-06-1
- マウント
% lofiadm -a `pwd`/hoge.iso # ファイルをループバックデバイスに割り当てる
/dev/lofi/1 # 割り当てられたループバックデバイスが表示される
% mkdir disc1
% mount -F hsfs -r /dev/lofi/1 `pwd`/disc1 # 割り当てられたループバックデバイスをマウントする
- アンマウント
% umount `pwd`/disc1 # ループバックデバイスをアンマウントする
% lofiadm -d /dev/lofi/1 # ループバックデバイスの割り当てを解除する