I started with this command to install a minimal Ubuntu OS:
debootstrap jammy /mnt
This was done in a USB booted Live Ubuntu 24.04's Terminal Emulator.
After a successful installation, I realized this installed Ubuntu 22.04. My aim instead is a minimal Ubuntu 24.04 installation. So I executed the command:
debootstrap noble /mnt
on the expectation that would overwrite the jammy installation. After many lines showing it was retrieving, and validating, it terminated with this error:
I: Chosen extractor for .deb packages: dpkg-deb
I: Extracting base-files...
E: Tried to extract package, but tar failed. Exit...
Is it possible the existing 22.04 installation caused this failure? If so what is the best way to undo the 22.04 installation to make way for 24.04?
Can a minimal Ubuntu 22.04 installation be upgraded to a minimal only 24.04 installation?
Or is there something wrong with the package it failed to extract?
I tried the command:
apt remove ubuntu-minimal
This did appear to remove something, but this did not make a difference for the "debootstrap noble /mnt' command. Installation failed with the same error.
My interest at this time is to install only a minimal Ubuntu 24.04.