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