Ubuntu 24.04 Noble Numbat LTS

ReleaseNotes / Known issues
https://wiki.ubuntu.com/NobleNumbat/ReleaseNotes

Download
Releases: http://releases.ubuntu.com/24.04/
Torrent: http://releases.ubuntu.com/24.04/ubuntu-24.04-desktop-amd64.iso.torrent
Cloud image (minimal): https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img

Repository

echo "deb http://de.archive.ubuntu.com/ubuntu noble main restricted universe multiverse" | \
    sudo tee /etc/apt/sources.list.d/ubuntu-noble.list
echo "deb http://de.archive.ubuntu.com/ubuntu noble-updates main restricted universe multiverse" | \
    sudo tee /etc/apt/sources.list.d/ubuntu-noble-updates.list
 
sudo apt update

OLD Bioni

Repository

echo "deb http://de.archive.ubuntu.com/ubuntu bionic-updates main restricted universe multiverse" > /etc/apt/sources.list.d/bionic-updates.list
echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed restricted main multiverse universe" > /etc/apt/sources.list.d/proposed-updates.list
apt-get install netplan.io/bionic-proposed

Download
http://releases.ubuntu.com/18.04/
32 bit Netboot CD
64 bit Netboot CD

Workaround

# install HWE kernel
apt install -y linux-image-generic-hwe-18.04-edge
 
# Enable swap (on ZFS)
echo /dev/zvol/tank/swap none swap defaults 0 0 >> /etc/fstab
swapon  -a
 
# rc.local replacement
crontab -e
@reboot /root/bin/script.sh
 
# Install pdftk
wget http://mirrors.edge.kernel.org/ubuntu/pool/main/g/gcc-defaults/libgcj-common_4.9.3-9ubuntu1_all.deb -P /tmp
wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/gcc-5-base_5.4.0-6ubuntu1~16.04.10_amd64.deb -P /tmp
wget http://security.ubuntu.com/ubuntu/pool/main/g/gcc-5/libgcj16_5.4.0-6ubuntu1~16.04.10_amd64.deb -P /tmp
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/p/pdftk/pdftk_2.02-4_amd64.deb -P /tmp
cd /tmp/
dpkg -i pdftk_2.02-4_amd64.deb libgcj16_5.4.0-6ubuntu1_16.04.10_amd64.deb  gcc-5-base_5.4.0-6ubuntu1_16.04.10_amd64.deb  libgcj-common_4.9.3-9ubuntu1_all.deb