2014-10-01から1ヶ月間の記事一覧

mewest で Segmentation fault

user@hoge%~/.emacs.lp/mew/bin/mewest -v Replicating index... Replicating index...done Purging old messages... estcmd: INFO: status: name=/home/user/Mail/casket_replica dnum=1052137 wnum=5258947 fsiz=12922048735 crnum=0 csiz=0 dknum=0 Segme…

Intel 82562V-2を Windows7 以降で使う

DELL Vostro200などで使用されている Intel 82562V-2 をWindows7などのWindows標準ドライバで使用すると、ネットワークに接続出来ず制限ネットワークになるという現象が頻繁に発生する。 正常に使用するには、デバイスマネージャから、ネットワークアダプタ…

http で git リポジトリを公開する

httpで公開するためのgitリポジトリを作成する mkdir hoge.git cd hoge.git git init --bare git update-server-info cd .. chown -R apache:apache hoge httpd.conf にDAVの設定をする alias /hoge.git "/pathto/hoge.git" DAV on AuthType Basic AuthName …

mac port でインストールしたプログラムの自動起動

mac port でインストールしたmysqldなどのプログラムの起動スクリプトは /Library/LaunchDaemons にインストールされる。 自動起動に設定するなら sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql55-server.plist 自動起動を無効にするな…

term/bobcat が効かなくなった

(load "term/bobcat")ではだめで、(when (fboundp 'terminal-init-bobcat) (terminal-init-bobcat))とする必要がある。http://openlab.dino.co.jp/2007/09/25/23251372.html

pkg upgrade 時に size mismatch, がでる

Fetching gettext-0.18.3.1_1.txz: 100% 2 MB 1.1M/s 00:02 pkg: cached package gettext-0.18.3.1_1: size mismatch, fetching from remote Fetching gettext-0.18.3.1_1.txz: 100% 2 MB 1.1M/s 00:02 pkg: cached package gettext-0.18.3.1_1: size mismat…

Apache 2.2 から 2.4へ

アクセス許可の記述が変更された。In this example, all requests are denied.2.2 configuration: Order deny,allow Deny from all2.4 configuration: Require all deniedIn this example, all requests are allowed.2.2 configuration: Order allow,deny Al…

MySQL 5.1 から 5.5 へ

my.cfg でいくつかのオプションが使えなくなった default-character-set = utf8 は character-set-server=utf8 にするhttp://kennyqi.com/archives/334.html skip-locking は skip-external-locking にするhttp://stackoverflow.com/questions/17990252/wamp…