上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 38 下一页
  2013年6月28日
摘要: 安装的时候最小话安装的,想用setup配置网络的时候发现,提示-bash:setup: command not found解决办法:从光盘上拷贝setuptool包,然后安装。 阅读全文
posted @ 2013-06-28 10:21 语辰 阅读(299) 评论(0) 推荐(0) 编辑
  2013年6月27日
摘要: http://freeze.blog.51cto.com/1846439/386828http://blog.csdn.net/ludi7125/article/details/7873726 阅读全文
posted @ 2013-06-27 17:58 语辰 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 安装mysql时 make 时 提示 redeclaration of C++ built-in type ‘bool’ 错误由于gcc-c++是在./configure后进行编译的重新./configure ,在make && make install 阅读全文
posted @ 2013-06-27 17:02 语辰 阅读(716) 评论(0) 推荐(0) 编辑
摘要: yum -y install gcc-c++ 阅读全文
posted @ 2013-06-27 16:56 语辰 阅读(349) 评论(0) 推荐(0) 编辑
摘要: ./configure 后显示checking for gcc... nochecking for cc... nochecking for cl.exe... noconfigure.sh:error:no acceptable C compiler found in $PATHSee 'config.log' for more details.解决办法:yum -y install gcc 阅读全文
posted @ 2013-06-27 16:54 语辰 阅读(7896) 评论(0) 推荐(0) 编辑
摘要: ./configure后,:checking for termcap functions library... configure: error: No curses/termcap library found原因:缺少ncurses安装包解决办法:yum -y install ncurses-devel 阅读全文
posted @ 2013-06-27 16:53 语辰 阅读(236) 评论(0) 推荐(0) 编辑
  2013年6月26日
摘要: >>> import os>>> for a in ('c','b'):... os.path.join('m',a)...'m/c''m/b' 阅读全文
posted @ 2013-06-26 10:43 语辰 阅读(132) 评论(0) 推荐(0) 编辑
摘要: >>> help(shutil.rmtree)Help on function rmtree in module shutil:rmtree(path, ignore_errors=False, onerror=None) Recursively delete a directory tree. If ignore_errors is set, errors are ignored; otherwise, if onerror is set, it is called to handle the error with arguments (func, path, exc_in 阅读全文
posted @ 2013-06-26 09:57 语辰 阅读(1228) 评论(0) 推荐(0) 编辑
  2013年6月25日
摘要: >>> a={1:'a',2:'b'}>>> print a.get(1)a>>> print a.get(3)None 阅读全文
posted @ 2013-06-25 11:30 语辰 阅读(1223) 评论(0) 推荐(0) 编辑
摘要: request="$(perl -MURI::Escape -e 'print uri_escape($ARGV[0]);' "$request")" 阅读全文
posted @ 2013-06-25 10:36 语辰 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 38 下一页