tl;dr Starting with curl 8.17.0-1.amzn2023.0.2 in Amazon Linux 2023, you can now use HTTP/3. dnf swap -y libcurl-minimal libcurl-full dnf swap -y curl-minimal curl-full curl --http3-only https://example.com (HTTP/3 is only enabled in the curl -full builds) Or, if you would like to try it out in a container: podman run amazonlinux:2023 /bin/sh -c ' dnf upgrade -y --releasever=latest && dnf swap -y…
tl;dr This is not an official package, it's good enough for me and it might be good enough for you, confirmed as working in Debian Testing but I don't have a Stable machine to test there. You can use my custom repo to install the latest NVIDIA drivers on Debian Stable, Testing or Unstable (install from Sid repository): https://deb.debusine.debian.net/debian/r-samueloph-nvidia-ai/ The page above…
tl;dr This is an experimental feature that, for the first time, brings full ECH support to curl on Debian using OpenSSL. Starting with curl 8.19.0-3+exp2 (Debian Experimental), you can now use ECH, with HTTPS-RR and DoH for maximum privacy. curl 8.19.0-3+exp2 is quite fresh at the time of writing, bear in mind that your repository might not have synced the package yet, all mirrors should have it…
Beyond Debian: Useful for other distros too Every two years Debian releases a new major version of its Stable series, meaning the differences between consecutive Debian Stable releases represent two years of new developments both in Debian as an organization and its native packages, but also in all other packages which are also shipped by other distributions (which are getting into this new Stable…
tl;dr DebConf24 was fun! A playlist of all of my talks, with subtitles (en, pt-br) and chapters is available on YouTube . Overview DebConf24 was held in Busan, South Korea, between Sunday July 28th to Sunday August 4th 2024. As usual for DebConfs, I had a great time meeting my friends, but also met new people and got to learn a bit about the interesting things they're working on. I ended up…
tl;dr Starting with curl 8.0.0-2 , you can now use HTTP/3. curl --http3-only https://example.com Or, if you would like to try it out in a container: podman run debian:testing /bin/bash -c ' apt install --update -y curl && curl --http3-only https://example.com ' (in case you haven't noticed, apt now has the --update option for the upgrade and install commands) Availability Debian unstable - Since…
tl;dr Whenever you need to download files through the terminal and don't feel like using wget: wcurl example.com/filename.txt Manpage: https://curl.se/wcurl/manual.html Availability (comes installed with the curl package): Debian unstable - Since 2024-07-02 Debian testing - Since 2024-07-18 Debian 12/bookworm-backports - Since 2024-08-25 Debian 12/bookworm - Due to the way changes are planned for…