Introduction
In this tutorial we learn how to install supercollider-supernova
on Kali Linux.
What is supercollider-supernova
supercollider-supernova is:
SuperCollider is an environment and programming language for real time
audio synthesis and algorithmic composition. It provides an interpreted
object-oriented language which functions as a network client
to a state of the art, realtime sound synthesis server.
This package contains the multiprocessor aware and parallelization capable
synthesis server supernova. Use of this server is manually enabled via a
Server.supernova call before starting the server. This server does not work
on i486 or i586 processors.
There are three methods to install supercollider-supernova
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 supercollider-supernova Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install supercollider-supernova
using apt-get
by running the following command:
sudo apt-get -y install supercollider-supernova
Install supercollider-supernova Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install supercollider-supernova
using apt
by running the following command:
sudo apt -y install supercollider-supernova
Install supercollider-supernova 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 update
After updating apt database, We can install supercollider-supernova
using aptitude
by running the following command:
sudo aptitude -y install supercollider-supernova
How To Uninstall supercollider-supernova on Kali Linux
To uninstall only the supercollider-supernova
package we can use the following command:
sudo apt-get remove supercollider-supernova
Uninstall supercollider-supernova And Its Dependencies
To uninstall supercollider-supernova
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove supercollider-supernova
Remove supercollider-supernova Configurations and Data
To remove supercollider-supernova
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge supercollider-supernova
Remove supercollider-supernova configuration, data, and all of its dependencies
We can use the following command to remove supercollider-supernova
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge supercollider-supernova
Dependencies
supercollider-supernova have the following dependencies:
- libboost-filesystem1.74.0
- libboost-program-options1.74.0
- libboost-thread1.74.0
- libc6
- libfftw3-single3
- libgcc-s1
- libjack-jackd2-0
- libsndfile1
- libstdc++6
- libx11-6
- jackd
References
Summary
In this tutorial we learn how to install supercollider-supernova
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.