unadf command not found

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

Introduction

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

unadf: command not found

or when using sudo you get the following error message

sudo: unadf: command not found

Solutions to unadf: command not found

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

In Ubuntu unadf is provided by unadf package.

unadf is:

Tool for extracting and listing files in an Amiga Disk File.

Amiga Disk File aka ADF is a file format used by Amiga computers and emulators to store images of disks. ADF is not really a file format but actually a track-by-track dump of the disk data as read by the Amiga operating system, and so the “format” is really fixed-width AmigaDOS data tracks appended one after another and held in a file.

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

sudo apt-get -y install unadf

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

You can also use apt command to install unadf.

sudo apt -y install unadf

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

sudo aptitude install unadf

Summary

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