How To Install libjnr-x86asm-java on Debian 10
Introduction
In this tutorial we learn how to install libjnr-x86asm-java
on Debian 10.
What is libjnr-x86asm-java
libjnr-x86asm-java is:
This is a pure-java port of asmjit.
AsmJit is complete x86/x64 JIT-Assembler for C++ language. It supports 32/64-bit x86 processors including all usable extensions (FPU, MMX, 3dNow, SSE, SSE2, SSE3 and SSE4) through type-safe API that mimics Intel assembler syntax and eliminates nearly all common mistakes that can be done by developers.
AsmJit contains also high-level code generation classes that can be used as a portable way to create JIT code that should run on all supported architectures. High-level classes can handle various function calling-conventions, register allocation and 32/64-bit mode differences.
AsmJit has been successfully tested by various C++ compilers (including MSVC, GCC and BorlandC++) under all major operating systems (including Windows, Linux and MacOS). AsmJit has been also ported to other programming languages including Java, Delphi and Smalltalk (although these ports are not official part of AsmJit and was developed outside).
There are three methods to install libjnr-x86asm-java
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 libjnr-x86asm-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libjnr-x86asm-java
using apt-get
by running the following command:
sudo apt-get -y install libjnr-x86asm-java
Install libjnr-x86asm-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libjnr-x86asm-java
using apt
by running the following command:
sudo apt -y install libjnr-x86asm-java
Install libjnr-x86asm-java 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 libjnr-x86asm-java
using aptitude
by running the following command:
sudo aptitude -y install libjnr-x86asm-java
How To Uninstall libjnr-x86asm-java on Debian 10
To uninstall only the libjnr-x86asm-java
package we can use the following command:
sudo apt-get remove libjnr-x86asm-java
Uninstall libjnr-x86asm-java And Its Dependencies
To uninstall libjnr-x86asm-java
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libjnr-x86asm-java
Remove libjnr-x86asm-java Configurations and Data
To remove libjnr-x86asm-java
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libjnr-x86asm-java
Remove libjnr-x86asm-java configuration, data, and all of its dependencies
We can use the following command to remove libjnr-x86asm-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libjnr-x86asm-java
Dependencies
libjnr-x86asm-java have the following dependencies:
References
Summary
In this tutorial we learn how to install libjnr-x86asm-java
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.