web-dev-qa-db-ja.com

debootstrapがkaliとmintで機能しない

LinuxをAndroidにchrootメソッドでインストールしようとしています。

インターネットで利用できるチュートリアルに従って、kalilinuxとmintでdebootstrapを試しました。しかし、毎回出力を返しません。

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

さまざまなオプションを試しましたが、出力が返されません。

2
jonny789

マウントポイントを作成してから、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: nix/LinuxシステムからのDebianGNU/Linuxのインストール

2
GAD3R