Forrest logo
back to context overview

debootstrap

List of commands for debootstrap:

  • debootstrap:tldr:6db26 debootstrap: Create a minimal system including only required packages.
    $ sudo debootstrap --variant=minbase stable ${path-to-debian-root-}
    try on your machine
    explain this command
  • debootstrap:tldr:afecc debootstrap: Create an Ubuntu 20.04 system inside the `focal-root` directory with a local mirror.
    $ sudo debootstrap focal ${path-to-focal-root-} ${file:---path-to-mirror-}
    try on your machine
    explain this command
  • debootstrap:tldr:c3e04 debootstrap: List available releases.
    $ ls /usr/share/debootstrap/scripts/
    try on your machine
    explain this command
  • debootstrap:tldr:ef677 debootstrap: Create a Debian stable release system inside the `debian-root` directory.
    $ sudo debootstrap stable ${path-to-debian-root-} http://deb.debian.org/debian
    try on your machine
    explain this command
back to context overview