[置顶] linux开发中常用的命令及技巧(连载)

摘要: 1.在内核或uboot目录下搜索相关内容/文件名时:grep "USB" * -nR find -name "*USB*" 2.查看系统中设备 cat /proc/devices 3.查看系统时间(RTC) date /* 显示系统时间 */ date 123015402011.30 /* 设置系统 阅读全文

posted @ 2019-06-26 13:29 lh03061238 阅读(306) 评论(0) 推荐(0) 编辑

[置顶] 使用CCS调试基于AM335X的SPL、Uboot(原创)

摘要: 使用CCS调试基于AM335X的SPL、Uboot 一、开发环境 1、硬件平台:创龙AM3359核心板 2、SDK版本:ti-processor-sdk-linux-am335x-evm-03.00.00.04-Linux-x86-Install 3、Uboot版本:u-boot-2016.05-g 阅读全文

posted @ 2019-01-24 16:40 lh03061238 阅读(1959) 评论(0) 推荐(1) 编辑

2024年11月2日

创建一个新的空分支,初始化后提交远程仓库

摘要: 参考:https://worktile.com/kb/ask/249002.html ××××××××××××××××××××××××××××××××××××××××××× 阅读全文

posted @ 2024-11-02 10:59 lh03061238 阅读(5) 评论(0) 推荐(0) 编辑

2024年10月24日

Linux 内核的代码仓库介绍

摘要: 参考:https://blog.csdn.net/weixin_29164081/article/details/113414251 阅读全文

posted @ 2024-10-24 14:31 lh03061238 阅读(5) 评论(0) 推荐(0) 编辑

2024年10月23日

内核printk函数格式化输出类型

摘要: 参考: https://docs.kernel.org/translations/zh_CN/core-api/printk-formats.html printk支持多种格式化输出,例如%p用于打印指针地址,但打印出的地址是哈希过的。以避免安全问题。‌ 打印出的地址是为了防止泄露内核内存布局信息, 阅读全文

posted @ 2024-10-23 09:46 lh03061238 阅读(21) 评论(0) 推荐(0) 编辑

2024年10月14日

修改fedora/centos grub entry

摘要: https://www.cnblogs.com/banshanjushi/p/18334490 https://cn.linux-console.net/?p=20735 阅读全文

posted @ 2024-10-14 11:43 lh03061238 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月12日

Linux更换内核grub.cfg没有对应版本menuentry选项的解决办法

摘要: 参考: https://cloud.tencent.com/developer/article/2450620 想指定默认从新内核启动,但是某些发行版的/boot/grub2/grub.cfg里面,没有找到各个内核的menuentry选项。这该怎么办呢? 方法就是,修改/etc/default/gr 阅读全文

posted @ 2024-10-12 19:20 lh03061238 阅读(20) 评论(0) 推荐(0) 编辑

2024年9月30日

git am 提示 trailing whitespace的处理方法

摘要: 参考: https://blog.csdn.net/haoyujie/article/details/100014149 阅读全文

posted @ 2024-09-30 09:03 lh03061238 阅读(3) 评论(0) 推荐(0) 编辑

2024年9月29日

编译的时候出现 usr/bin/ld: cannot find -lxxx 的问题

摘要: 参考: https://www.cnblogs.com/yongy1030/p/10367070.html https://stackoverflow.com/questions/28185740/link-error-cannot-find-lpath-to-library 阅读全文

posted @ 2024-09-29 11:31 lh03061238 阅读(3) 评论(0) 推荐(0) 编辑

2024年9月27日

GN环境搭建

摘要: 参考:https://blog.csdn.net/weixin_43288065/article/details/128037209 阅读全文

posted @ 2024-09-27 15:51 lh03061238 阅读(5) 评论(0) 推荐(0) 编辑

2024年9月23日

浮点数的2进制表示

摘要: 参考: https://blog.csdn.net/fwb330198372/article/details/70238982?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2~defaul 阅读全文

posted @ 2024-09-23 15:00 lh03061238 阅读(5) 评论(0) 推荐(0) 编辑

2024年9月13日

ssh限制登录IP方法

摘要: 方法一:在/etc/hosts.allow中添加允许ssh登陆的ip或者网段 sshd:192.168.1.2:allow 或 sshd:192.168.1.0/24:allow (允许的IP段) 在/etc/hosts.deny添加不允许ssh登陆的IP sshd:ALL 方法二: 使用iptab 阅读全文

posted @ 2024-09-13 17:44 lh03061238 阅读(212) 评论(0) 推荐(0) 编辑

导航