mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Fix steps
12
Log.md
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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user