convmvfs command not found

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

Introduction

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

convmvfs: command not found

or when using sudo you get the following error message

sudo: convmvfs: command not found

Solutions to convmvfs: command not found

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

In Ubuntu convmvfs is provided by fuse-convmvfs package.

fuse-convmvfs is:

convmvfs is a FUSE (File System in Userspace) utility that transparently mirrors a filesystem tree converting the filenames from one charset to another on the fly. Only the names of files and directories are converted; the file content remains intact. The mirrored tree is mounted at a given mountpoint.

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

sudo apt-get -y install fuse-convmvfs

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

You can also use apt command to install fuse-convmvfs.

sudo apt -y install fuse-convmvfs

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

sudo aptitude install fuse-convmvfs

Summary

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