-
-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux System Recovery
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to system recovery on Arch Linux, including chroot, boot repair, and recovery procedures.
Boot Arch ISO:
- Boot from Arch Linux ISO
- Mount partitions
- Chroot into system
Mount system:
# Mount root
mount /dev/sda2 /mnt
# Mount EFI (if UEFI)
mount /dev/sda1 /mnt/boot/efi
# Mount other partitions
mount /dev/sda3 /mnt/homeEnter chroot:
# Chroot
arch-chroot /mnt
# Now in installed systemGRUB:
# Chroot first
arch-chroot /mnt
# Reinstall GRUB
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB
# Regenerate config
grub-mkconfig -o /boot/grub/grub.cfgRebuild:
# Chroot
arch-chroot /mnt
# Rebuild
mkinitcpio -PFix packages:
# Chroot
arch-chroot /mnt
# Update
pacman -Syu
# Fix broken packages
pacman -S package-name --overwrite "*"Restore:
# Mount backup
mount /dev/backup /mnt/backup
# Restore files
rsync -av /mnt/backup/home/ /mnt/home/Install testdisk:
# Install
sudo pacman -S testdisk
# Run
sudo testdiskRecover files:
# Install
sudo pacman -S testdisk
# Run
sudo photorecThis guide covered chroot, boot repair, recovery, and data recovery.
- Arch Linux Backup and Restore - Backups
- Arch Linux Installation Guide - Installation
- ArchWiki Recovery: https://wiki.archlinux.org/title/Installation_guide#Chroot
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.