linux
文章平均质量分 53
Deven_Huang
这个作者很懒,什么都没留下…
展开
-
linux应用程序内存跟踪
linux 内存评估,内存泄漏定位原创 2021-12-28 16:55:27 · 752 阅读 · 0 评论 -
debian 软件源更改 软件包安装
一. 更换源源文件 /etc/apt/sources.list其中 sources.list.d中的文件为某个特定软件的软件源,如vsode内容如下:#deb-src http://deb.debian.org/debian buster main contrib non-freedeb http://deb.debian.org/debian buster-updates main contrib non-free#deb-src http://deb.debian.org/d原创 2021-07-15 20:46:15 · 1712 阅读 · 0 评论 -
Linux 开机自启
开机自动登录账号测试平台: Ubuntu20.04修改 /etc/systemd/system/getty.target.wants/serial-getty@ttyS0.service为 ExecStart=-/sbin/agetty --autologin d --keep-baud 115200,38400,9600 %I $TERM// d为用户名,可改为root,经测试效果一样开机自动开启服务2.1 在/etc/rc.local 中添加脚本2.2 通过systenct.原创 2021-07-05 10:16:55 · 434 阅读 · 0 评论 -
nginx/apache2 cgi 配置
安装组件sudo apt-get -y install nginxsudo apt-get install spawn-fcgisudo apt-get install libfcgi-dev 头文件需要创建文件夹mkdir /usr/share/nginx/cgi-bin // 创建文件 cp demo/usr/share/nginx/cgi-bin // 拷贝启动进程spawn-fcgi -a 127.0.0.1 -p 8088 -C 5 -f /usr/local/..原创 2021-04-21 15:22:21 · 223 阅读 · 0 评论 -
llinux 开发环境环境配置
ubuntu 环境搭建原创 2020-03-22 18:00:37 · 541 阅读 · 1 评论 -
gdb 调试笔记
1.编辑gcc -g test.c -o test2.命令2.1 启动gdb: gdb 程序名2.2查看程序:l (list) 默认10行 按回车向下翻2.2运行 r (run) 运行程序直到遇到 结束或者遇到断点等待下一个命令2.3添加断点 b break;break 函数名 停在函数的入口处break 行号break 文件名:函数名...原创 2020-03-18 11:43:48 · 344 阅读 · 0 评论