DEV Community

Cover image for How to update Certbot on Debian 11
Fran Quinto
Fran Quinto

Posted on

4

How to update Certbot on Debian 11

Description of the problem

In Debian 11 your CertBot version is: https://packages.debian.org/bullseye/certbot
(on 28th August 2022 = 1.12.0)

Last release: https://github.com/certbot/certbot/releases
(on 28th August 2022 = 1.29.0)

In Debian 11 CertBot is outdated. First step: if installed, remove it:

sudo apt remove certbot -y
Enter fullscreen mode Exit fullscreen mode

Installation of CertBot

  1. Install Snapd manager: sudo apt install snapd -y
  2. Install Snap core & refresh: sudo snap install core; sudo snap refresh core
  3. Install CertBot: sudo snap install --classic certbot
  4. Setup link in your Debian: sudo ln -s /snap/bin/certbot /usr/bin/certbot

Check version CertBot installed

1.- View version: sudo certbot --version
Output: certbot 1.29.0

Using manually

In next command replace: yourmail@example.com for your email. And *.example.com for your domain

sudo certbot certonly --manual --preferred-challenges=dns --email yourmail@example.com --agree-tos -d *.example.com
Enter fullscreen mode Exit fullscreen mode

Finally follow CertBot steps in your command line.

Image of AssemblyAI tool

Transforming Interviews into Publishable Stories with AssemblyAI

Insightview is a modern web application that streamlines the interview workflow for journalists. By leveraging AssemblyAI's LeMUR and Universal-2 technology, it transforms raw interview recordings into structured, actionable content, dramatically reducing the time from recording to publication.

Key Features:
๐ŸŽฅ Audio/video file upload with real-time preview
๐Ÿ—ฃ๏ธ Advanced transcription with speaker identification
โญ Automatic highlight extraction of key moments
โœ๏ธ AI-powered article draft generation
๐Ÿ“ค Export interview's subtitles in VTT format

Read full post

Top comments (0)

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

๐Ÿ‘‹ Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay