pebble command not found

In this troubleshooting guide we learn how to fix pebble command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

pebble: command not found

or when using sudo you get the following error message

sudo: pebble: command not found

Solutions to pebble: command not found

How To Fix pebble: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pebble is provided by pebble package.

pebble is:

Pebble is a miniature version of Boulder (https://github.com/letsencrypt/boulder) that can assist in the development and testing of ACME clients against the standard without having to setup a full production-capable ACME server.

Pebble is NOT designed for production use and is for testing only. By design, it will drop all of its state between invocations and will randomize keys and certificates used for issuance!

Pebble has several top level goals:

  1. Provide a simplified ACME testing front end
  2. Provide a test-bed for new and compatibility breaking ACME features
  3. Encourage ACME client best-practices
  4. Aggressively build in guardrails against non-testing usage

To fix this problem, we can install more using the command below.

sudo apt-get -y install pebble

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install pebble.

sudo apt -y install pebble

Or if you have aptitude installed you can use the following command.

sudo aptitude install pebble

Summary

In this tutorial we learn how to fix pebble command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.