Troubleshooting
This guide covers common issues you might encounter while using Manjikaze and how to resolve them.
Update Issues
"Unable to lock database" Error
This error occurs when another package manager instance is running.
Solution: Make sure to check if any package managers are running in the background (Software Update, Pamac, etc.). Wait till they're finished or close them. If that doesn't work you can try to manually remove the lock:
sudo rm /var/lib/pacman/db.lckIf that doesn't work, try:
sudo rm /var/tmp/pamac/dbs/db.lc"Unrecognized archive format" Error
This error occurs when the package database files are corrupted or incomplete.
Solution:
sudo pacman-mirrors -c Global
sudo pacman -SyuKey and Signature Errors
If you encounter key or signature verification errors:
Solution:
sudo pacman-key --refresh-keys
sudo pacman-key --populate archlinux manjaro
sudo pacman -SyuConflicting Files Error
When pacman reports conflicting files:
Solution:
Identify which package owns the file:
bashpacman -Qo /path/to/fileEither remove the conflicting package or back up and delete the conflicting file.
System Issues
System Slow After Update
If your system becomes slow after an update:
Solution:
Check for service issues:
bashsystemctl --failedCheck journal logs for errors:
bashjournalctl -p 3 -xb
Application Crashes
For applications crashing after an update:
Solution:
Try reinstalling the application:
bashsudo pacman -S application-nameCheck if downgrading helps (use with caution):
bashsudo downgrade application-name
Recovery Options
If your system becomes unbootable after an update, you need to take additional steps to work around the full disk encryption:
Boot from a Manjaro Live USB
Decrypt your encrypted partition using your YubiKey:
bashsudo cryptsetup open --type luks /dev/sdXY your_encrypted_volume(You'll need to insert your YubiKey when prompted)
Mount your decrypted system:
bashsudo mount /dev/mapper/your_encrypted_volume /mnt sudo mount /dev/sdXZ /mnt/boot # If you have a separate boot partitionChroot into your system:
bashsudo arch-chroot /mntRun system updates or repair commands
When finished:
bashexit sudo umount -R /mnt sudo cryptsetup close your_encrypted_volume
For more complex issues, consult the Manjaro Wiki or seek help in the Manjaro community forums.