|
|
First - I'd recommend backing up your /etc/apt/sources.list file first:
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
Then run sed across it to change it to the AU mirrors:
sudo sed -i -e 's/nz/au/g' /etc/apt/sources.list && sudo apt update
To get it back to the NZ mirrors just run it in reverse like so:
sudo sed -i -e 's/au/nz/g' /etc/apt/sources.list && sudo apt update
Michael Murphy | https://murfy.nz
Referral Links: Quic Broadband (use R122101E7CV7Q for free setup)
Are you happy with what you get from Geekzone? Please consider supporting us by subscribing.
Opinions are my own and not the views of my employer.
|
|