另一个网页足球经理游戏

http://trophymanager.com/index.php

2007-03-16 · wuan

解决zsh在mlterm下用screen时homeend键功能异常的问题

FROM: http://lfod.us/dotfiles/zshrc # Make HOME and END work reasonably case $TERM in xterm*) bindkey "^[[F" end-of-line bindkey "^[[H" beginning-of-line ;; esac bindkey '\e[1~' beginning-of-line # Home bindkey '\e[4~' end-of-line # End bindkey '\e[3~' delete-char # Del bindkey '\e[2~' overwrite-mode # Insert bindkey -v

2007-03-16 · wuan

往d-i的cdebconf中添加自定义界面

创建实现cdebconf的plugin接口的程序http://people.openrays.org/~s5unty/#plugin-hello.so: 创建plugin-hello.so的udeb包,并集成到ISO中 输入"install DEBIAN_FRONTEND=n...

2007-03-07 · wuan

ii undefined symbol cairo_xlib_surface_create

第二次遇到这样的错误: [/sun/home]% firefox /usr/lib/firefox/firefox-bin: symbol lookup error: /usr/lib/libgdk-x11-2.0.so.0: undefined symbol: cairo_xlib_surface_create 上次是因为 ld.so.conf 的设置问题,这次是因为我编译 cairo-1.2.4 的问题。我在编译时忘记指定 prefix,它把 libcairo.so 默认安装到 /lib 目录,导致 gtk 程序启动时加载了错误的 libcairo.so 库 解决办法是,重新编译 cairo-1.2.4,同样不要指定 prefix,然后安装,最后再反安装。 1% ./configure [...

2007-03-06 · wuan

video=vesa:option[,options]

FROM: http://lists.debian.org/debian-user-spanish/2003/12/msg00433.html Accepted options: invers no comment… ypan enable display panning using the VESA protected mode interface. The visible screen is just a window of the video memory, console scrolling is done by changing the start of the window. pro: * scrolling (fullscreen) is fast, because there is no need to copy around data. * You’ll get scrollback (the Shift-PgUp thing), the video memory can be used as scrollback buffer kontra: * scrolling only parts of the screen causes some ugly flicker effects (boot logo flickers for example). ywrap Same as ypan, but assumes your gfx board can wrap-around the video memory (i.e. starts reading from top if it reaches the end of video memory). Faster than ypan. redraw scroll by redrawing the affected part of the screen, this is the safe (and slow) default. vgapal Use the standard vga registers for palette changes....

2007-03-06 · wuan