How To Install goldencheetah on Kali Linux
Introduction
In this tutorial we learn how to install goldencheetah on Kali Linux.
What is goldencheetah
goldencheetah is:
GoldenCheetah is a software package that:
- Provides a rich set of analysis tools, including a critical power graph, BikeScore calculation, histogram analysis, a best interval finder, and a pedal force versus pedal velocity chart, to name just a few.
- Downloads ride data directly from supported devices.
- Imports ride data downloaded with other programs, including TrainingPeaks WKO+ and the manufacturers’ software for the Ergomo, Garmin, Polar, PowerTap, and SRM devices.
There are three methods to install goldencheetah on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install goldencheetah Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install goldencheetah using apt-get by running the following command:
sudo apt-get -y install goldencheetahInstall goldencheetah Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install goldencheetah using apt by running the following command:
sudo apt -y install goldencheetahInstall goldencheetah Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install goldencheetah using aptitude by running the following command:
sudo aptitude -y install goldencheetahHow To Uninstall goldencheetah on Kali Linux
To uninstall only the goldencheetah package we can use the following command:
sudo apt-get remove goldencheetahUninstall goldencheetah And Its Dependencies
To uninstall goldencheetah and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove goldencheetahRemove goldencheetah Configurations and Data
To remove goldencheetah configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge goldencheetahRemove goldencheetah configuration, data, and all of its dependencies
We can use the following command to remove goldencheetah configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge goldencheetahDependencies
goldencheetah have the following dependencies:
- libc6
- libgcc-s1
- libical3
- libkmlbase1
- libkmldom1
- libqt5bluetooth5
- libqt5charts5
- libqt5concurrent5
- libqt5core5a
- libqt5gui5
- libqt5multimedia5
- libqt5network5
- libqt5opengl5
- libqt5serialport5
- libqt5sql5
- libqt5svg5
- libqt5webkit5
- libqt5widgets5
- libqt5xml5
- libstdc++6
- libusb-0.1-4
References
Summary
In this tutorial we learn how to install goldencheetah package on Kali Linux using different package management tools: apt, apt-get and aptitude.