You are not logged in.
Pages: 1
Gents;
Is there a pacman command to load all packages in cache? This should include all dependencies and sync, right?
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
Well, by "cache" do you mean the packages in /var/cache/pacman/pkg, or all packages in the arch package repositories?
If you mean /var/cache/pacman/pkg:
# pacman -U /var/cache/pacman/pkg/*
If you mean all packages in the current repo:
# pacman -S `pacman -Sl current | awk '{print $2}'`
That will request ALL packages in the current repository, but it's probably not what you want. Pacman will not install certain packages that conflict with each other (eg, kernel and kernel-scsi) so the operation will fail with a "package conflicts detected" error.
Offline
Pages: 1