newfs_udf command not found

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

Introduction

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

newfs_udf: command not found

or when using sudo you get the following error message

sudo: newfs_udf: command not found

Solutions to newfs_udf: command not found

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

In Ubuntu newfs_udf is provided by udfclient package.

udfclient is:

UDFclient is a userland implementation of the UDF filesystem as defined by the OSTA group. UDFclient is designed to be a study platform and a run-up to a full read and write kernel level implementation.

Except udfclient it contains additional utilities:

cd_disect - Display report of disc cd_sessions - Show sessions on disc mmc_format - Format optical disc newfs_udf - Create UDF filesystem on file or a formatted disc udfclient - FTP-like client for UDF filesystem udfdump - Dump information from UDF filesystem

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

sudo apt-get -y install udfclient

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

You can also use apt command to install udfclient.

sudo apt -y install udfclient

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

sudo aptitude install udfclient

Summary

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