-- Changing Mirrors -- Each repository has a file defining the URL for the mirror used. For official repositories, these files are installed by the package manager in /usr/share/xbps.d, but if duplicate files are found in /etc/xbps.d, those values are used instead. Since the official Void repositories have discontinued the PowerPC branch, we will have to update the definitions to point at a community maintained mirror which is being kept up-to-date by other users. To modify mirror URLs cleanly, copy all the repository configuration files to /etc/xbps.d and change the URLs in each copied repository file. --- # mkdir -p /etc/xbps.d # cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/ # sed -i 's|https://mirrors.servercentral.com/void-ppc||g' /etc/xbps.d/*-repository-*.conf --- After changing the URLs, you must synchronize xbps with the new mirrors: --- # xbps-install -S --- You should see the new repository URLs while synchronizing. You can also use xbps-query to verify the repository URLs, but only after they have been synchronized: --- $ xbps-query -L 9970 https://mirrors.servercentral.com/void-ppc/current (RSA signed) 27 https://mirrors.servercentral.com/void-ppc/current/multilib/nonfree (RSA signed) 4230 https://mirrors.servercentral.com/void-ppc/current/multilib (RSA signed) 47 https://mirrors.servercentral.com/void-ppc/current/nonfree (RSA signed) 5368 https://mirrors.servercentral.com/void-ppc/current/debug (RSA signed) ---