vfte command not found

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

Introduction

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

vfte: command not found

or when using sudo you get the following error message

sudo: vfte: command not found

Solutions to vfte: command not found

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

In Ubuntu vfte is provided by fte-console package.

fte-console is:

FTE is a text editor for programmers. Some of its features are smart indentation for C, C++, Java, Perl; color syntax highlighting for many more languages; multiple file/window editing; column blocks; configurable menus and keyboard bindings; mouse support; undo/redo; regular expression search and replace; folding; background compiler execution.

This is the Linux console edition, without internationalization support.

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

sudo apt-get -y install fte-console

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

You can also use apt command to install fte-console.

sudo apt -y install fte-console

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

sudo aptitude install fte-console

Summary

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