ldo65 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ldo65: command not found
or when using sudo you get the following error message
sudo: ldo65: command not found
Solutions to ldo65: command not found
How To Fix ldo65: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ldo65 is provided by xa65 package.
xa65 is:
xa65 is a cross-assembler and utility suite for the 65xx series of 8-bit processors, and the 65816, a 16-bit version of the processor. The 6502 was used in computers such as the Commodore 64, Apple II, and many more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xa65
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xa65.
sudo apt -y install xa65
Or if you have aptitude installed you can use the following command.
sudo aptitude install xa65
Summary
In this tutorial we learn how to fix ldo65 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.