To force download, reinstall a package 24 April 2022, 10:05:14 How do we have pacman to force download, reinstall a package, being it is installed now of the same latest version ?
Re: To force download, reinstall a package Reply #1 – 24 April 2022, 10:48:01 1)Quotels /var/cache/pacman/pkg/ | grep -a word from package namerm /var/cache/pacman/pkg/package_file_name2)Install pacman-contrib packageDelete cache versions of installed and uninstalled packages, except for the most recent three, by default:Quotepaccache -r3)Quotepacman -SccChoose remove ALL files from cache Last Edit: 24 April 2022, 11:00:27 by u0
Re: To force download, reinstall a package Reply #2 – 24 April 2022, 12:58:18 Quote from: mardiyah – on 24 April 2022, 10:05:14How do we have pacman to force download, reinstall a package, being it is installed now of the same latest version ?usually if yousuddo pacman -S [ pckage name] it will reinstall withiut being forcedfor example if you runsudo pcmn -S base-develit will install all the packages necessary to build pckages from source. it will also promt you as to wich ones you want to install and ten you can choose the ALL option andd it will reinstall them even if you have the most up to date versions.force is not generally necesssary. why do you wish to use force?