Mac アドレスの調べ方

|% dmesg | grep “Ethernet address”

2003-10-21 (火) · masutaka

run-at-time()

;;foo() を 2003/10/9 3:12:30 に実行する。 (run-at-time (encode-time 30 12 3 9 10 2003) nil 'foo)

2003-10-09 (木) · masutaka

メールヘッダを出力

% sed -n ‘1,/^$/p’ [ファイル名]

2003-10-08 (水) · masutaka

elisp で書かれた Window Manager

(URL: X Emacs Window Manager )

2003-10-02 (木) · masutaka

Emacs 年表

(URL: A History of Emacs ) (URL: Emacs Timeline ) (URL: Mule/Emacsの歴史 ) 右上の Mule/Emacs の歴史 -> (左上の)Historical drawing

2003-10-02 (木) · masutaka

Linuxによるシステム構築を目指す人のための情報交換フォーラム

URL: http://www.atmarkit.co.jp/flinux/index.html

2003-10-02 (木) · masutaka

ssh-agent を使用して、パスワードを聞かれないようにする。

ローカルとリモートの ~/.ssh は消した。 公開鍵を生成 cygwin % ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key (/home/masutaka/.ssh/id_rsa): # <= Enter(default) Created directory '/home/masutaka/.ssh'. Enter passphrase (empty for no passphrase): # <= パスワードを入力 Enter same passphrase again: # <= もう一度パスワードを入力 Your identification has been saved in /home/masutaka/.ssh/id_rsa. Your public key has been saved in /home/masutaka/.ssh/id_rsa.pub. The key fingerprint is: e2:21:e7:04:ae:ef:09:46:0c:c4:3c:f0:64:6a:10:3e masutaka@PCCHRONO 公開鍵ができたことを確認 cygwin % ls -alF ~/.ssh 合計 2 drwx------+ 2 masutaka なし 0 Sep 23 01:43 ./ drwx------+ 13 masutaka なし 0 Sep 23 01:45 ../ -rw------- 1 masutaka なし 951 Sep 23 01:43 id_rsa -rw------- 1 masutaka なし 227 Sep 23 01:43 id_rsa.pub 接続先に ~/.ssh を作成 linux % (cd && mkdir .ssh && chmod go-rwx .ssh) 接続先に公開鍵を登録 cygwin % cat ~/.ssh/id_rsa.pub | ssh chronicle "cat >> .ssh/authorized_keys2" The authenticity of host 'chronicle (192.168.0.3)' can't be established. RSA key fingerprint is 0c:9d:af:25:c3:84:40:63:b8:80:d0:f8:b3:22:b9:49. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'chronicle,192.168.0.3' (RSA) to the list of known hosts. masutaka@chronicle's password: # <= パスワードを入力 id_rsa.pub 100% 227 5.1KB/s 00:00 パスワードを記憶させるために ssh-agent と呼ばれるデーモンを利用する。 cygwin % eval `ssh-agent` Agent pid 3164 パスワードを記憶させる。 cygwin % ssh-add Enter passphrase for /home/masutaka/.ssh/id_rsa: # <= パスワードを入力 Identity added: /home/masutaka/.ssh/id_rsa (/home/masutaka/.ssh/id_rsa) ssh-agent を終了する。 cygwin % ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 3164 killed; URL: http://www.is.math.sci.ehime-u.ac.jp/~vava/memo/ssh_rsa.html ...

2003-09-23 (火) · masutaka

memtest86

memory checker として定番らしい。ちなみに下の URL は Meadow で有名な himi さんの日記。 URL: http://ko.meadowy.net/~himi/diary/20030902.html

2003-09-13 (土) · masutaka

Emacs Lisp での繰り返しの書き方

繰り返しを書くときは、まず mapcar, find-if などの高階関数で書けるかどう かを検討する。書けなければ dolist, dotimes などを使う。それでも書けなけ れば、while, loop, 再帰を使う。 ...

2003-09-11 (木) · masutaka

list を car しながら loop 処理させる。

(dolist (target '(a b c)) (if (eql 'b target) (return target)))

2003-09-07 (日) · masutaka