2

I want to start testing Ubuntu beta, but I don't want to download a new iso every time so I am using rsync. How do I use it to sync my local copy of the ubuntu iso with the ubdated on on the server. I use this command rsync -n rsync://cdimage.ubuntu.com/daily-live/20240419.2/noble-desktop-amd64.iso noble-desktop-amd64.iso, but I get this error.

@ERROR: Unknown module 'daily-live'
rsync error: error starting client-server protocol (code 5) at main.c(1863) [Receiver=3.2.7]
muru
  • 207,228
Todd
  • 39

1 Answers1

3

Update the beta version

Updating the beta version of Ubuntu will download and install the updates. There is no need for installing from new ISO everyday.

You can do this by opening a terminal and entering two commands:

sudo apt update
sudo apt full-upgrade

Please note that bug reports and issues with the beta versions are off topic here. See How do I report a bug? for how to report bugs.

Stable release

When the final version is generally available, the same update/upgrade process will convert the beta to the GA version.

Hope this helps

user68186
  • 37,461