2024年4月13日

摘要: CMD Commands for Control Panel Applets Applet Command OS Version Accessibility Options control access.cpl XP Action Center control /name Microsoft.Act 阅读全文
posted @ 2024-04-13 23:04 dingyun 阅读(32) 评论(0) 推荐(0)

2023年10月25日

摘要: 1、选择Options->File Type Options 2.勾选Highlight references to selected symbol 阅读全文
posted @ 2023-10-25 10:09 dingyun 阅读(1445) 评论(0) 推荐(0)

2023年9月29日

摘要: find命令使用通配符: find ./ -name "m*" 查找当前目录下以m开头的文件 查找5分钟以内访问过的的文件 sudo find ./ -amin -5 -exec : {} : 表示find命令查找的结果 \; : 表示结束 find . -type f -name "*.txt" 阅读全文
posted @ 2023-09-29 20:11 dingyun 阅读(27) 评论(0) 推荐(0)

2023年7月21日

摘要: OpenWrt是一个比较完善的嵌入式Linux开发平台,在无线路由器应用上已有100多个软件包。人们可以在其基础上增加软件包,以扩大其应用范围。OpenWrt在增加软件方面使用极其方便,按照OpenWrt的约定就可以很简单完成。 加入的软件包可以是网上可下载的开源软件或自行开发的软件。為加入软件包需 阅读全文
posted @ 2023-07-21 20:57 dingyun 阅读(554) 评论(0) 推荐(0)

2023年5月22日

摘要: -Os Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. -Os disables the following optimization flags: -fal 阅读全文
posted @ 2023-05-22 11:48 dingyun 阅读(19) 评论(0) 推荐(0)

2023年4月24日

摘要: NAME nproc - print the number of processing units availableSYNOPSIS nproc [OPTION]...DESCRIPTION Print the number of processing units available to the 阅读全文
posted @ 2023-04-24 11:34 dingyun 阅读(35) 评论(0) 推荐(0)

2023年4月21日

摘要: In the old days, "/opt" was used by UNIX vendors like AT&T, Sun, DEC and 3rd-party vendors to hold "Option" packages; i.e. packages that you might hav 阅读全文
posted @ 2023-04-21 13:57 dingyun 阅读(17) 评论(0) 推荐(0)

2022年7月24日

摘要: 注意将debugger下拉框改成jlink。 1 << n 左移指令 操作后1在bit n上,从零开始计。 << >> 可以看作在原数右端多出或减少的位数。 阅读全文
posted @ 2022-07-24 17:43 dingyun 阅读(24) 评论(0) 推荐(0)

2022年5月25日

摘要: https://phoenixnap.com/kb/ssh-permission-denied-publickey 在/etc/ssh/sshd_config中确认有以下设置 PasswordAuthentication yes. ChallengeResponseAuthentication no 阅读全文
posted @ 2022-05-25 20:17 dingyun 阅读(17) 评论(0) 推荐(0)

2022年3月7日

摘要: #include <stdio.h> int main(){ char ray_tx_pwr[2][3]={{1,2,3},{4,5,6}}; int i = 0; printf("r %d",ray_tx_pwr[0]); return 0;} #include <stdio.h>#define 阅读全文
posted @ 2022-03-07 09:15 dingyun 阅读(80) 评论(0) 推荐(0)

导航