Skip to content

Installation

FaolanBig edited this page Jan 4, 2025 · 14 revisions

❗ IMPORTANT/WICHTIG ❗

Deutsch (German)

Die Softwarelösung DB-Matcher-v5 kann auf unterschiedliche Arten installiert werden. Lesen Sie diese Seite aufmerksam und entscheiden Sie dann, welcher Weg für Sie der Beste ist (empfohlen: Direkt ausführbar).

English

The software solution DB-Matcher-v5 can be installed in numerous ways. Read this page carefully, then decide which way of installation fits you the best (recommended: Directly executable).

Deutsch (German)

Windows 10/11

ℹ️ DB-Matcher-v5 arbeitet in Windows PowerShell ca. 14% schneller als in cmd.exe

Direkt ausführbar (empfohlen)

  1. Laden Sie das neueste Release unter dem Release Tag herunter (entweder .zip oder .tar.gz)

Für Windows als .zip und .tar.gz

  1. Extrahieren Sie das Archiv (.zip oder .tar.gz) in das gewünschte Zielverzeichnis
  2. Navigieren Sie in das extrahierte Verzeichnis
  3. Führen Sie DB-Matcher-v5.exe aus

Manuelle Installation (Windows 10/11) ohne Git

stellen Sie zunächst sicher, dass Sie das Dotnet SDK installiert haben. Folgen Sie diesen Schritten:

  1. Laden Sie das Repo als .zip-Datei herunter
  2. entpacken Sie es in das gewünschte Verzeichnis
  3. Öffnen Sie ein Terminal in diesem Verzeichnis (entweder cmd.exe oder powershell)
  4. Führen Sie den folgenden Befehl aus (nur bei der ersten Ausführung)

cmd.

dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build

powershell

dotnet add package npoi; dotnet add package SeriLog; dotnet add package SeriLog.Sinks.Console; dotnet add package SeriLog.Sinks.File; dotnet restore; dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly; dotnet run --no-build
  1. Nach der ersten Ausführung kann DB-Matcher-v5 durch einfaches Doppelklicken auf DB-Matcher-v5.exe in .\bin\Debug\net8.0\ oder durch Ausführen des folgenden Befehls in dem Verzeichnis mit DB-Matcher-v5.sln gestartet werden

cmd oder powershell

dotnet run --no-build

Manuelle Installation (Windows 10/11) mit Git

Stellen Sie zunächst sicher, dass Sie das dotnet SDK und git installiert haben Führen Sie dann die folgenden Schritte aus:

  1. Öffnen Sie ein Terminal (entweder cmd.exe oder powershell) in dem Verzeichnis, in dem Sie DB-Matcher-v5 installieren möchten
  2. Kopieren Sie einfach den folgenden Befehl und fügen Sie ihn in das Terminal ein und drücken Sie ENTER

cmd.

git clone https://github.com/FaolanBig/DB-Matcher-v5 && cd \DB-Matcher-v5\ && dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build

powershell

git clone https://github.com/FaolanBig/DB-Matcher-v5; cd \DB-Matcher-v5\; dotnet add package npoi; dotnet add package SeriLog; dotnet add package SeriLog.Sinks.Console; dotnet add package SeriLog.Sinks.File; dotnet restore; dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly; dotnet run --no-build
  1. Nach der ersten Ausführung kann DB-Matcher-v5 durch einfaches Doppelklicken auf DB-Matcher-v5.exe in .\bin\Debug\net8.0\ oder durch Ausführen des folgenden Befehls in dem Verzeichnis mit DB-Matcher-v5.sln gestartet werden

cmd oder powershell

dotnet run --no-build

Linux

Direkt ausführbar (empfohlen)

  1. Laden Sie das neueste Release unter dem Release Tag herunter (entweder .zip oder .tar.gz)

Für Linux als .zip und .tar.gz

  1. Extrahieren Sie das Archiv (.zip oder .tar.gz) in das gewünschte Zielverzeichnis
  2. Navigieren Sie in das extrahierte Verzeichnis
  3. Führen Sie DB-Matcher-v5 aus

Manuelle Installation (Linux) ohne Git

dies wurde auf Debian@Kernel_6.6.0@Xfce_4.18.4 (Kali Linux@Kali_2024.2) und Ubuntu 24.04 LTS getestet

  1. laden Sie das Repo als .zip-Datei herunter
  2. entpacken Sie es in das gewünschte Verzeichnis
  3. Öffnen Sie das Terminal Ihrer Wahl in diesem Verzeichnis
  4. führen Sie den folgenden Befehl aus (nur bei der ersten Ausführung)
dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build
  1. Nach der ersten Ausführung kann DB-Matcher-v5 durch Ausführen des folgenden Befehls in dem Verzeichnis, das DB-Matcher-v5.sln enthält, gestartet werden
