この日記のはてなブックマーク数 Subscribe with livedoor Reader

2005-12-30 Fri


Nifty の APの電話番号 [その他]


よく忘れるので

0035-055-200




商品相場が強い限りはドルは強い? [投資]


オイルマネー話。
http://www.gaitame.com/imai/index.html



prototype.js [Ajax]


prototype.js の開発者向けメモ
http://www.imgsrc.co.jp/~kuriyama/prototype/prototype.js.html



酒とたばこ [Health]


http://www.geocities.co.jp/WallStreet/1356/kuru/KETUGO/KETU38.html


2005-12-28 Wed


WindowsXPチューニング [Windows]


http://www.mtblue.org/pc/tips/speed_up_xp.php



telnet 制限 [Linux]


/etc/pam.d/login:

account required pam_access.so


で、以下を編集。
/etc/security/access.conf



grep でマッチした箇所に色を付ける方法 [Linux]


http://taka.no32.tk/diary/20051227.html#p04

% export GREP_COLOR="01;34"
% export GREP_OPTIONS="--color=auto"
% echo 'hello world' | grep 'l'
hello world


GNU の grep の機能なのか......


2005-12-21 Wed


logrotate の実行結果 [TIPS][Linux]


$ cat /var/lib/logrotate.status


via http://www.itmedia.co.jp/help/tips/linux/l0469.html



dia で日本語入力 [Linux]


GTK のバージョンによっては、Dia で日本語が kinput + canna で入力できないみたい。

# apt-get install uim-gtk2.0

で解決できるけど、他の操作性に影響が出たり。uim に慣れた方がいいのかなぁ......


2005-12-14 Wed


Lotus Notes が文字化け [Linux]


CrossOver で Notes が動きますが、一部フォントで文字化けが発生します。

notes.ini
+AltNameLanguage=ja
+ContentLanguage=ja
+Region=ja

でもだめだったので、フォントの指定を kochi に変えて対処。これでも万全じゃなかったり。まぁメール読むぐらいなら問題なし。


2005-12-13 Tue


SSL で運用しているとファイルがダウンロードでいない @ IE [Windows][TIPS]


Internet Explorer が SSL 経由によるファイルのダウンロードで "No-Cache" ヘッダーを処理できない
http://support.microsoft.com/?scid=kb;ja;323308&spid=2073&sid=204



sylpheed の添付ファイルの文字化け [Tools][Debian]


システムを EUC-JP で運用しているのに、sylpheed が UTF-8 でファイル名を保存してしまうので、文字化けが発生。

export G_BROKEN_FILENAMES=1


を /etc/bash.bashrc へ追加。


2005-12-11 Sun


Firefox で音がならない [Linux]


Firefox 上で動く Flash で音がならなくなっていたので、

http://www.agusa.nuie.nagoya-u.ac.jp/person/ura/wiki/index.php?DebianMemo

を参考に対処。

# ln -sf /usr/lib/libesd.so.0 /usr/lib/libesd.so.1


2005-12-08 Thu


Trac [Trac]


http://www.edgewall.com/trac/
http://www.i-act.co.jp/project/products/products.html



logrotate [TIPS][Linux]


すくなくても 90日分のログを保存する場合の設定

syslog系

/var/log/debug {
weekly
dateext
rotate 13
maxage 91

compress
create 0640 root root
ifempty
missingok
sharedscripts
postrotate
/bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null || true
endscript
}


2005-12-07 Wed


Debian(sarge)で /etc/init.d/iptables を復活させる。 [Debian]


sarge以降では、

/etc/init.d/iptables


は廃止され

/etc/network/interface



 

auto eth0
iface eth0 inet static
    address 192.0.2.1
    netmask 255.255.255.0
    gateway 192.0.2.254
    pre-up echo 1 > /proc/sys/net/ipv4/ip_forward
    pre-up iptables -t nat -A POSTROUTING -s 10.0.0.0/255.0.0.0 -o eth0 -j MASQUERADE
    # pre-up iptables-restore </etc/iptables.up.rules
    # post-down iptables-restore </etc/iptables.down.rules


こんな感じで、iptables のルールを記述するようになっているんですが、なにかと不便を感じるので、復活させてみました。

# zcat /usr/share/doc/iptables/examples/oldinitdscript.gz > /etc/init.d/iptables
# chmod a+x /etc/init.d/iptables
# update-rc.d iptables defaults
# mkdir /var/lib/iptables


現在のルールを保存するには

# /etc/init.d/iptables save <ルール名>


でOKです。"active" が起動時に default で読み込まれるルール名なので

# /etc/init.d/iptables save active


としておくと

/var/lib/iptables/active


にルールが保存されます。同様に "inactive" というルール名で保存されたルールは

/etc/init.d/iptables stop


を実行した際に反映される設定となります。詳細は /etc/init.d/iptables のコメント欄に書いてあったりします。



Security [Security][Web]


http://www.drk7.jp/MT/archives/000966.html



Perl の use と require の違い [Perl]


http://iandeth.dyndns.org/mt/ian/archives/000592.html


2005-12-05 Mon


ファイルシステム [Linux]


http://www.atmarkit.co.jp/flinux/rensai/fs01/fs01b.html



HotSaNIC の日本語訳 [Linux][管理]


http://www.sra.co.jp/people/kakikubo/hotsanic.html



SUSE8 on zSeries で cpanflute の依存性がおかしい場合の対処 [Linux][IBM]


--- /usr/lib/rpm.orig/find-requires.perl 2002-11-06 02:35:39.000000000 +0900
+++ /usr/lib/rpm/find-requires.perl 2005-09-09 00:13:30.000000000 +0900
@@ -14,11 +14,11 @@
     if [ -x $f ]; then
ldd $f | awk '/=>/ { print $1 }'
     fi
-done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | grep -v '4[um]lib.so' | sort -u
+done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | grep -v 'ld64.so.1' | grep -v '4[um]lib.so'

sort -u

 
 for f in $liblist; do
     ldd $f | awk '/=>/ { print $1 }'
-done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | grep -v '4[um]lib.so' | sort -u
+done | sort -u | sed "s/['\"]/\\\&/g" | xargs -r -n 1 basename | grep -v 'libNoVersion.so' | grep -v 'ld64.so.1' | grep -v '4[um]lib.so'

sort -u

 
 perllist=
 for f in $scriptlist; do


IPv4/IPv6 meter
検索キーワードは複数指定できます
ChangeLogを検索
Google
Web www.kunitake.org
思ったより安い……時もある、Amazon

カテゴリ