p0t: coLinuxおちるaptitude upgradeしようとしたらlibx11-6のところで必ず落ちる。
この問題。
preinst で raptop-detect を実行するところで落ちるので、raptop-detect をダミーに置き換えれば大丈夫だと思います。 以前私もはまりました。Posted by: odz | 2006年09月26日 23:07
odzさんの情報で解決しました。ありがとうございます! libx11-6のpreinstじゃなくてpostinstの方みたいでした。
dev:~% diff /var/lib/dpkg/info/libx11-6.postinst.org /var/lib/dpkg/info/libx11-6.postinst
77,78c77,78
< if [ -n "$(which laptop-detect)" ]; then
< if laptop-detect >/dev/null; then
---
> #if [ -n "$(which laptop-detect)" ]; then
> # if laptop-detect >/dev/null; then
80,81c80,81
< fi
< fi
---
> # fi
> #fi
laptop-detectを適当にコメントアウトしたら行けた!