- 博客(18)
- 资源 (8)
- 收藏
- 关注
原创 虚拟机磁盘扩容
https://www.xjx100.cn/news/528878.html?action=onClick解决虚拟机磁盘满了,无法上传文件,给虚拟机扩容问题_虚拟机winimage 映像已满-CSDN博客
2023-12-22 20:25:34 395
原创 lua学习笔记
lua 学习资源lua-users.orglua manualluagit网站chunkspyopenresty nginx_lua_modulelua 空指针lua 中值为nil时,相当于C语言的空指针,还是需要小心谨慎。lua table使用table使用有几个易错点,请看下图:local m = {}m['search'] = 'key'm['result'] = 'value'--print (type(m))print ("the length of table m:
2020-12-20 23:37:58 195
原创 bjam编译管理工具,优于makefile
linux 下编译多工程,要写一个好用的makefile,难度比较大,使用eclipse或者Qt自动生成makefile,软件运行很占内存,在虚拟机上不方便。boost库的bjam编译工具使用了一段时间,感觉搭建和使用都很方便。推荐使用。入门地址:http://www.boost.org/build/tutorial.html源码下载地址:https://sourceforge.net/pro
2017-01-02 02:05:53 3247
原创 迷宫问题-----深度优先回溯算法C++编程练习
没有对程序进行优化,使用最原始的想法进行编程。/*迷宫问题的深度优先回溯法---C++编程练习Author : MichaelDate : 2014-12-31E-mail : 1192065414@qq.com**/#include #include #include #include using namespace std;/* 使用二维数组记录迷宫 */#defi
2014-12-31 22:22:11 1991
原创 linux 日常开发工具 tcpdump、网络文件系统、tftp传输文件等
1 tcpdump 是很好用的抓包工具tcpdump 官方网站 http://www.tcpdump.org/tcpdump -i eth1 dst or src 192.168.120.27 -A -nn -w hello.tcpdump-w 选项保存文件时,底层协议会保存为乱码tcpdump -i eth1 dst or src 192.168.120.2
2014-12-19 01:01:11 999
原创 8皇后-----回溯法C++编程练习
/* * 八皇后问题回溯法编程练习 * 在8×8的棋盘上,放置8个皇后,两个皇后之间不能两两攻击 * 也即,直线,垂直45度、135度方向不能出现两个皇后 * * copyright Michael 2014-12-19 * QQ 1192065414 **/#include #include #include #include using namespace std;
2014-12-19 00:40:05 2027
原创 makefile 编写,编译动态库,编译静态库
1 我CROSS_COMPILE=CC = $(CROSS_COMPILE)gccSTRIP = $(CROSS_COMPILE)stripCFLAG = -Wall -W -Os -g -oLIBS := -L../lib -lfcgi LIBS += -L../lib -ltinyxml LIBS += -L../lib -lOnvif -lpthreadLIBS +=
2014-08-16 19:36:33 3488
原创 交叉编译移植 lighttpd fastcgi 以及自己的fastcgi程序
1 前期准备安装 arm-linux-gcc 编译器可能用到指令vim /etc/profile 在文件末尾添加export PATH="XXXXX:$PATH" xxxxx 代表安装的交叉编译器的可执行文件的路径source /etc/profile //在当前路径下执行 arm-linux-gcc 编译器2 交叉编译 fastcgi
2014-08-16 19:23:03 5420
原创 linux 下使用SSH 连接远程主机 SCP 拷贝远程文件
1 检查ssh 是否安装 rpm -qa | grep ssh //查找当前系统是否安装ssh如出现 openssh-5.1。。。 类似的软件包,说明系统已经安装了ssh2 如果还没有安装ssh软件包,那么先进行安装 yum install ssh3 service sshd start 启动ssh服务
2014-08-16 16:37:32 1300
转载 win7 开启wifi,设置共享文件夹
win7 开启wifi参考网址 设置共享文件夹 百度参考网址:http://jingyan.baidu.com/article/d45ad148f06fef69552b80e6.html
2014-02-01 21:37:13 1108
UUID C代码实现
2014-08-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人