How To Install subunit2sql-db-manage-3.7 on Kali Linux
In this guide, we’ll discuss How To Install subunit2sql-db-manage-3.7 on Kali Linux.
Also, we will demonstrate how to uninstall and update
subunit2sql-db-manage-3.7
.
One-liner install command
For those in a hurry, here's a one-line installation command:
sudo apt-get update && sudo apt -y install python3-subunit2sql
But if you are interested in the detailed steps with descriptions, the following information is for you.
What is subunit2sql-db-manage-3.7
and what are
the ways to install it?
Short description: subunit file/stream to DB - Python 3.x
Before beginning this tutorial, you will need access to a server or computer running Kali Linux. This guide was written specifically with a server running Kali Linux in mind, although it should also work on older, supported versions of the operating system.
Also, make sure you are running a regular, non-root user with sudo privileges configured on your server. When you have an account available, log in as your non-root user to begin.
There are several ways to install subunit2sql-db-manage-3.7 on Kali Linux. You can use (links are clickable):
In the following sections, we will describe each method in detail. You can choose one of them or refer to the recommended one.
Install subunit2sql-db-manage-3.7 using apt-get
First, update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt-get
database,
You can install subunit2sql-db-manage-3.7 using apt
by running the
following command:
sudo apt -y install python3-subunit2sql
Install subunit2sql-db-manage-3.7 using apt
Because subunit2sql-db-manage-3.7 is available in Kali Linux’s default repositories, it is possible to install it from these repositories using the apt packaging system.
To begin, update apt database with apt
using the following command.
sudo apt update
After updating apt
database,
You can install subunit2sql-db-manage-3.7 using apt
by running the
following command:
sudo apt -y install python3-subunit2sql
Install subunit2sql-db-manage-3.7 using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude update
After updating aptitude
database,
You can install subunit2sql-db-manage-3.7 by running the following command:
sudo aptitude -y install python3-subunit2sql
How to upgrade (update) a single package subunit2sql-db-manage-3.7 using apt-get?
First, you will need to update packages index. Run update
command as
usual:
sudo apt-get update
Next, to upgrade only the subunit2sql-db-manage-3.7, e.g. single package, you should use the following format with the apt-get command/apt command:
sudo apt-get --only-upgrade install python3-subunit2sql
Note that this command will not install any new packages! If you wish to install the
package if it doesn't exist you may leave out --only-upgrade
part.
It's Good to Know:
sudo apt-get install python3-subunit2sql
This will upgrade the package even if is already installed.
How To Uninstall subunit2sql-db-manage-3.7 from Kali Linux
To uninstall only the subunit2sql-db-manage-3.7
package you can execute
the
following command:
sudo apt-get remove python3-subunit2sql
Uninstall subunit2sql-db-manage-3.7 and all its dependencies
To uninstall subunit2sql-db-manage-3.7 and its dependencies that are no longer needed by Kali Linux, you can use the command below:
sudo apt-get -y autoremove python3-subunit2sql
Remove subunit2sql-db-manage-3.7 with all configurations and data
To remove subunit2sql-db-manage-3.7 configuration and data
from your system you can run the following purge
command:
sudo apt-get -y purge python3-subunit2sql
Remove subunit2sql-db-manage-3.7 completely (configurations, data and all of its dependencies)
And lastly, you can run the next command to remove absolutely everything related to subunit2sql-db-manage-3.7 package, e.g.: configurations, data and all of its dependencies. Just use this command:
sudo apt-get -y autoremove --purge python3-subunit2sql
Extra info and code examples
subunit2SQL is a tool for storing test results data in a SQL database. Like it's name implies it was originally designed around converting subunit streams to data in a SQL database and the packaged utilities assume a subunit stream as the input format. However, the data model used for the DB does not preclude using any test result format. Additionally the analysis tooling built on top of a database is data format agnostic. However if you choose to use a different result format as an input for the database additional tooling using the DB API would need to be created to parse a different test result output format. It's also worth pointing out that subunit has several language library bindings available. So as a user you could create a small filter to convert a different format to subunit. Creating a filter should be fairly easy and then you don't have to worry about writing a tool like :ref:`subunit2sql` to use a different format. For multiple distributed test runs that are generating subunit output it is useful to store the results in a unified repository. This is the motivation for the testrepository project which does a good job for centralizing the results from multiple test runs. However, imagine something like the OpenStack CI system where the same basic test suite is normally run several hundreds of times a day. To provide useful introspection on the data from those runs and to build trends over time the test results need to be stored in a format that allows for easy querying. Using a SQL database makes a lot of sense for doing this, which was the original motivation for the project. At a high level subunit2SQL uses alembic migrations to setup a DB schema that can then be used by the subunit2sql tool to parse subunit streams and populate the DB. Then there are tools for interacting with the stored data in the subunit2sql-graph command as well as the sql2subunit command to create a subunit stream from data in the database. Additionally, subunit2sql provides a Python DB API that can be used to query information from the stored data to build other tooling. This package contains the Python 3.x module.
- Maintainer: Debian OpenStack
- Sources url: https://github.com/openstack-infra/subunit2sql
- Section/Category: python
Conclusion
You now have a full guide on how to install subunit2sql-db-manage-3.7
using apt, apt-get and aptitude tools.
Also, we showed how to update as a single package and different ways to uninstall
the subunit2sql-db-manage-3.7 from Kali Linux.