摘要:
https://blog.csdn.net/Wang20122013/article/details/116064435 1 前言 在调试Linux内核的时候经常会用到dmesg命令,常用的用法有: 1. 显示ring buffer内容 dmseg 2. 把ring buffer内容输出到文件 dm 阅读全文
摘要:
via https://www.cnblogs.com/love-DanDan/p/18401136 如何创建和管理自定义systemd服务 创建和管理自定义 systemd 服务是 Linux 系统管理中的一项重要技能。systemd 是一种初始化系统和服务管理器,广泛应用于现代 Linux 发行 阅读全文
摘要:
参考 linux 内核启动Initramfs与initrd 及其挂载 制作initramfs/initrd镜像 bing search linux how to decompress initrd.img file How to Extract initrd/initramfs to View Co 阅读全文
摘要:
参考 https://blog.csdn.net/u012559967/article/details/134768073 win11确认可行 (另外一种修改注册表,暂未确认) 网络适配器中配置 网络适配器中配置的方式适用于能够在网络适配器中找到物理地址(NetworkAddress)的情况。 1、 阅读全文
摘要:
参考 https://xiaoxinblog.xyz/posts/65d46cc7.html F12 open console 键盘输入 允许粘贴 !(function () { "use strict"; document.querySelectorAll("script").forEach(fu 阅读全文
摘要:
windows python默认安装路径 C:\Users\test\AppData\Roaming\Python\Python312 Scripts 这个目录有软件 - pip - importdata.exe - HikyuuTDX.exe site-packages 这个目录有pip下载的包 阅读全文
摘要:
anaconda中自带python, 如果你之前安装了python,那么如何防止冲突,或者指定想要的python 版本呢? windows 方法1 在系统环境变量中, [系统]或者[用户]path设置 对应的路径 默认python安装包路径(默认安装) C:\ProgramData\anaconda 阅读全文
摘要:
包协议 Http,TCP,UDP,这几个, 游戏是tcp 加心跳包,和http多一些 点击capture filter 新增 ip host=47.96.185.162 之前一个个比对,查看服务器地址,如果游戏是杭州的, 那服务器机房在杭州 阿里巴巴,就没错。 https://site.ip138. 阅读全文
摘要:
https://tangqixiang.blog.csdn.net/article/details/131242849 参考书籍:《Memory Systems - Cache, DRAM, Disk》 阅读全文
摘要:
https://maxwell.blog.csdn.net/article/details/136333139#comments_32057350 阅读全文
摘要:
谈为员工创造一个相对公平、平等的工作环境的重要性 https://www.jianshu.com/p/4d2d374d518b 公平、平等的工作环境是每个员工都希望自己所在的单位具备的基本特点之一, 公平、平等的工作环境可以使员工踏实工作, 相信自己付出多少就会有多少回报, 相信自身价值在工作单位能 阅读全文
摘要:
重点都在intel EDS中 EDAC https://www.kernel.org/doc/html/v4.14/driver-api/edac.html x86架构—MCA https://www.codenong.com/cs106476885/ 【x86架构】MCA https://blog 阅读全文
摘要:
各个语言算法库,值得借鉴一下 The Algorithms Open Source resource for learning Data Structures & Algorithms and their implementation in any Programming Language http 阅读全文
摘要:
因为PL 串口驱动,对win10,win11支持不够好。 在网上找了很久,确认win10+win11 可用的串口驱动, (需要删除之前驱动,然后手动导入安装驱动) Prolific PL2303 driver v3.3.2.102 (2008-24-09) Win8_x64_x86.7z 阅读全文
摘要:
https://semiengineering.com/five-key-changes-coming-with-ddr5-dimms/ On July 14th of last year, JEDEC announced the publication of the DDR5 SDRAM stan 阅读全文
摘要:
查看 Linux 发行版名称和版本号的 8 种方法 via https://zhuanlan.zhihu.com/p/36253769 via: https://www.2daygeek.com/check-find-linux-distribution-name-and-version/ 作者:M 阅读全文
摘要:
0. 选用 VMWare 个人免费版player 配置网络 个人免费版player 网络连接 1.配置成=》【桥接模式】 2.勾选【复制网络连接状态】 ps. workstation 自带VMTools,可以拖拽,移动文件。 1. 安装samba 1.更新当前软件。 sudo apt-get upg 阅读全文
摘要:
在生产环境中测试 发现程序无法运行,所以要分析一下 ./mentester: /lib/libtinfo.so6: no uersion information available (required by ,/mentester) ./mentester' /lib/libncursesso.b: 阅读全文
摘要:
//1.回滚到上一次版本 git reset --hard HEAD^ //2. 同步到远程 master,使之 生效 git push -f https://www.runoob.com/git/git-reset.html g 阅读全文
摘要:
第8章 使用通配符过滤 LIKE操作符 百分号(%)通配符 (匹配多个字符, 类似?) SELECT * FROM students WHERE email LIKE '%@163.com'; - 下划线(_)通配符 (匹配单个字符, 类似*) SELECT * FROM students WHER 阅读全文