debian のブートローダを Grub にする
2004-11-18-1 / カテゴリ: [linux][debian] / [permlink]

# apt-get install grub
debconf は特になし。
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)

起動は
# iwconfig wlan0 essid "ESSID" key s:"WEPKEY"
# ifup wlan0

find 時間指定
2004-11-08-1 / カテゴリ: [unix][linux][command] / [permlink]

-ctime -1 ... 1日__以内__のもの
-mtime +4 ... 4日__以降__のもの

telnet で http
2004-11-01-2 / カテゴリ: [unix][linux][network][HTTP] / [permlink]

$ telnet serv 80
GET /path/file.html HTTP/1.0

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 の >)

Terminal 背景透過
2004-10-14-1 / カテゴリ: [linux][アプリ] / [permlink]

rxvt -ip
eterm -O

mutt Maildir 形式
2004-10-13-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

ディレクトリ移動
=.dirname

vi 外部コマンドの結果のはりつけ
2004-10-07-3 / カテゴリ: [linux][vi] / [permlink]

:r !こまんど

vi 外部ファイルはりつけ
2004-10-07-2 / カテゴリ: [linux][vi] / [permlink]

:r ファイル名

mutt ディレクトリ移動
2004-10-06-1 / カテゴリ: [linux][メール][アプリ] / [permlink]

c
のあと、ディレクトリ名
Maildir 形式のサブディレクトリの .dirname の場合は
=.dirname
と、頭に = をつける

screen のステータス行にいろいろ表示してみる
2004-10-01-1 / カテゴリ: [unix][linux][command][screen] / [permlink]

結局
hardstatus alwayslastline "%{= kw}%-w%{= rw}% %t%{= kw}%+w %=%H %c / %l"
になりました。
%H .. ホスト名
%l .. ロード
などなど

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
% 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

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…)
カテゴリ: linux / 前ページ 1 2 3 4 5 6 7 8 9 10 11 12 次ページ

最終更新時間: 2013-05-02 16:12