You are not logged in.
Suppose I have installed a large number of packages from pacman -S . Now I want to remoce all those packages , but the problem some of packages contain dependency to other packages , so the pacman stops with error message.
I want pacman to continue trying removing the other packages specified in the list even if some of them cant be removed due to dependancy
For example :
sudo pacman -Rns wine gnome-desktop lutris
it should act like
sudo pacman -Rns wine
sudo pacman -Rns gnome-desktop
sudo pacman -Rns lutris
It should remove wine and lutris even if removal of gnome-desktop is not possible.
The Solution was to create backup before installing a large number of packages at once , and revert if you want to uninstall or some problem occurs
Last edited by marshalphoenix (2022-05-16 08:48:41)
Offline
man pacman | less -p --nodepsOffline