发布时间:2014-10-31 19:46:53
去除Apache默认页面 以及 日志报错 /var/log/httpd/error_logApache log:后来在log中找到如下一行Directory index forbidden by Options directive: /var/www/html/google一下,采用了一个高人得建议,删除以下两个页面rm -f /etc/httpd/conf.d/welcome.conf ← 删除测试页rm -f /var/www/error/noindex.html.........【阅读全文】
发布时间:2014-10-23 16:11:32
[linux_day01]#cc -static hello.c /usr/bin/ld: cannot find -lccollect2: ld 返回 1主要原因是,在安装Linux时,如果不选择开发环境,会默认安装需要的动态库,但不会安装静态库。如果我们在静态连接程序时,会找不到libc.a这个基础静态库文件。这时我们安装相应的库文件就可以了:[linux_day01]#yum ins.........【阅读全文】
发布时间:2014-10-23 15:37:21
今天在cygwin下面使用gcc编译的时候,用了命令,而非makefile。命令如下:gcc -o myapp -c hello.c结果使用 ./myapp 运行时,提示:“cannot execute binary file” 。开始我百思不得其解,通过ls查看文件权限,将其mode 改成 0777。再次执行./myapp,依旧提示 “cannot execute binary file” 。于是baidu,.........【阅读全文】
发布时间:2014-07-17 15:27:00
g++: Internal error: Killed (program cc1plus)这个不是g++的错误,而是内存不够内存加大,或 启用swap文件......【阅读全文】