How To Install python3-hinawa-utils on Debian 10

Learn how to install python3-hinawa-utils on Debian 10 with this tutorial. python3-hinawa-utils is Utilities to control Audio and Music units on FireWire (IEEE1394)

Introduction

In this tutorial we learn how to install python3-hinawa-utils on Debian 10.

What is python3-hinawa-utils

python3-hinawa-utils is:

hinawa-utils are utilities to control Audio and Music units on FireWire (IEEE1394) and it contains below command line tools.

  • hinawa-bebob-parser
    • Plug structure parser for BeBoB firmware
  • hinawa-config-rom-printer
    • A lexer/parser of configuration ROM on FireWire
  • hinawa-dg00x-cui
    • CUI tool for functionalities of Digidesign Digi 00x family
  • hinawa-dice-common-cui
    • CUI tool for Dice common functionalities
  • hinawa-dice-extension-cui
    • CUI tool for Dice extended functionalities
  • hinawa-fireworks-cui
    • CUI tool for Echo Audio Fireworks module
  • hinawa-focusrite-saffirepro-io-cui
    • CUI tool for Focusrite SaffirePro IO series
  • hinawa-griffin-firewave-cui
    • CUI tool for Griffin Firewave
  • hinawa-lacie-speakers-cui
    • CUI tool for Lacie FireWire speakers
  • hinawa-maudio-bebob-cui
    • CUI tool for M-Audio FireWire series based on BeBoB solution
  • hinawa-motu-common-cui
    • CUI tool for MOTU FireWire series
  • hinawa-oxfw-generic-cui
    • CUI tool for OXFW generic functionalities
  • hinawa-tascam-fireone-cui
    • CUI tool for Tascam FireOne
  • hinawa-tascam-fw-console-cui
    • CUI tool for console models of Tascam FireWire series (FW1082/1884)
  • hinawa-tascam-fw-rack-cui
    • CUI tool for rack models of Tascam FireWire series (FW1804)
  • hinawa-yamaha-terratec-cui
    • CUI tool for Yamaha GO series and Terratec PHASE series

There are three methods to install python3-hinawa-utils on Debian 10. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-hinawa-utils Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-hinawa-utils using apt-get by running the following command:

sudo apt-get -y install python3-hinawa-utils

Install python3-hinawa-utils Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-hinawa-utils using apt by running the following command:

sudo apt -y install python3-hinawa-utils

Install python3-hinawa-utils 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-hinawa-utils using aptitude by running the following command:

sudo aptitude -y install python3-hinawa-utils

How To Uninstall python3-hinawa-utils on Debian 10

To uninstall only the python3-hinawa-utils package we can use the following command:

sudo apt-get remove python3-hinawa-utils

Uninstall python3-hinawa-utils And Its Dependencies

To uninstall python3-hinawa-utils and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove python3-hinawa-utils

Remove python3-hinawa-utils Configurations and Data

To remove python3-hinawa-utils configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge python3-hinawa-utils

Remove python3-hinawa-utils configuration, data, and all of its dependencies

We can use the following command to remove python3-hinawa-utils configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-hinawa-utils

Dependencies

python3-hinawa-utils have the following dependencies:

References

Summary

In this tutorial we learn how to install python3-hinawa-utils package on Debian 10 using different package management tools: apt, apt-get and aptitude.