just curious what these 3 commands do ?
if i just run yay it update/upgrade ect.
then if i run eos-update --aur after that , it tells me there’s nothing to do
then if i run sudo pacman --sync --refresh --sysupgrade it tells me there’s nothing to do
so what’s the difference between those 3 commands ?
If you are refering to the eos-update - - aur in the welcome app, that will add a extra check for checking a faillock, that could be in place if you entered a wrong password three times at some point in time which causes the faillock. Further explained in this topic.
All three commands are involved in keeping your system up to date on EndeavourOS (which is Arch-based), but they differ in scope and focus. Here’s a breakdown of what each one does:
yay
Yay is an AUR helper — it handles both official repo packages and AUR packages.
When you just run:
bash
CopyEdit
yay
…it:
Checks for updates in both the official Arch repositoriesand the AUR.
Prompts you to install them, with the ability to review or skip any.
Also handles dependencies, .pacnew files, etc.
So it’s like a one-stop-shop for updates, including community-contributed packages (AUR).
eos-update --aur
This is a wrapper script provided by EndeavourOS.
When you run:
bash
CopyEdit
eos-update --aur
…it:
Runs pacman -Syu first — updates official repo packages.
Then uses yay or paru (depending on what you have) to update AUR packages.
Optionally checks for .pacnew files and shows system status info.
So it’s like a system-safe, scripted, unified update tool for EndeavourOS users — helpful especially if you want to avoid doing things manually.
If you’ve already run yay, there’s nothing left for it to do.
sudo pacman --sync --refresh --sysupgrade
Equivalent to:
bash
CopyEdit
sudo pacman -Syu
…it:
Syncs your local package database (--refresh or -y).
Upgrades only the official Arch repo packages (--sysupgrade or -u).
Does not touch the AUR.
So this is what Arch users often run to keep the “core” system up to date — but it ignores AUR packages.
fair point lol
i like to think i can trust users here , yes ?
i’m still familiarising myself bout who’s who here , meaning when i was (still is) on Zorin forum, i learned which users i can blindly trust , and others i must confirm (2nd opinion) first lol