debian のブートローダを Grub にする
2004-11-18-1 / カテゴリ: [linux][debian] / [permlink]
# apt-get install grubdebconf は特になし。
HDDのパーティションや MBR に実際に Grub をインストールする
# grub-install /dev/hda6設定ファイルのテンプレート作成
# update-grub Could not find /boot/grub/menu.lst file. Would you like /boot/grub/menu.lst generated for you? (y/N) y自動で追加されなかった項目を手動で追記(マルチブートの OS とか)
### END DEBIAN AUTOMAGIC KERNELS LIST title Windows XP root (hd0,0) makeactive chainloader +1カーネル再構築時の自動 LILO 実行をやめるため、次のファイルを作成
# cat /etc/kernel-img.conf postinst_hook = /sbin/update-grub postrm_hook = /sbin/update-grub do_bootloader = no
linux で無線LAN
2004-11-17-1 / カテゴリ: [linux][network] / [permlink]
http://www.le.chiba-u.ac.jp/~aoyama/linux/cf-t2/
http://terasu.cntl.kyutech.ac.jp/~futikawa/linux/memo_wlan.html
必要なものは Windows 用ドライバ
ndiswrapper (debにある?)
wireless-tools (deb)
起動は
http://terasu.cntl.kyutech.ac.jp/~futikawa/linux/memo_wlan.html
必要なものは Windows 用ドライバ
ndiswrapper (debにある?)
wireless-tools (deb)
起動は
# iwconfig wlan0 essid "ESSID" key s:"WEPKEY" # ifup wlan0
csh/tcsh ^D ログアウト制御
2004-10-19-1 / カテゴリ: [unix][linux][shell] / [permlink]
% set ignoreeof ^D でログアウトできなくする % unset ignoreeof ^D でログアウトできるようにする
Apache basic認証 htpasswd パスワードの中身
2004-10-15-2 / カテゴリ: [linux][Apache] / [permlink]
print crypt(shift, join("", ('.', '/', 'a'..'z', 'A'..'Z', 0..9)[rand 64, rand 64]) ), "\n";まぁ、こんな感じで。
Apache htaccess basic認証
2004-10-15-1 / カテゴリ: [linux][Apache] / [permlink]
AuthUserFile /path/to/.htpasswd AuthGroupFile /dev/null AuthName "-.-" AuthType Basic #require valid-user # 全ユーザ require user zaki # 特定ユーザのみ
mutt キーバインド(リスト表示時)
2004-10-14-2 / カテゴリ: [linux][メール][アプリ] / [permlink]
= 先頭へ (mew の <)
* 末尾へ (mew の >)
mutt ディレクトリ移動
2004-10-06-1 / カテゴリ: [linux][メール][アプリ] / [permlink]
cのあと、ディレクトリ名
Maildir 形式のサブディレクトリの .dirname の場合は
=.dirnameと、頭に = をつける
fetchmail で MTA にメールを渡さずそのままファイルへ落とす
2004-09-09-1 / カテゴリ: [linux][メール][command] / [permlink]
mda "/usr/bin/procmail"で、そのまま procmail へ処理を渡して、そっちで記述する
maildirmake Sent ディレクトリ
2004-08-31-1 / カテゴリ: [linux][command] / [permlink]
http://sanguine.jp/pipermail/squirrelmail-users/2003-November/001038.html
$ maildirmake -f Trash ~/Maildir $ maildirmake -f Sent ~/Maildir $ maildirmake -f Draft ~/Maildir
既存の tar に書庫追加
2004-08-06-2 / カテゴリ: [linux][command] / [permlink]
r
また、すでにあるファイルも、同ファイル名で追加されるので注意
2011-01-23 tarについて追記、オプションのみの記載からコマンド例に修正。
% tar rf foobar.tar appendfile.txt追加できるのは非圧縮(生のtarファイル)。
また、すでにあるファイルも、同ファイル名で追加されるので注意
2011-01-23 tarについて追記、オプションのみの記載からコマンド例に修正。
Referrer (Inside):
[2011-01-23-1]
スペースの文字コード
2004-08-06-1 / カテゴリ: [linux] / [permlink]
半角SPC '\x20';
全角SPC '(?:\xA1\xA1)'; # EUC-JP
全角SPC '(?:\x81\x40)'; # SJIS
全角SPC '(?:\xA1\xA1)'; # EUC-JP
全角SPC '(?:\x81\x40)'; # SJIS
diff でインデントを無視して比較
2004-08-05-1 / カテゴリ: [linux][command] / [permlink]
$ diff -w file1 file2非 GNU も OK
tar で絶対パスでアーカイブ作成
2004-08-02-1 / カテゴリ: [linux][command] / [permlink]
$ tar cPf file.tar directory(SolarisでもOK…)
最終更新時間: 2013-05-02 16:12