编程笔记
-
Spring Batch Admin Example
Looking for a Spring Batch Admin UI tutorial? You might be surprised to learn it is no longer supported. But don’t worry as in this post I’ll show you the recommended replacement. And how to set it u…
-
Linux下ping命令参数详细解析
出处:https://www.bbsmax.com/A/KE5QgpVjzL/ -a Audible ping. #Audible ping. -A Adaptive ping. Interpacket interval adapts to round-trip time, so that effectively not more than one (or more, if preload…
-
Linux设备树学习(二)设备树的传递和使用
目录 一、uboot与设备树 二、Linux与设备树 head.S的内容 start_kernel的调用过程如下: 内核如何匹配板子 对设备树信息的处理 节点信息转化为device_node 结构体信息: device_node转换为platform_device 参考:ht…
-
Linux设备树学习 简记
目录 一、结构示例 二、节点 2.1 根节点 2.2 特殊节点 /aliases 子节点 /memory 子节点 /chosen 子节点 (uboot的设备树中使用) /cpus 和 /cpus/cpu* 子节点 2.3 节点属性 compatible model phandle status #address…
-
Linux下卸载nginx的详细步骤,亲测有效
转:Linux下卸载nginx的详细步骤,亲测有效 1.检查nginx服务是否运行,如果正在运行则关闭服务。 ps -ef|grep nginx /usr/local/nginx/sbin/nginx -s stop 2.查找并删除nginx相关文件。 whereis nginx find…
-
Win平台下内置Linux的ssh连接
内置的Ubuntu系统虽然已经有了ssh,但是还需要进行修改。 Port 6622 # 端口改为其他的 ListenAddress 0.0.0.0 # 取消注释 PasswordAuthentication yes # 允许密码登录 然后 service ssh --full-restart 这样就能使…
-
linux 4大IO调度算法
四种调度器: 1、Noop IO scheduler (FIFO算法,电梯梯度算法) 会将请求与上个请求看能否合并处理, 看能否进行排序,如果是前面排序所需要的时间跟当前时间过长,则不进行排序处理 2、CFQ IO scheduler(…
-
JAVA基础-String
字符串存储位置: 字符串地址问题: 字符常用API:
-
KBPC1510-ASEMI大芯片15A整流桥KBPC1510
编辑-Z KBPC1510在KBPC-4封装里采用的4个芯片,其尺寸都是120MIL,是一款单相整流方桥。KBPC1510的浪涌电流Ifsm为300A,漏电流(Ir)为10uA,其工作时耐温度范围为-55~150摄氏度。KBPC1510采用光阻GPP硅芯片材质,里…
-
ABP框架之CRUD简单示例
最近在学习ABP框架,打算通过一个简单的增删改查示例来快速入门,厘清整个框架的层次逻辑。 1. 前期准备 1.1 创建项目 进入这里下载ABP启动模板:选择 Multi Page Web Application创建项目解压下载好的压缩包,使用…