摘要: mawk: scripts/gen-sorted.awk: line 19: syntax error at or near ] line 19 正则表达式错误 [^\] 改为 [\^] That is not suitable. Just install the right package. Above changes may cause other problems. apt-get ... 阅读全文
posted @ 2008-12-06 10:27 雨纷飞 阅读(222) 评论(0) 推荐(0)
摘要: GCC的编译时间很长,可能长达4-5个小时。如果中期强制停止了编译,以后又重新编译,这样可能导致整个编译失败,结果是校验错误,即前面的版本和后面编译的文件时间不同。解决这类问题一种方法是,中间过程不要停止编译。如果编译被强制停止了,那么就重新做所有的工作,包括重新confige,重新生成Makefile。最好呢,废弃原来的文件夹,重新生成编译文件夹,rm -rf gcc-build... 阅读全文
posted @ 2008-12-06 09:33 雨纷飞 阅读(440) 评论(0) 推荐(0)
摘要: 第一遍编译binutils,一下是错误信息。 WARNING: `makeinfo' is missing on your system. You should only need it if you modified a `.texi' or `.texinfo' file, or any other file indirectly affecting th... 阅读全文
posted @ 2008-12-02 21:14 雨纷飞 阅读(1023) 评论(0) 推荐(0)
摘要: 利用fdisk分区工具修改分区时,不小心颠倒了分区的顺序,把sd7变成了sd6,或者其他的。导致系统无法正常引导启动。grub启动时,会显示引导的是(hd0,6),好像linux分区不是这个。在错误提示界面,无法进入任何系统,本机是xp和Ubuntu双系统。以下是在网上搜索的解决方案。 搜索一下,照做,OK. 使用Ubuntu Live CD启动后,打开终端命令行 $sudo grub ... 阅读全文
posted @ 2008-12-02 20:33 雨纷飞 阅读(932) 评论(0) 推荐(0)
摘要: the first tool fdisk. Make a new partition from the exist one with its blank space. Is that possible by fdisk. I must make sure the previous data could not be destroyed. Keep trying. The answer may ... 阅读全文
posted @ 2008-11-29 21:38 雨纷飞 阅读(141) 评论(0) 推荐(0)
摘要: 要安装 MySQL,可以在终端提示符后运行下列命令: sudo apt-get install mysql-server mysql-client 一旦安装完成,MySQL 服务器应该自动启动。您可以在终端提示符后运行以下命令来检查 MySQL 服务器是否正在运行: sudo netstat -tap | grep mysql 当您运行该命令时,您可以看到类似下面的行: tcp 0 0 loc... 阅读全文
posted @ 2008-11-18 10:34 雨纷飞 阅读(1617) 评论(0) 推荐(0)
摘要: 1 安装graphviz sudo apt-get install graphviz 2 编辑dot文件,例如test.dot, 产生图片:dot -Tsvg test.dot -o test.svg 阅读全文
posted @ 2008-11-16 11:15 雨纷飞 阅读(934) 评论(0) 推荐(0)