convert chm books to pdf
chm2pdf –book inputfile outputfile
existing bug: spaces or other special characters could cause fault
HOMEPAGE of chm2pdf is here
山在那里, 路在脚下..
chm2pdf –book inputfile outputfile
existing bug: spaces or other special characters could cause fault
HOMEPAGE of chm2pdf is here
这个问题并不是一直存在的,当我从Hardy转战到Arch的时候,突然发现不能suspend了。与其说不能suspend,更准确的说法是成功suspend之后无法唤醒。log一切正常,但屏幕只有黑色的底和一个不能移动的鼠标。若干次试验之后可以确认是xf86-video-intel引起的,但迟迟没有找到解决办法。
今天似乎人品有点爆发,在网上看无关贴的时候看到了这个和这个。一试发现果然可以。
#!/bin/sh
# Workaround for concurrency bug in xserver-xorg-video-intel 2:2.4.1-1ubuntu10.
# Save this as /etc/pm/sleep.d/00CPU
# chmod 755. “${PM_FUNCTIONS}”
case “$1” in
hibernate|suspend)
for i in /sys/devices/system/cpu/cpu*/online ; do
echo 0 >$i
done
;;
thaw|resume)
sleep 10 # run with one core for 10 secs
for i in /sys/devices/system/cpu/cpu*/online ; do
echo 1 >$i
done
;;
*)
;;
esac
既今天早上发现ibus和firefox-nightly冲突之后,今晚又一次发现其与eclipse冲突…崩溃啊..
泪奔.. 复习功课去了
“/opt/mozilla/firefox-3.1b2/run-mozilla.sh: line 131: 480 Segmentation fault "$prog" ${1+"[email protected]"}”
nightly builds conflict with ibus.. should have XIM_PROGRAM XIM XMODIFIERS GTK_IM_MODULE unset..
thanks to coderoar
while e2fsprogs in Gentoo 2008.0 livecd create ext3 partition with large 256 nodes. Bugs could be found here and explanation here