
linux
NULL_1969
公众号:MCUdebuger,wx:jack_yi_null;b站:计算机考古工程厮
展开
-
Makefile 学习
赋值方法immediate = deferred //延时变量,真正使用时,这个变量的值才确定immediate ?= deferred //延时变量,真正使用时,这个变量的值才确定,用来定义第一次出现的延时变量immediate := immediate //立即变量,定义时值就确定了immediate += deferred or immediate //前面使用了:=定义...原创 2021-05-27 15:37:21 · 109 阅读 · 0 评论 -
Linux 学习
GDB基本命令break命令 b 9 //在第9行设置断点 continue连续运行 c //连续运行,到达断点会停下来 info查明命令 info breakpoints //显示所有断点 disable 命令 disable breakpoints 3 //禁用3号断点 ...原创 2021-05-27 15:36:56 · 112 阅读 · 0 评论 -
ftp 配置文件
ftp配置文件# Example config file /etc/vsftpd.conf## The default compiled in settings are fairly paranoid. This sample file# loosens things up a bit, to make the ftp daemon more usable.# Please see v...原创 2018-02-26 11:29:32 · 493 阅读 · 0 评论