https://ta180m.exozy.me/posts/installing-every-arch-package/
Some Random Website About Projects Posts Tags Feed Git About Projects Posts Tags Feed Git Using algorithms and Julia to install as many packages as possible from the Arch Linux official repositories January 26, 2022 linux fun algorithms computer-science Challenge accepted. Let’s do it! First things first, let’s generate a list of all official Arch Linux packages . Fortunately, pacman , the best pragmatic package manager in existence, makes this a breeze. pacman -Sql Great, now let’s install it all! sudo pacman -S $( pacman -Sql ) 10 seconds later, you’ll find yourself with&mldr unresolvable package conflicts detected? OK, fine, let’s disable dependency checking then: sudo pacman -Sdd $( pacman -Sql ) Nope, didn’t work. We have to do something about the conflicting packages! We could resolve all the conflict...