refactor: update titles and descriptions to use double quotes for consistency

fix: add newlines and formatting improvements in blog posts

refactor: update import paths to use alias for better readability

style: update global CSS to use double quotes for consistency

chore: update tsconfig to include path aliasing for cleaner imports
This commit is contained in:
fiatcode 2026-01-22 17:20:59 +07:00
parent 05dfaed605
commit 33083907fb
22 changed files with 618 additions and 490 deletions

View file

@ -1,6 +1,6 @@
---
title: 'Fix ADB Insufficient Permission'
description: 'udev rules for fixing ADB Insufficient permission in Linux'
title: "Fix ADB Insufficient Permission"
description: "udev rules for fixing ADB Insufficient permission in Linux"
date: 2025-02-24T11:29:30+07:00
draft: false
tags:
@ -10,6 +10,7 @@ tags:
---
# Why need this?
Connecting an Android device to a Linux computer could has problem with permission. Listing devices with `adb devices` might show `unauthorized` status or `insufficient permission` error message.
```bash
@ -33,7 +34,7 @@ $ lsusb
Bus 001 Device 005: ID 18d1:4ee7 Google Inc. Nexus/Pixel Device
```
`18d1` is *vendor id* and `4ee7` is the *product id*.
`18d1` is _vendor id_ and `4ee7` is the _product id_.
2. Create an `udev` rule for this device, I create mine in `/etc/udev/rules.d/51-android.rules`.