You are not logged in.
Pages: 1
use chmod -r 755 /
how to change all to default?
Offline
I think the only way is to reinstall all the packages you have installed.
With something like pacman -S $(pacman -Qq), but i think you will loose all your dependencies, I'm not sure. So every packages is installed explicitely?
I think reading the pacman man page will help: http://www.archlinux.org/pacman/pacman.8.html
Offline
With something like pacman -S $(pacman -Qq), but i think you will loose all your dependencies, I'm not sure. So every packages is installed explicitely?
I don't think so, all it does is to update all packages. So imho this might be the way to correct this, yes.
Offline
something like pacman -S $(pacman -Qq)
manually installed packages should probably be filtered:
# pacman -S $(pacman -Qq | grep -v "$(pacman -Qqm)")
Offline
Pages: 1