如何将软件包安装到 chroot 中?

如何将软件包安装到 chroot 中?

这个问题与debootstrap --variant=buildd 找不到 build-essential

据我所知,debootstrap 可能会在创建 chroot 之后或之前运行脚本

debootstrap [OPTION...] SUITE TARGET [MIRROR [SCRIPT]]

Ppl 告诉我,我可以将软件包安装放入此脚本中来安装所需的软件包。请告诉我该怎么做,修复依赖关系?

答案1

使用该--include选项。比如chroot我最近做的一个i386。

sudo debootstrap --include=nano,gcc,clang,tcc,pcc,g++,git,make,bash,python2,python3,libgsl-dev,libboost-dev,libopenlibm-dev --arch=i386 stable debian_11_i386

有几次我需要在完成后跑apt --fix-broken install进去。chrootdebootstrap

相关内容