Skip to content

Installation

FaolanBig edited this page Aug 1, 2024 · 14 revisions

Deutsch (German)

Windows 10/11

Direkt ausführbar

  1. Laden Sie das neueste Release unter dem Release Tag herunter (entweder .zip oder .7z)
  2. Extrahieren Sie das Archiv (.zip oder .7z) in das gewünschte Zielverzeichnis
  3. Navigieren Sie in das extrahierte Verzeichnis
  4. 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 && copy .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run

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; copy .\recoveryMenu.txt .\bin\Debug\net8.0\; dotnet run
  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

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 && copy .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run

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; copy .\recoveryMenu.txt .\bin\Debug\net8.0\; dotnet run
  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

Linux

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 && cp ./recoveryMenu.txt ./bin\Debug/net8.0/ && dotnet run
  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

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 && cp ./recoveryMenu.txt ./bin/Debug/net8.0/ && dotnet run
  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

English

Windows 10/11

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 && copy .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run

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; copy .\recoveryMenu.txt .\bin\Debug\net8.0\; dotnet run
  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

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 && copy .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run

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; copy .\recoveryMenu.txt .\bin\Debug\net8.0\; dotnet run
  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

Linux

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 && cp .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run

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 coice 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 && cp .\recoveryMenu.txt .\bin\Debug\net8.0\ && dotnet run
  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

Clone this wiki locally