« Yay » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(Page créée avec « Category:ArchLinux Category:Logiciels = [https://github.com/Jguer/yay#examples-of-custom-operations Utilisation] = <kode lang=bash> # Present package-installation... ») |
Aucun résumé des modifications |
||
(2 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 4 : | Ligne 4 : | ||
<kode lang=bash> | <kode lang=bash> | ||
# Present package-installation selection menu | # Present package-installation selection menu | ||
yay < | yay <Search_Term> | ||
# clear cache | |||
yay -Sc --aur | |||
# allow to edit PKGBUILD before install | |||
yay --editmenu -S <Pkg_name> | |||
# Perform system upgrade, but also check for development package updates and use PKGBUILD modification time (not version number) to determine update. | # Perform system upgrade, but also check for development package updates and use PKGBUILD modification time (not version number) to determine update. | ||
Ligne 11 : | Ligne 17 : | ||
# lister tous les paquets « étrangers » installé avec yay | # lister tous les paquets « étrangers » installé avec yay | ||
pacman -Qm | pacman -Qm | ||
</kode> | |||
= Errors = | |||
== [https://github.com/Jguer/yay/issues/1087 Error while loading shared libraries: libalpm.so.14: cannot open shared object file: No such file or directory] == | |||
Reinstall yay to fix the issue. | |||
<kode lang='bash'> | |||
# uninstall yay | |||
sudo pacman -R yay | |||
# install yay from git | |||
cd /tmp | |||
git clone https://aur.archlinux.org/yay.git | |||
cd yay | |||
makepkg -si | |||
cd .. | |||
# clean /tmp folder | |||
rm -rf yay | |||
</kode> | </kode> | ||
Dernière version du 23 septembre 2024 à 21:58
Utilisation
# Present package-installation selection menu yay <Search_Term> # clear cache yay -Sc --aur # allow to edit PKGBUILD before install yay --editmenu -S <Pkg_name> # Perform system upgrade, but also check for development package updates and use PKGBUILD modification time (not version number) to determine update. yay -Syu --devel --timeupdate # lister tous les paquets « étrangers » installé avec yay pacman -Qm |
Errors
Reinstall yay to fix the issue.
# uninstall yay sudo pacman -R yay # install yay from git cd /tmp git clone https://aur.archlinux.org/yay.git cd yay makepkg -si cd .. # clean /tmp folder rm -rf yay |
Installation
git clone https://aur.archlinux.org/yay.git cd yay makepkg -si |