dotnet run --no-build

Manuelle Installation (Linux) mit git

dies wurde auf Debian@Kernel_6.6.0@Xfce_4.18.4 (Kali Linux@Kali_2024.2) und Ubuntu 24.04 LTS getestet

  1. Öffnen Sie das Terminal Ihres Rechners in dem Verzeichnis, in dem Sie DB-Matcher-v5 installieren möchten
  2. Kopieren Sie einfach den folgenden Befehl und fügen Sie ihn in das Terminal ein
git clone https://github.com/FaolanBig/DB-Matcher-v5 && cd ./DB-Matcher-v5/ && dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build
  1. Nach der ersten Ausführung kann DB-Matcher-v5 durch Ausführen des folgenden Befehls in dem Verzeichnis, das DB-Matcher-v5.sln enthält, gestartet werden
dotnet run --no-build

English

Windows 10/11

ℹ️ DB-Matcher-v5 works approximately 14% faster in Windows Powershell than in cmd.exe.

Directly executable (recommended)

  1. download the latest release under the Release Tag (either .zip or .tar.gz)

For Windows as .zip and .tar.gz

  1. extract the archive (.zip or .tar.gz) to the desired target directory
  2. navigate to the extracted directory
  3. execute DB-Matcher-v5.exe

Manual installation (Windows 10/11) without git

first of all make shure you have dotnet SDK installed then follow these steps:

  1. download the repo as a .zip file
  2. extract it to the preferred directory
  3. open a terminal in this directory (either cmd.exe or powershell)
  4. execute the following command (only when executing the first time)

cmd

dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build

powershell

dotnet add package npoi; dotnet add package SeriLog; dotnet add package SeriLog.Sinks.Console; dotnet add package SeriLog.Sinks.File; dotnet restore; dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly; dotnet run --no-build
  1. after the first execution DB-Matcher-v5 can be launched by simply double-clicking DB-Matcher-v5.exe in .\bin\Debug\net8.0\ or running the following command in the directory containing DB-Matcher-v5.sln

cmd or powershell

dotnet run --no-build

Manual installation (Windows 10/11) with git

first of all make shure you have dotnet SDK and git installed then follow these steps:

  1. open a terminal (either cmd.exe or powershell) in the directory in which you want to install DB-Matcher-v5
  2. simply copy-and-paste the command below in the terminal and hit ENTER

cmd

git clone https://github.com/FaolanBig/DB-Matcher-v5 && cd \DB-Matcher-v5\ && dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build

powershell

git clone https://github.com/FaolanBig/DB-Matcher-v5; cd \DB-Matcher-v5\; dotnet add package npoi; dotnet add package SeriLog; dotnet add package SeriLog.Sinks.Console; dotnet add package SeriLog.Sinks.File; dotnet restore; dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly; dotnet run --no-build
  1. after the first execution DB-Matcher-v5 can be launched by simply double-clicking DB-Matcher-v5.exe in .\bin\Debug\net8.0\ or running the following command in the directory containing DB-Matcher-v5.sln

cmd or powershell

dotnet run --no-build

Linux

Directly execuable (recommended)

  1. download the latest release under the Release Tag (either .zip or .tar.gz)

For Linux as .zip and .tar.gz

  1. extract the archive (.zip or .tar.gz) to the desired target directory
  2. navigate to the extracted directory
  3. execute DB-Matcher-v5

Manual installation (Linux) without git

this was tested on Debian@Kernel_6.6.0@Xfce_4.18.4 (Kali Linux@Kali_2024.2) and Ubuntu 24.04 LTS

  1. download the repo as a .zip file
  2. extract it to the preferred directory
  3. open the terminal of your choice in this directory
  4. execute the following command (only when executing the first time)
dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build

Manual installation (Linux) with git

this was tested on Debian@Kernel_6.6.0@Xfce_4.18.4 (Kali Linux@Kali_2024.2) and Ubuntu 24.04 LTS

  1. open the terminal of your choice in the directory in which you want to install DB-Matcher-v5
  2. simply copy-and-paste the command below in the terminal and hit
git clone https://github.com/FaolanBig/DB-Matcher-v5 && cd \DB-Matcher-v5\ && dotnet add package npoi && dotnet add package SeriLog && dotnet add package SeriLog.Sinks.Console && dotnet add package SeriLog.Sinks.File && dotnet restore && dotnet build -c Release --nologo -v q --property WarningLevel=0 /clp:ErrorsOnly && dotnet run --no-build
  1. after the first execution DB-Matcher-v5 can be launched by running the following command in the directory containing DB-Matcher-v5.sln
dotnet run --no-build

Clone this wiki locally