相关文章
Linux设备模型(十) - bus/device/device_driver/class
四,驱动的注册
1,struct device_driver结构体
/**
* struct device_driver - The basic device driver structure
* name: Name of the device driver.
* bus: The bus which the device of this driver belongs to.
* owner: The module own…
建站知识
2024/11/18 20:08:21
js脚本-从蛋糕英语中提取对话字幕
将蛋糕英语中的字幕提取出来,打印后便于复习背诵。 需要使用油猴之类的扩展调用
// UserScript
// name 蛋糕英语自动提取对话
// namespace cake
// match http://pap.baicizhan.com/*
//require http://code.jquery.com/jquery-latest.js
// grant none
// /User…
建站知识
2024/11/18 20:48:30
云计算 2月26号 (进程管理和常用命令)
一、权限扩展 文件权限管理之: 隐藏权限防止root误删除 文件属性添加与查看
[rootlinux-server ~]# touch file1 file2 file3
1.查看文件属性
[rootlinux-server ~]# lsattr file1 file2 file3
---------------- file1
---------------- file2
---------------- f…
建站知识
2024/11/18 20:48:25
STM32(8)NVIC编程
中断源由部分片上外设产生
在misc.h中找,杂项 配置NVIC GPIO和AFIO不能产生中断源,但能通过EXTI,由EXTI产生中断源
NVIC不需要开启时钟,因为NVIC模块位于内核内部,芯片一上电就能工作。 中断响应函数 中断向量表在启…
建站知识
2024/11/22 21:58:31
面试笔记系列六之redis+kafka+zookeeper基础知识点整理及常见面试题
目录 Redis
redis持久化机制:RDB和AOF
Redis 持久化
RDB的优点
RDB的缺点
AOF 优点
AOF 缺点
4.X版本的整合策略
Redis做分布式锁用什么命令?
Redis做分布式锁死锁有哪些情况,如何解决?
Redis如何做分布式锁?…
建站知识
2024/11/18 20:48:16
Zookeeper4:Java客户端、应用场景以及实现、第三方客户端curator工具包
文章目录 Java连接Zookeeper服务端依赖代码使用 应用场景统一命名服务统一配置管理统一集群管理服务器节点动态上下线理解实现模拟服务提供者【客户端代码】-注册服务模拟服务消费者【客户端代码】-获取服务信息进行请求消费 软负载均衡分布式锁理解实现 生产集群安装N台机器合…
建站知识
2024/11/18 20:48:12
【Spring Boot】实现全局异常处理
1.定义基础异常接口类
/*** description: 服务接口类* author: MrVK* date: 2021/4/19 21:39*/
public interface BaseErrorInfoInterface {/*** 错误码* return*/String getResultCode();/*** 错误描述* return*/String getResultMsg();
}
2.定义错误处理枚举类
/*** desc…
建站知识
2024/11/18 20:48:04