You are not logged in.
Pages: 1
So i finally installed arch linux with gnome successfully for the first time. (YAY!
) For my first install i decided to use Slim as my login manager, until i found out that i couldn't shutdown the computer using the shutdown button in gnome. So i decided in install GDM. But now when i try to remove slim in terminal using 'pacman -R slim', i get the follow error.
error: failed to prepare transaction (could not satisfy dependencies)
:: archlinux-themes-slim: requires slim
:: slim-themes: requires slim
Can anyone help me here? I already switched to using GDM already. Thanks.
Last edited by Chance (2008-12-18 02:56:01)
Offline
That would mean that you need to remove those packages, as well. Try with "pacman -Rsn archlinux-themes-slim slim-themes slim".
Offline
So i finally installed arch linux with gnome successfully for the first time. (YAY!
) For my first install i decided to use Slim as my login manager, until i found out that i couldn't shutdown the computer using the shutdown button in gnome. So i decided in install GDM. But now when i try to remove slim in terminal using 'pacman -R slim', i get the follow error.
error: failed to prepare transaction (could not satisfy dependencies)
:: archlinux-themes-slim: requires slim
:: slim-themes: requires slimCan anyone help me here? I already switched to using GDM already. Thanks.
When you try to remove something and it doesn't work, you have some choices. Since slim-themes and archlinux-themes-slim are useless if you don't have slim installed, this command will remove slim and the things that depend on it:
pacman -Rscn slim
From pacman's remove help (pacman -R --help):
-c, --cascade remove packages and all packages that depend on them
-s, --recursive remove dependencies also (that won't break packages)
(-ss includes explicitly installed dependencies too)
-n, --nosave remove configuration files as well
You just want to make sure that you're not removing too much stuff. Look at the list of stuff that comes up to be sure. If you're sure, it's safe to remove.
The pacman Wiki article is very helpful, as well the man page, and the help files.
Offline
pacman -Rs slim
The s means recursive and will remove slim and all its dependencies.
Bob
Offline
Thanks for the quick reply everyone.
'pacman -Rscn slim' did the trick ![]()
Offline
Pages: 1