标签: KVM

  • pve安装Kylin-Server-V10 arm版本

    • 下载kylin iso
      https://sx.ygwid.cn:4431/
      我下载的是:Kylin-Server-V10-SP3-General-Release-2303-ARM64.iso
    • 创建虚拟机




      virtiogpu显卡类型
    • BIOS关闭安全启动
      在虚拟机启动的时候按F2进行BIOS



      在Attempt Secure Boot菜单下按空格键禁用安全启动,然后按F10保存
    • 启动虚拟机



      CPU是瑞芯微RK3588,大核是A76

    注意:

    • 显卡类型不能选串口和framebuffer,以前装ubuntu和windows 11用的是串口和framebuffer,以为装kylin也是,结果用framebuffer和串口始终会在进入引导界面的的时候卡死。
    • 对于大小核的板子要绑定纯大核或纯小核,有些系统不支持大小核

    Views: 47

  • 瑞芯微RK3588上跑KVM

    配置内核

    KERNEL_SRC=/root/src/kernel-rockchip
    cd $KERNEL_SRC
    touch .scmversion
    make ARCH=arm64 nanopi6_linux_defconfig
    make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- menuconfig

    make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- savedefconfig
    cp .config ./arch/arm64/configs/hetao_defconfig #Save the configuration as hetao_defconfig
    git add ./arch/arm64/configs/hetao_defconfig
    cd ..

    编译内核

    export KERNEL_SRC=$KERNEL_SRC
    export KCFG=hetao_defconfig
    cd sd-fuse_rk3588-kernel6.1
    MK_HEADERS_DEB=1 ./build-kernel.sh ubuntu-jammy-desktop-arm64

    生成sd卡固件

    ./mk-sd-image.sh ubuntu-jammy-desktop-arm64
    启动系统后安装qemu,结果如下

    Views: 458

  • pve(KVM)中抑制ignored rdmsr消息

    这个问题跟nvidia显卡虚拟化有关,执行以下命令可解决
    echo “options vfio_iommu_type1 allow_unsafe_interrupts=1” > /etc/modprobe.d/iommu_unsafe_interrupts.conf && update-initramfs -u -k all

    参考:
    https://pve.proxmox.com/wiki/PCI_Passthrough#NVIDIA_Tips

    Views: 31