How To Install arch-install-scripts on Fedora 36

In this tutorial we learn how to install arch-install-scripts in Fedora 36. arch-install-scripts is Scripts to bootstrap Arch Linux distribution

Introduction

In this tutorial we learn how to install arch-install-scripts on Fedora 36.

What is arch-install-scripts

A small suite of scripts aimed at automating some menial tasks when installing Arch Linux, most notably including actually performing the installation. To install and launch Arch in a container pacman-key –init pacman-key –populate archlinux mkdir -p /var/lib/machines/arch pacstrap -G -M -i -c /var/lib/machines/arch base systemd-nspawn -bD /var/lib/machines/arch

We can use yum or dnf to install arch-install-scripts on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install arch-install-scripts.

Install arch-install-scripts on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install arch-install-scripts using dnf by running the following command:

sudo dnf -y install arch-install-scripts

Install arch-install-scripts on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install arch-install-scripts using yum by running the following command:

sudo yum -y install arch-install-scripts

How To Uninstall arch-install-scripts on Fedora 36

To uninstall only the arch-install-scripts package we can use the following command:

sudo dnf remove arch-install-scripts

arch-install-scripts Package Contents on Fedora 36

/usr/bin/arch-chroot
/usr/bin/genfstab
/usr/bin/pacstrap
/usr/share/bash-completion/completions/arch-chroot
/usr/share/bash-completion/completions/genfstab
/usr/share/bash-completion/completions/pacstrap
/usr/share/licenses/arch-install-scripts
/usr/share/licenses/arch-install-scripts/COPYING
/usr/share/man/man8/arch-chroot.8.gz
/usr/share/man/man8/genfstab.8.gz
/usr/share/man/man8/pacstrap.8.gz
/usr/share/zsh/site-functions
/usr/share/zsh/site-functions/_archinstallscripts

References

Summary

In this tutorial we learn how to install arch-install-scripts on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).