sqop command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sqop: command not found
or when using sudo you get the following error message
sudo: sqop: command not found
Solutions to sqop: command not found
How To Fix sqop: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sqop is provided by sqop package.
sqop is:
sqop offers a Rust-based implementation of the Stateless OpenPGP Command Line Interface.
This standards-derived interface is an implementation of https://datatracker.ietf.org/doc/draft-dkg-openpgp-stateless-cli/, intended to be used in interoperability tests and simple OpenPGP commands, while leaving no trace in the filesystem. This package contains the following binaries built from the Rust crate “sequoia-sop”:
- sqop
To fix this problem, we can install more using the command below.
sudo apt-get -y install sqop
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sqop.
sudo apt -y install sqop
Or if you have aptitude installed you can use the following command.
sudo aptitude install sqop
Summary
In this tutorial we learn how to fix sqop command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.