Debootstrap issue
-
I am trying to create debian chroot with debootstrap, but I get this error:
$ fakeroot debootstrap --arch=arm64 --variant=minbase stable . I: Checking Release signature I: Valid Release signature (key id 4D64FEC119C2029067D6E791F8D2585B8783D481) I: Retrieving Packages I: Validating Packages E: Couldn't download http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages
The problem is that there is only http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages.xz or .gz files in repository. How do I fix this? Debootstrap is from Fedora 41 repo.
-
-
I am trying to create debian chroot with debootstrap, but I get this error:
$ fakeroot debootstrap --arch=arm64 --variant=minbase stable . I: Checking Release signature I: Valid Release signature (key id 4D64FEC119C2029067D6E791F8D2585B8783D481) I: Retrieving Packages I: Validating Packages E: Couldn't download http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages
The problem is that there is only http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages.xz or .gz files in repository. How do I fix this? Debootstrap is from Fedora 41 repo.
Do it as two separate commands to learn which is causing you the issues.
-
I am trying to create debian chroot with debootstrap, but I get this error:
$ fakeroot debootstrap --arch=arm64 --variant=minbase stable . I: Checking Release signature I: Valid Release signature (key id 4D64FEC119C2029067D6E791F8D2585B8783D481) I: Retrieving Packages I: Validating Packages E: Couldn't download http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages
The problem is that there is only http://deb.debian.org/debian/dists/stable/main/binary-arm64/Packages.xz or .gz files in repository. How do I fix this? Debootstrap is from Fedora 41 repo.
Run debootstrap like
sh -ex debootstrap
to get an execution trace so you can see what's going on. -