
pacstrap
List of commands for pacstrap:
-
pacstrap:tldr:9dd49 pacstrap: Install packages using package files.$ pacstrap -U ${path-to-new-root} ${path-to-package1} ${path-to-package2}try on your machineexplain this command
-
pacstrap:tldr:bbad9 pacstrap: Install packages without copy the host's pacman keyring to the target.$ pacstrap -G ${path-to-new-root} ${packages}try on your machineexplain this command
-
pacstrap:tldr:d00df pacstrap: Use an alternate configuration file for Pacman.$ pacstrap -C ${path-to-pacman-conf} ${path-to-new-root} ${packages}try on your machineexplain this command
-
pacstrap:tldr:d0f16 pacstrap: Install packages without copy the host's mirrorlist to the target.$ pacstrap -M ${path-to-new-root} ${packages}try on your machineexplain this command
-
pacstrap:tldr:d7c79 pacstrap: Install the `base` package, Linux kernel and firmware for common hardware.$ pacstrap ${path-to-new-root} ${base} ${linux} ${linux-firmware}try on your machineexplain this command
-
pacstrap:tldr:e3aae pacstrap: Install packages using the package cache on the host instead of on the target.$ pacstrap -c ${path-to-new-root} ${packages}try on your machineexplain this command
-
pacstrap:tldr:fdd0e pacstrap: Install packages in interactive mode (prompts for confirmation).$ pacstrap -i ${path-to-new-root} ${packages}try on your machineexplain this command