kdm_greet[4050]: Can't open default user face

在 kdm 中输入用户名口令后回车,竟然没有登进系统,却再一次回到登录界面。 Ctrl+Alt+F2 切换到其它终端查看/var/log/syslog,发现以下错误信息: kdm_greet[4050]: Internal error: memory corruption detected kdm_greet[4050]: Can't open default user face ~/.xsession-errors 中存在以下错误信息: Xsession: X session started for sun at Fri Se 1 08 :44: 38 AST 2006 open: permission denied 图好玩,我用 w3m 上 google,找到了解决方法: 执行 chmod ug+rwx,o+rwt /tmp 即可...

2007-02-07 · wuan

在fish里用find命令的 exec参数时

find -type f -exec dpkg -c "{}" \; | grep iso 为{}添加一对双引号,以前在 bash 下没有这个习惯

2007-02-07 · wuan

挤公交

南京话歌曲《挤公交》全面赶超喝馄饨! 试听下载地址:http://njyfw.njnet.gov.cn/mp3/King_Of_East/JGJ.mp3 这是 D-Evil 又一次南京话 rap 的尝试,希望大家能够继续支持 这首歌也将收录在 D-Evil 的专辑《King of East》之中 | 挤公交 | | 作词:D-Evil |...

2007-02-07 · wuan

DocBook之Hello World

FROM: http://workaround.org/moin/DocBook xsltproc XSL Transformations Processor docbook-xsl stylesheets for HTML, XHTML, HTML Help and others 首先安装这两个工具 sudo apt-get install xsltproc docbook-xsl 把以下内容存入一个名为test.xml的文件 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://docbook.org/xml/4.2/docbookx.dtd"> <article> <title>My first Docbook document</title> <sect1> <title>The greeting</title> <para> Hello world </para> </sect1> </article> 执行以下命令,并用浏览器打开test.html。 xsltproc -o test.html /usr/share/xml/docbook/stylesheet/nwalsh/xhtml/docbook.xsl test.xml

2007-02-05 · wuan

The friendly interactive shell

今天发现一个不错的 shell: fish。 官方网站:http://fishshell.org/ 相关介绍:http://lwn.net/Articles/136232/ 我一直以来使用的都是 Linux 的标配 shell: bash,今天促使我另寻新欢的原因是, 每当我在 bash 中用[TAB]键的自动提示功能时,总是有这样一个...

2007-02-01 · wuan