debmake 宿主机上打包deb教程 安装环境 1sudo apt install dh-make 根据debbian/control安装依赖: 123cd linglong-reposudo apt build-dep . # 使用.报错时,可以将.替换成debian/control中的Source字段cd .. 根据版本号创建符合dh_make规范的-格式 1cp linglong-repo lin 2025-05-23 linux > distro > pkg > deb #Linux #git #linux #HTML #architect
pbuilder教程 pbuilder教程 安装环境 1sudo apt-get install pbuilder debootstrap devscripts dh-make pbuilder配置 以下路径任选其一 12/etc/pbuilderrc/root/.pbuilderrc 将以下内容写入上述配置文件,上述路径任选其一即可,以uos v20 专业版为例: 1234MIRRORSITE=http://poo 2025-05-23 linux > distro > pkg > deb #git #HTML
rpm-ostree compose tree rpm-ostree compose tree 基于Fedora-Workstation-Live-x86_64-28-1.1 rpm-ostree compose tree 用在server上。 https://pagure.io/fedora-atomic/tree/master 1sudo /home/wujing/code/rpm-ostree/rpm-ostree compose tre 2025-05-23 linux > distro > pkg > rpm-ostree #HTML
rpm-ostree # rpm-ostree 官网 https://rpm-ostree.readthedocs.io/en/stable https://coreos.github.io/rpm-ostree/ ## 源码 https://github.com/coreos/rpm-ostree https://lazka.github.io/pgi-docs/OSTree-1.0/mapping.html 2025-05-23 linux > distro > pkg > rpm-ostree #Linux #git #linux #HTML
rpm-ostree安装教程 rpm-ostree安装教程 Rpm-ostree通过autogen.sh自动生成makefile文件,点击下方链接了解autogen.sh。 Linux工具之autogen.sh autotools自动编译系列之三---autogen.sh实例 1. 进入rpm-ostree代码目录下 1cd rpm-ostree 2. 执行脚本autogen.sh 12dnf install autoconf 2025-05-23 linux > distro > pkg > rpm-ostree #Linux #linux #HTML
cgroup v1 和 cgroup v2 的核心区别 cgroup v1 和 cgroup v2 的核心区别 以下是 cgroup v1 和 cgroup v2 的核心区别总结,基于本次聊天记录的讨论内容,从架构设计、功能实现到实际应用进行全面对比: 1. 架构设计 特性 cgroup v1 cgroup v2 层级结构 多棵树:每个控制器(如 CPU、内存)独立挂载,形成多套层级 单一树:所有控制器统一挂载到一棵层级树中 进程 2025-05-21 linux > kernel > container #bpf
README DockerProject 以下教程基于Ubuntu 16.04 LTS. 安装docker # 推荐使用使用国内 daocloud 一键安装命令 curl -sSL https://get.daocloud.io/docker | sh # 使用 Docker 作为非 root 用户,则应考虑使用类似以下方式将用户添加到 docker 组 sudo usermod -aG docker you 2025-05-21 linux > kernel > container > docker #Linux #linux
iptables iptables docker容器启动后添加端口映射_realwujing的博客-CSDN博客 123sudo iptables -t nat -A DOCKER -p tcp --dport 8081 -j DNAT --to-destination 172.17.0.2:8080sudo iptables -t nat -A DOCKER -p tcp --dport 8081 -j 2025-05-21 linux > kernel > container > docker