From the welcome menu I do ‘Update System (eos-update -aur)’. I presume this is identical to the command shown. I keep missing a prompt because it waited for too long. Hence the question in the title. Alternatively, how would I override the timer associated with the prompt?
$ sudo eos-update -aur --noconfirm
[sudo] password for erwann:
eos-update: invalid option -- 'a'
eos-update: invalid option -- 'u'
eos-update: invalid option -- 'r'
eos-update: unrecognized option '--noconfirm'
eos-update is a package updater for EndeavourOS and Arch.
eos-update is implemented as a wrapper around commands pacman and optionally yay/paru.
Essentially runs commands 'pacman -Syu' and optionally 'yay -Sua' or 'paru -Sua'.
eos-update includes (by default) special help in the following situations:
- A dangling pacman db lock file (/var/lib/pacman/db.lck).
- Disk space availability for updates (with a configurable minimum space).
- Keyring package updating before others.
- Running the 'sync' command after update.
Optional help:
- Can clear package databases in case of contant problems with them.
- Can reset keyrings in case of constant problems with them.
- Updates AUR packages (with option --helper, see Usage below)
- Ad hoc check for Nvidia GPU driver vs. kernel updates:
- kernel-lts updates ==> nvidia-lts should be updated
- Nvidia driver: nvidia nvidia-lts
- Kernel: linux linux-lts
(only on EndeavourOS).
Usage: eos-update [options]
Options:
--help, -h This help.
--nvidia Check also nvidia driver vs. kernel updates. Useful only with the Nvidia GPU.
--nvidia-auto If nvidia module is in use, automatically apply option --nvidia.
--clear-databases Clears package database files.
Use this only if package database issues constantly make system update fail.
--keyrings-reset Resets Arch and EndeavourOS keyrings.
Use this only if keyring issues constantly make system update fail.
--no-keyring Do not try to update keyrings first.
--no-sync Do not run 'sync' after update.
--helper AUR helper name. Supported: yay, paru, pacman.
Default: pacman
Other AUR helpers supporting option -Sua like yay should work as well.
--paru Same as --helper=paru.
--yay Same as --helper=yay.
--aur Uses the AUR helper configured in /etc/eos-script-lib-yad.conf.
--pacman Same as --helper=pacman. Default. (Note: pacman does not support AUR directly).
--min-free-bytes Minimum amount of free space (in bytes) that the root partition should have
before updating. Otherwise a warning message will be displayed.
Default: 1000000000
Tip: create an alias in file ~/.bashrc for eos-update to have the options you need, for example:
# Enable Nvidia update check, disable sync execution, use paru for AUR updates.
alias eos-update='eos-update --nvidia --no-sync --paru'