01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
prototype.js の開発者向けメモ
http://www.imgsrc.co.jp/~kuriyama/prototype/prototype.js.html
ドメイン認証
http://d.tnh.jp/20051207.html#p04
*うま肉 [Food]:
http://portal.nifty.com/koneta05/12/21/01/
/etc/pam.d/login:
account required pam_access.so
で、以下を編集。
/etc/security/access.conf
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 の機能なのか......
$ cat /var/lib/logrotate.status
via http://www.itmedia.co.jp/help/tips/linux/l0469.html
デスクトップの生産性を上げる10のツール
http://blogs.itmedia.co.jp/koji/2005/12/10_fd94.html?ref=rssall
PAM認証
http://www.stackasterisk.jp/tech/systemManagement/pam01_01.jsp
PAM - Wiki -
http://www.9203.net/pukiwiki/index.php?PAM
http://www.cert.org/tech_tips/intruder_detection_checklist.html
http://www.cert.org/tech_tips/root_compromise.html
ImageMagick の使用例
http://www.ss.iij4u.or.jp/~somali/web/im_example/im_example.html
IBM ServeRAID v8.20b
http://www-307.ibm.com/pc/support/site.wss/MIGR-495PES.html
http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-62279
http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-495PES
http://www-06.ibm.com/jp/servers/eserver/xseries/os/linuxlist.shtml
http://www-06.ibm.com/jp/servers/eserver/xseries/tech/
Internet Explorer が SSL 経由によるファイルのダウンロードで "No-Cache" ヘッダーを処理できない
http://support.microsoft.com/?scid=kb;ja;323308&spid=2073&sid=204
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 のコメント欄に書いてあったりします。
--- /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
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
最終更新時間: 2009-01-03 10:40