「既定の電子メールプログラム」に設定
スタート→ 「プログラムのアクセスと既定の設定」
カスタム
「既定の電子メール」プログラム
既存をThunderbirdにしているのに別のメーラーが起動するときなど。
2009年3月14日土曜日
既定の電子メールプログラム設定
2009年3月10日火曜日
microSDカード lock 干渉
KingStonのmicroSDカードのADAPTERカード
SDスロット(の内部で)干渉し、スロットに差し込むと
スイッチがUnlock→lockになる。常に書き込み禁止。書き込めない。
→
Lockスイッチをヤスリで削る。
2009年2月27日金曜日
ファイヤウォール 無効 停止
$ /etc/rc.d/init.d/iptables stop
$ chkconfig iptables off
$ chkconfig --list iptables
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
設定を表示
NAT
/sbin/iptables -t nat -L -n -v
Filter
/sbin/iptables -t filter -L -n -v
2009年2月26日木曜日
bash スクリプト debug
bash スクリプト debug デバッグ
スクリプトの文法をチェックする。
#!/bin/bash -n
スクリプトの実行コマンドを表示させる。
#!/bin/bash -v
こっちの方がいい
set -x : Display commands and their arguments as they are executed.
set -v : Display shell input lines as they are read.
http://www.cyberciti.biz/tips/debugging-shell-script.html
変数を表示する
$ array=('Take it' easy)
$ declare -p array
declare -a array='([0]="Take it" [1]="easy")'
$
#!/bin/bash
# Display commands and their arguments as they are executed.
set -x
# Display shell input lines as they are read.
#set -v
ls $HOME/*gz
set +x
#set +v
ls $HOME/*gz
exit 0
スクリプトの文法をチェックする。
#!/bin/bash -n
スクリプトの実行コマンドを表示させる。
#!/bin/bash -v
こっちの方がいい
set -x : Display commands and their arguments as they are executed.
set -v : Display shell input lines as they are read.
http://www.cyberciti.biz/tips/debugging-shell-script.html
変数を表示する
$ array=('Take it' easy)
$ declare -p array
declare -a array='([0]="Take it" [1]="easy")'
$
#!/bin/bash
# Display commands and their arguments as they are executed.
set -x
# Display shell input lines as they are read.
#set -v
ls $HOME/*gz
set +x
#set +v
ls $HOME/*gz
exit 0
2009年2月3日火曜日
2009年2月2日月曜日
2009年1月19日月曜日
登録:
投稿 (Atom)