上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: 实现一个简单的Web服务器myhttpd,当浏览器向服务器请求文件时,服务器就从服务目录(例如/var/www)中找出相应的文件,加上HTTP协议头一起发给浏览器。服务器不发送完整的HTTP协议头。 一、基本HTTP协议 打开浏览器,输入服务器IP,例如 http://127.0.1.1 ,如果端口 阅读全文
posted @ 2019-06-17 16:29 心田居士 阅读(512) 评论(0) 推荐(0) 编辑
摘要: https://www.linuxidc.com/Linux/2015-11/125477.htm 到“sudo apt-get install libapache2-mod-php5”出现1错误。 阅读全文
posted @ 2019-06-17 15:05 心田居士 阅读(856) 评论(0) 推荐(0) 编辑
摘要: 1.命令格式: ln [参数][源文件或目录][目标文件或目录] 软链接只会在你选定的位置上生成一个文件的镜像,不会占用磁盘空间。 2.命令功能: Linux文件系统中,有所谓的链接(link),我们可以将其视为档案的别名,而链接又可分为两种 : 硬链接(hard link)与软链接(symboli 阅读全文
posted @ 2019-06-17 10:24 心田居士 阅读(5035) 评论(0) 推荐(0) 编辑
摘要: 动态库包含哪些函数:关于动态库的动态的(-D, --dynamic Display dynamic symbols instead of normal symbols)需要探讨。 (软链什么意思) 可执行文件需要哪些动态库: 阅读全文
posted @ 2019-06-17 09:40 心田居士 阅读(505) 评论(0) 推荐(0) 编辑
摘要: lzb@lzb:~/projects/curl-master$ sudo apt-get update 命中:1 http://mirrors.aliyun.com/ubuntu xenial InRelease 命中:2 http://mirrors.aliyun.com/ubuntu xenial-updates InRelease 命中:3 http://mi... 阅读全文
posted @ 2019-06-16 20:16 心田居士 阅读(8399) 评论(0) 推荐(0) 编辑
摘要: g++使用 1. 编译过程 预处理(-E) 编译(-S) 汇编(-c) 链接 1.1 预处理(-E) 为了直观的了解预处理,理解预处理做了哪些工作,不说那么多,直接上代码,创建main.h与main.cpp文件,有头文件引用,有宏定义,有注释,还有未定义参数赋值的错误。代码如下: 预处理: main 阅读全文
posted @ 2019-06-16 16:08 心田居士 阅读(657) 评论(0) 推荐(0) 编辑
摘要: man.c如上: test.c 如上: 将test.c与main.c转换为目标文件test.o,main.o: 将两者链接成可执行文件: 将test.o打包为动态库文件libtest.so: 将test.o打包为静态库文件libtest.a: 编译链接动态库(gcc是默认链接动态库): -L.表示动 阅读全文
posted @ 2019-06-16 15:16 心田居士 阅读(9539) 评论(0) 推荐(1) 编辑
摘要: 最近在Linux下编程发现一个诡异的现象,就是在链接一个静态库的时候总是报错,类似下面这样的错误: (.text+0x13): undefined reference to `func' 关于undefined reference这样的问题,大家其实经常会遇到,在此,我以详细地示例给出常见错误的各种 阅读全文
posted @ 2019-06-16 14:27 心田居士 阅读(2362) 评论(0) 推荐(0) 编辑
摘要: http://www.cppblog.com/wolf/articles/74928.html http://www.cppblog.com/wolf/articles/77828.html http://www.jb51.net/article/34990.htm C和C++之间库的互相调用 ex 阅读全文
posted @ 2019-06-16 13:05 心田居士 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: http://www.cppblog.com/wolf/articles/74928.html http://www.cppblog.com/wolf/articles/77828.html http://www.jb51.net/article/34990.htm 1.概念和区别: 静态库就是在编 阅读全文
posted @ 2019-06-16 12:16 心田居士 阅读(1754) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页