amiga-fdisk command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
amiga-fdisk: command not found
or when using sudo you get the following error message
sudo: amiga-fdisk: command not found
Solutions to amiga-fdisk: command not found
How To Fix amiga-fdisk: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu amiga-fdisk is provided by amiga-fdisk-cross package.
amiga-fdisk-cross is:
Amiga-fdisk is, similar to fdisk for PCs, a program to partition harddisks. Though it seems to work quite well, it’s still got some sort of beta status. It’s suggested that you still use the AmigaDOS native tool “HDToolBox” to partition your harddisks and use amiga-fdisk only for querying partition information. This is the version for non-Amiga systems.
To fix this problem, we can install more using the command below.
sudo apt-get -y install amiga-fdisk-cross
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install amiga-fdisk-cross.
sudo apt -y install amiga-fdisk-cross
Or if you have aptitude installed you can use the following command.
sudo aptitude install amiga-fdisk-cross
Summary
In this tutorial we learn how to fix amiga-fdisk command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.