Fix steps

Jérémy JAMET
2025-07-15 14:27:00 +02:00
parent c4ae6e93c5
commit 9817b3c29e

12
Log.md

@@ -57,17 +57,17 @@ adb logcat -c
2. Create log file:
* For macOS/Linux (using grep):
* MacOS/Linux (using grep):
```bash
adb logcat | grep "com.kunzisoft.keepass" > keepassdx_logs.txt
```
* For Windows (using findstr in Command Prompt):
* Windows (using findstr in Command Prompt):
```bash
adb logcat | findstr "com.kunzisoft.keepass" > keepassdx_logs.txt
```
Note for PowerShell on Windows: PowerShell's Select-String is similar to grep.
* Windows (PowerShell's Select-String is similar to grep):
```bash
adb logcat | Select-String "com.kunzisoft.keepass" > keepassdx_logs.txt
```
@@ -153,7 +153,7 @@ adb devices
Most Linux distributions include ADB/Fastboot in their official repositories, making installation very simple.
1. Open Terminal and type:
#### Debian/Ubuntu-based distributions
* Debian/Ubuntu-based distributions
```bash
sudo apt update
sudo apt install android-sdk-platform-tools-core
@@ -161,12 +161,12 @@ sudo apt install android-sdk-platform-tools-core
_Some older guides might suggest `adb` or `android-tools-adb`, but `android-sdk-platform-tools-core` is generally the correct package for the latest versions._
#### Fedora/SUSE-based distributions
* Fedora/SUSE-based distributions
```bash
sudo dnf install android-tools
```
#### Arch Linux (and derivatives like Manjaro)
* Arch Linux (and derivatives like Manjaro)
```bash
sudo pacman -S android-tools
```