1. Your usage scenarios?
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb
URIs: https://download.docker.com/linux/ubuntu
Suites: $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}")
Components: stable
Signed-By: /etc/apt/keyrings/docker.asc
EOF
2. What is your expected outcome?
- Supports installing vfox via DEB822 format on
Ubuntu 24.04.
1. Your usage scenarios?
I personally expect support for installing vfox via the DEB822 format on
Ubuntu 24.04. Currently, the outdated/etc/apt/sources.listis still being used for https://vfox.dev/zh-hans/guides/quick-start.html#unix-like . See https://discourse.ubuntu.com/t/spec-apt-deb822-sources-by-default/29333 .A notable feature of the DEB822 format compared to
/etc/apt/sources.listis its friendliness towardsHere Documents. I'll use a configuration change in Docker Engine as an example.For
/etc/apt/sources.list,2. What is your expected outcome?
Ubuntu 24.04.