mfscopyeattr command not found

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

Introduction

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

mfscopyeattr: command not found

or when using sudo you get the following error message

sudo: mfscopyeattr: command not found

Solutions to mfscopyeattr: command not found

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

In Ubuntu mfscopyeattr is provided by moosefs-client package.

moosefs-client is:

Moosefs FUSE mount utility “mfsmount” and client tools.

MooseFS (MFS) is a fault tolerant, scaling-out, network distributed file system. It spreads data over several physical servers which are visible to the user as one resource. For standard file operations MooseFS mounted with FUSE acts as other Unix-alike file systems:

  • A hierarchical structure (directory tree).
  • POSIX file attributes (permissions, last access and modification times).
  • Special files (block and character devices, pipes and sockets).
  • Symbolic links and hard links.
  • Access control based on IP address and/or password.

Distinctive features of MooseFS are:

  • High availability.
  • Fault tolerance.
  • Strong integrity check.
  • Capacity is dynamically expandable by simply adding new computers/disks.
  • Deleted files are retained for a configurable period of time (a file system level “trash bin”).
  • Coherent snapshots of files, even during I/O.

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

sudo apt-get -y install moosefs-client

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

You can also use apt command to install moosefs-client.

sudo apt -y install moosefs-client

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

sudo aptitude install moosefs-client

Summary

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