nnusage command not found

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

Introduction

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

nnusage: command not found

or when using sudo you get the following error message

sudo: nnusage: command not found

Solutions to nnusage: command not found

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

In Ubuntu nnusage is provided by nn package.

nn is:

The motto of nn is its expanded name, which is “No News is good news, but nn is better”, and the nn newsreader is designed to let you minimize the amount of time you spend reading news (or, more realistically, to allow you to follow even more newsgroups :-).

Nn allows you to quickly select articles of interest and skip the rest. It also supports efficient article killing and selection of articles by author and subject.

This version of nn reads news from a news server via NNTP (the Network News Transfer Protocol), and can make use of your NNTP server’s NOV database, if configured. You must have a news server available - large sites usually provide a site-wide server. (For those familiar with ’nn’, this is a client-only version.)

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

sudo apt-get -y install nn

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

You can also use apt command to install nn.

sudo apt -y install nn

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

sudo aptitude install nn

Summary

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