htls command not found

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

Introduction

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

htls: command not found

or when using sudo you get the following error message

sudo: htls: command not found

Solutions to htls: command not found

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

In Ubuntu htls is provided by gridsite-clients package.

gridsite-clients is:

GridSite was originally a web application developed for managing and formatting the content of the http://www.gridpp.ac.uk/ website. Over the past years it has grown into a set of extensions to the Apache web server and a toolkit for Grid credentials, GACL access control lists and HTTP(S) protocol operations.

This package, gridsite-clients, contains clients for using against gridsite, htcp, htrm, …

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

sudo apt-get -y install gridsite-clients

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

You can also use apt command to install gridsite-clients.

sudo apt -y install gridsite-clients

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

sudo aptitude install gridsite-clients

Summary

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