„debootstrap_minimal_dekstop_from_scratch.md“ ändern

This commit is contained in:
DeltaLima 2023-04-30 14:06:30 +02:00
parent eeb9df1c9f
commit 9889b12c4d
1 changed files with 6 additions and 1 deletions

View File

@ -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`
- `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`
-