Install and Use Curl on Debian 11 Bullseye Linux

If your fresh Debian 11 installation did not come with the curl command, here's a simple installation process.

Install and Use Curl on Debian 11 Bullseye Linux
Photo by Lukas / Unsplash

If your fresh Debian 11 installation did not come with the curl command, here's a simple installation process.

Install Curl

sudo apt update
sudo apt install curl
curl --version

Install Using Curl

Now try a curl with Jenkins installation. Example can be found on my Debian installation.

curl -fsSL https://pkg.jenkins.io/debian/jenkins.io-2023.key | sudo tee \
  /usr/share/keyrings/jenkins-keyring.asc > /dev/null

Repository Signing Key Update

How to Install Jenkins on Debian 10 or Raspberry Pi OS
Jenkins is an open-source project that gives developers a powerful GUI to automate daily DevOps tasks with a push of a button or webhooks.