linux manpage summary

分享
bakamake: https://manpages.debian.org/jessie/bash/bash-builtins.7.en.html https://manpages.debian.org/testing/coreutils/index.html https://manpages.debian.org/testing/util-linux/ 感觉基础的快覆盖全了
https://dyn.manpages.debian.org/testing/binutils/index.html
https://dyn.manpages.debian.org/testing/cmake/cmake.1.en.html

嵌入式
https://github.com/stlink-org/stlink
https://openocd.org/doc/pdf/openocd.pdf
https://manpages.debian.org/testing/usbutils/index.html
https://dyn.manpages.debian.org/testing/bluez/index.html
https://openocd.org/doc/html/index.html

manpage 维护者因为经济问题停更

奇客Solidot | Linux Man pages 维护者因经济压力暂停工作
Solidot是至顶网的科技资讯网站,主要面对开源自由软件和关心科技资讯读者群,包括众多中国开源软件的开发者,爱好者和布道者。口号是“奇客的知识,重要的东西”。

阅读更多

Ubuntu KVM-QEMU-libvirt HEW

本文记录在Ubuntu系统中配置虚拟化环境的完整过程,包括libvirt、KVM、QEMU等核心组件的安装与验证。 一、方案 虚拟化方案:KVM + QEMU + libvirt 二、安装虚拟化组件 2.1 安装基础虚拟化工具 sudo apt update sudo apt install qemu qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils 2.2 验证KVM支持 egrep -c '(vmx|svm)' /proc/cpuinfo 输出大于0表示CPU支持硬件虚拟化。 2.3 启动libvirt服务 sudo systemctl enable libvirtd sudo systemctl start libvirtd sudo

By bakamake