BinaryLane provides repository mirrors for the release versions of Ubuntu we offer.
ISO images of release versions of Ubuntu are available on our mirror in their respective directories.
http://mirror.binarylane.com.au/ubuntu-releases/
If you'd like to install the desktop version of Ubuntu 24.04.1 as a BYO OS, for example, copy the link for the desktop ISO from the relevant directory on the mirror, and enter it into upload form when prompted for an installation ISO.
Directory on mirror - http://mirror.binarylane.com.au/ubuntu-releases/24.04.1/
Desktop ISO link - http://mirror.binarylane.com.au/ubuntu-releases/24.04.1/ubuntu-24.04.1-desktop-amd64.iso
Our Ubuntu server installations are pre-configured to use BinaryLane's Ubuntu mirror as the default repository. This mirror employs anycast technology, which directs your requests to the nearest server. As a result, software installations and updates are faster and more efficient, since the mirror server is in the same location as your server.
To ensure that your server is using the most up-to-date software, you should run `sudo apt update` and `sudo apt upgrade` regularly. This will update the package cache and install any available updates.
It is recommended that `sudo apt update` is run before installation of new software or upgrading packages with `sudo apt upgrade` to ensure that the package cache is up-to-date.
In your Ubuntu server's `/etc/apt/sources.list` file, you will see the lines that point to BinaryLane's Ubuntu mirror. For example, for Ubuntu 20.04 (Focal Fossa), the lines will look like the text below(comments have been excluded).
deb http://mirror.binarylane.com.au/ubuntu/ focal main restricted deb http://mirror.binarylane.com.au/ubuntu/ focal-updates main restricted deb http://mirror.binarylane.com.au/ubuntu/ focal universe deb http://mirror.binarylane.com.au/ubuntu/ focal-updates universe deb http://mirror.binarylane.com.au/ubuntu/ focal multiverse deb http://mirror.binarylane.com.au/ubuntu/ focal-updates multiverse deb http://mirror.binarylane.com.au/ubuntu/ focal-backports main restricted universe multiverse deb http://security.ubuntu.com/ubuntu/ focal-security main restricted deb http://security.ubuntu.com/ubuntu/ focal-security universe deb http://security.ubuntu.com/ubuntu/ focal-security multiverse
Note the security sources are still pointing to the official Ubuntu repository. This was the default configuration for our Ubuntu 20.04 installations, but our mirror can be used for security updates if preferred.
Our newer Ubuntu installations use BinaryLane's mirror for security updates by default. The following excerpt from a BinaryLane provided Ubuntu 22.04 (Jammy Jellyfish) server's `/etc/apt/sources.list` shows the security sources pointing to BinaryLane's mirror.
deb http://mirror.binarylane.com.au/ubuntu/ jammy-security main restricted deb http://mirror.binarylane.com.au/ubuntu/ jammy-security universe deb http://mirror.binarylane.com.au/ubuntu/ jammy-security multiverse
If you'd prefer your Ubuntu server to use the official Ubuntu repositories, you can change the sources in the `/etc/apt/sources.list` file to point to the official Ubuntu repositories.
To configure your server to use the official repositories instead of the BinaryLane mirrors, change all instances of http://mirror.binarylane.com.au/ubuntu/ to http://au.archive.ubuntu.com/ubuntu/ in the `/etc/apt/sources.list` file, and then run `sudo apt update` to refresh the package cache. Updates and installations will now be sourced from the official Ubuntu repositories.