From 9889b12c4dc00685a4211d18a2280718e05bc184 Mon Sep 17 00:00:00 2001 From: DeltaLima Date: Sun, 30 Apr 2023 14:06:30 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Edebootstrap=5Fminimal=5Fdekstop=5Ffrom?= =?UTF-8?q?=5Fscratch.md=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debootstrap_minimal_dekstop_from_scratch.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/debootstrap_minimal_dekstop_from_scratch.md b/debootstrap_minimal_dekstop_from_scratch.md index 6b4824c..5d8d64b 100644 --- a/debootstrap_minimal_dekstop_from_scratch.md +++ b/debootstrap_minimal_dekstop_from_scratch.md @@ -5,4 +5,9 @@ Howto `debootstra` a bare minimal Debian Desktop from scratch - create a root partition and swap partition - `mkfs.ext4` and `mkswap` - run debootstrap -- `debootstrap bullseye /mnt/ http://ftp.de.debian.org/debian` \ No newline at end of file +- `debootstrap bullseye /mnt/ http://ftp.de.debian.org/debian` +- bind mound `dev` `proc` and `sys` +- `for m in dev proc sys ; do mount /$m /mnt/$m ; done` +- chroot into the new environment and run bash +- `chroot /mnt/ /bin/bash` +- \ No newline at end of file