WSH Linux Mirror

Hosted by White Sky Hosting. Synced from upstream multiple times daily.

What lives here

Using as apt source

Rewrite both the archive and security hostnames AND switch to https in one go:

sudo sed -i.bak \
  -e "s|http[s]\?://archive.ubuntu.com/ubuntu|https://mirror.whiteskyhosting.com/ubuntu|g" \
  -e "s|http[s]\?://security.ubuntu.com/ubuntu|https://mirror.whiteskyhosting.com/ubuntu-security|g" \
  /etc/apt/sources.list /etc/apt/sources.list.d/*.list 2>/dev/null
sudo apt update

The hostname change is reversible — a .bak copy of each file is kept.