随笔分类 -  application

摘要:Arm GNU Toolchain Downloads Arm GNU Toolchain Downloads https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads 阅读全文
posted @ 2023-10-31 14:38 王阳开 阅读(120) 评论(0) 推荐(0) 编辑
摘要:PTP时间同步 PTP技术介绍 https://www.h3c.com/cn/d_201008/686476_30003_0.htm LinuxPTP没那么简单https://blog.csdn.net/yaojiawan/article/details/124601694 linux ptp时钟同 阅读全文
posted @ 2023-10-26 20:49 王阳开 阅读(50) 评论(0) 推荐(0) 编辑
摘要:终端工具WindTerm设置 安装 https://github.com/kingToolbox/WindTerm/releases 会话->首选项 外观 主题:dige-black 安全: 锁屏超时:302400分钟 标签: 双击:重复标签 终端 右键单击:显示菜单 command histor: 阅读全文
posted @ 2023-10-26 20:32 王阳开 阅读(1191) 评论(0) 推荐(0) 编辑
摘要:SecureCRT 终端工具配置 使用SecureCRT_8.7.2.2214汉化64位 版本; 全局选项 终端 鼠标:复制选中内存;粘贴用中间键; -->>外观 显示水平、垂直滚动条; ANSI颜色: 普通文件白色;可执行文件墨绿色;文件夹显示蓝色;链接文件浅蓝色; >>> 高级:配色方案:whi 阅读全文
posted @ 2023-10-26 20:07 王阳开 阅读(101) 评论(0) 推荐(0) 编辑
摘要:终端工具tabby Tabby官网:https://tabby.sh/ Tabby source地址:https://github.com/Eugeny/tabby Tabby版本发布下载地址:https://github.com/Eugeny/tabby/releases 软件下载地址 https 阅读全文
posted @ 2023-10-17 14:33 王阳开 阅读(218) 评论(0) 推荐(0) 编辑
摘要:# linux应用进程优先级配置 example: ``` #include int set_process_priority(void) { int pri; struct sched_param param; pri = sched_get_priority_min(SCHED_RR); if 阅读全文
posted @ 2023-08-08 10:18 王阳开 阅读(71) 评论(0) 推荐(0) 编辑
摘要:# vmware扩展ubuntu虚拟机磁盘空间 [VMware 扩展Ubuntu虚拟机的磁盘空间](https://blog.csdn.net/xiaopangcame/article/details/124580536?utm_medium=distribute.pc_relevant.none- 阅读全文
posted @ 2023-07-21 20:18 王阳开 阅读(7) 评论(0) 推荐(0) 编辑
摘要:# linux tee linux tee命令可以读取标准输入或者一个输入文件,并将其输出到标准输出或者一个输出文件中,同时还可以把输出内容追加到一个文件中。 tee命令通常与管道符一起使用,用于同时输出结果到屏幕上,以及保存到文件中。 例如,命令"make linux | tee build_li 阅读全文
posted @ 2023-05-24 10:43 王阳开 阅读(130) 评论(0) 推荐(0) 编辑
摘要:ubuntu 18.04 增加新用户 reference: Ubuntu 18.04下用户的创建、修改权限及删除用户的方法 add a bsp user: sudo useradd -m bsp -d /home/bsp -s /bin/bash sudo passwd bsp sudo chmod 阅读全文
posted @ 2023-05-22 17:42 王阳开 阅读(21) 评论(0) 推荐(0) 编辑
摘要:repo example mkdir ~/bin export PATH=~/bin:$PATH curl https://mirrors.tuna.tsinghua.edu.cn/git/git-repo > ~/bin/repo chmod a+x ~/bin/repo export REPO_ 阅读全文
posted @ 2023-05-22 11:12 王阳开 阅读(68) 评论(0) 推荐(0) 编辑
摘要:ubuntu net card dhcp sudo udhcpc -i ens38 1 sudo udhcpc -i ens39 1>/dev/null 2>&1 & 阅读全文
posted @ 2023-03-08 14:20 王阳开 阅读(11) 评论(0) 推荐(0) 编辑
摘要:udev加载内核模块 reference: udev udev简述 udev设备节点创建过程 一文看懂[driver]linux内核动态加载模块【值得收藏】 Linux内核模块自动加载机制 从 systemd-udevd 运行 log 中研究其自动加载内核模块的过程 udev规则以及编写 udev 阅读全文
posted @ 2022-12-29 11:26 王阳开 阅读(252) 评论(0) 推荐(0) 编辑
摘要:gpio模拟串口 /* 8n1 */ int uart_gpio_send_byte(unsigned char byte) { int bit_delay = 1; unsigneed char i; gpio_set_value(io, 0); /* start bit*/ uart_gpio_ 阅读全文
posted @ 2022-11-15 20:38 王阳开 阅读(230) 评论(0) 推荐(0) 编辑
摘要:ARM Cortex-A SOC算力对比 ARM CORE算力 reference: wiki List_of_ARM_processors:https://en.wikipedia.org/wiki/List_of_ARM_processors ARM processors DMIPS/MHz c 阅读全文
posted @ 2022-10-17 15:12 王阳开 阅读(841) 评论(0) 推荐(0) 编辑
摘要:perf https://man7.org/linux/man-pages/man1/perf.1.html wiki:https://perf.wiki.kernel.org/index.php/Main_Page perf Examples:https://www.brendangregg.co 阅读全文
posted @ 2022-10-09 19:59 王阳开 阅读(225) 评论(0) 推荐(0) 编辑
摘要:linux strace reference: man strace https://strace.io/ https://man7.org/linux/man-pages/man1/strace.1.html 揭开 strace 命令捕获系统调用的神秘面纱https://mp.weixin.qq. 阅读全文
posted @ 2022-10-09 15:30 王阳开 阅读(68) 评论(0) 推荐(0) 编辑
摘要:How To determine Linux Kernel Timer Interrupt Frequency https://www.advenage.com/topics/linux-timer-interrupt-frequency 阅读全文
posted @ 2022-09-19 14:52 王阳开 阅读(22) 评论(0) 推荐(0) 编辑
摘要:linux 计算CPU负载 reference: linux/Documentation/filesystems/proc.txt linux下/proc/stat 计算CPU利用率:https://blog.csdn.net/stormbjm/article/details/19088983 li 阅读全文
posted @ 2022-09-13 16:27 王阳开 阅读(85) 评论(0) 推荐(0) 编辑
摘要:linux 启动时间优化 测量到耗时热点 优化; reference: Linux 启动时间优化实战:https://mp.weixin.qq.com/s/PeYpdtFH5u9MTWPkusT-Lw 嵌入式linux启动时间优化:http://www.pedestrian.com.cn/embed 阅读全文
posted @ 2022-09-07 10:09 王阳开 阅读(63) 评论(0) 推荐(0) 编辑
摘要:c语言指定范围内代码设置优化等级 #if defined(__GNUC__) #pragma GCC push_options #pragma GCC optimize ("O0") #endif /* code */ #if defined(__GNUC__) #pragma GCC pop_op 阅读全文
posted @ 2022-09-05 15:41 王阳开 阅读(135) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示