timemachine command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
timemachine: command not found
or when using sudo you get the following error message
sudo: timemachine: command not found
Solutions to timemachine: command not found
How To Fix timemachine: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu timemachine is provided by timemachine package.
timemachine is:
Timemachine writes the last 10 seconds of audio before the button press and everything from now on up to the next button press into a WAV-file.
The idea is that you doodle away with whatever is kicking around in your studio and when you heard an interesting noise, you’d press record and capture it, without having to try and recreate it.
It uses the JACK audio connection kit, an API that lets audio application communicate with each other and share audio data in realtime.
To fix this problem, we can install more using the command below.
sudo apt-get -y install timemachine
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install timemachine.
sudo apt -y install timemachine
Or if you have aptitude installed you can use the following command.
sudo aptitude install timemachine
Summary
In this tutorial we learn how to fix timemachine command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.