search-ccsb command not found

In this troubleshooting guide we learn how to fix search-ccsb command not found error message

Introduction

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

search-ccsb: command not found

or when using sudo you get the following error message

sudo: search-ccsb: command not found

Solutions to search-ccsb: command not found

How To Fix search-ccsb: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu search-ccsb is provided by search-ccsb package.

search-ccsb is:

Search-ccsb is a Perl script that connects to “The Collection of Computer Science Bibliographies”[1], and performs a keyword search query. The result is a set of BibTeX entries that matches the query.

  1. http://liinwww.ira.uka.de/bibliography/index.html

If you use some emacsen application, this package will install the search-ccsb.el script on it.

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

sudo apt-get -y install search-ccsb

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

You can also use apt command to install search-ccsb.

sudo apt -y install search-ccsb

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

sudo aptitude install search-ccsb

Summary

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