Linux

debootstrap 在 kali 和 mint 中不起作用

  • January 3, 2017

我正在嘗試通過 chroot 方法在 android 中安裝 linux。

按照網際網路上提供的教程,我嘗試在 kali linux 和 mint 上進行 debootstrap。但每次它都不返回任何輸出。

debootstrap --verbose –-arch=arm64 -–foreign jessie ./jessie ftp://ftp.debian.org/debian/

我嘗試了各種選項,但它沒有輸出。

您應該創建一個掛載點,然後掛載所需的分區以安裝 debian,例如:sdaX

mkdir /mnt/debinst
mount /dev/sdaX /mnt/debinst

根據man debootstarp格式是:

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

在你的情況下應該是:

debootstrap --verbose –-arch=arm64 -–foreign jessie /mnt/debinst ftp://ftp.debian.org/debian/

Tuto :從 Unix/Linux 系統安裝 Debian GNU/Linux

引用自:https://unix.stackexchange.com/questions/334544