摘要: 1、下载linux-5.15.2源码 2、生成默认x86_64配置 make x86_64_defconfig 3、make menuconfig 进入配置界面 选择 *Initial RAM filesystem and RAM disk(initramfs/initrd) support 4、编 阅读全文
posted @ 2025-05-07 20:24 UNkey 阅读(186) 评论(0) 推荐(0)
摘要: 一、安装相关依赖项(Linux内核和QEMU都包括) sudo apt install libssl-dev flex bison python3-dev pip ncurses-devel libglib2.0-dev libfdt-dev ninja-build zlib1g-dev libpi 阅读全文
posted @ 2024-12-30 13:14 UNkey 阅读(535) 评论(0) 推荐(0)
摘要: 网上看到一篇关于内核编译的帖子,保留一下 https://blog.csdn.net/qq_43495002/article/details/132070065 阅读全文
posted @ 2024-12-24 18:18 UNkey 阅读(13) 评论(0) 推荐(0)
摘要: 安装好后nodejs和npm,准备进行express安装,命令如下; npm install express 结果报错,需要更换源(切换淘宝的源)。 npm config set registry https://registry.npmmirror.com 阅读全文
posted @ 2024-09-25 12:37 UNkey 阅读(12) 评论(0) 推荐(0)
摘要: 1、同相放大电路 阅读全文
posted @ 2024-07-25 19:33 UNkey 阅读(18) 评论(0) 推荐(0)
摘要: 一、近期研究Linux系统编程手册一书(The Linux Programming Interface),把随书源码下载下来进行编译,出现两个错误。 1、fatal error: sys/capability.h: No such file or directory 解决方法: sudo apt-g 阅读全文
posted @ 2024-07-05 21:16 UNkey 阅读(102) 评论(0) 推荐(0)
摘要: 1,srs(全称simple-rtmp-server)服务器的编译 2,拉取srs源码 git https://github.com/winlinvip/simple-rtmp-server 3,配置安装路径,并执行编译 cd trunk ./configure --prefix=/usr/loca 阅读全文
posted @ 2024-06-08 21:23 UNkey 阅读(113) 评论(0) 推荐(0)
摘要: 一、操作系统版本Ubuntu14.04 二、samba版本 version 4.3.11-Ubuntu 三、samba配置文件位置 /etc/samba/smb.conf 四、建立共享文件操作。在某个目录中,新建一个文件夹,并将此文件夹共享出去。 以 /tmp下的myshare为例。 mkdir m 阅读全文
posted @ 2024-05-13 20:35 UNkey 阅读(653) 评论(0) 推荐(0)
摘要: 算法可视化学习网站https://algorithm-visualizer.org/ https://www.cs.usfca.edu/~galles/visualization/Algorithms.htmlhttps://www.visualgo.net在线汇编(编译)网站https://god 阅读全文
posted @ 2024-05-06 21:45 UNkey 阅读(103) 评论(0) 推荐(0)
摘要: 使用debugfs命令需要root权限 mount -t debugfs none /sys/kernel/debug #挂载命令,需要先挂载才能使用 debugfs #命令行输入debugfs,回车 open -w /dev/sda8 #打开文件系统(filesysytem) -w代表(读)写打开 阅读全文
posted @ 2024-05-03 23:14 UNkey 阅读(826) 评论(0) 推荐(0)