File: README.md

package info (click to toggle)
android-udev-rules 0~20250314%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: sh: 29; makefile: 3
file content (71 lines) | stat: -rw-r--r-- 1,848 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# android-udev-rules

## Description

These rules refer to
[Run Apps on a Hardware Device - Android Studio](https://developer.android.com/studio/run/device.html)
and include many suggestions from the Archlinux and Github Communities.

## Installation

### Arch

On Arch it should be enough to follow the
[instructions for connecting a device on the Arch wiki](https://wiki.archlinux.org/index.php/Android_Debug_Bridge).
There's no need to clone this repository.

### Other distros

The following instructions assume that you're using a GNU/Linux distro with
systemd

```sh
# Clone this repository
git clone https://github.com/M0Rf30/android-udev-rules.git
cd android-udev-rules

# Copy rules file
sudo cp -v 51-android.rules /etc/udev/rules.d/51-android.rules

# OR create a sym-link to the rules file - choose this option if you'd like to
# update your udev rules using git.
sudo ln -sf "$PWD"/51-android.rules /etc/udev/rules.d/51-android.rules

# Change file permissions
sudo chmod a+r /etc/udev/rules.d/51-android.rules

# Add the adbusers group if it's doesn't already exist
sudo cp android-udev.conf /usr/lib/sysusers.d/
sudo systemd-sysusers

# Add your user to the adbusers group
sudo gpasswd -a $(whoami) adbusers

# Restart UDEV
sudo udevadm control --reload-rules
sudo systemctl restart systemd-udevd.service

# Restart the ADB server (back to Debian again)
adb kill-server

# Replug your Android device and verify that USB debugging is enabled in
# developer options
adb devices

# You should now see your device
```

### Using the automatic install script

1. Clone this repository
2. Run the `install.sh` as root on your terminal

## To Contribute

1. Fork this repository.
2. Make your edits.
3. TEST THEM!
4. Create a pull request.

You may also want to take a look at the
[wiki](https://github.com/M0Rf30/android-udev-rules/wiki).