krename command not found

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

Introduction

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

krename: command not found

or when using sudo you get the following error message

sudo: krename: command not found

Solutions to krename: command not found

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

In Ubuntu krename is provided by krename package.

krename is:

KRename is a very powerful batch file renamer for KDE which can rename a list of files based on a set of expressions. It can copy/move the files to another directory or simply rename the input files.

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

sudo apt-get -y install krename

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

You can also use apt command to install krename.

sudo apt -y install krename

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

sudo aptitude install krename

Summary

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