Made README easier to follow along (#178)

* Update README.md

Was a little confused when I first read the instructions. I think this might make things easier to follow along. Hope it helps

* Fixed accidental extra spacing error

* Typo fix
This commit is contained in:
Carlos Castillo 2020-04-26 07:01:12 -04:00 committed by GitHub
parent ecd3a32461
commit a14ebc9c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 5 deletions

View File

@ -17,34 +17,47 @@ On Arch it should be enough to follow the [instructions for connecting a device
# Clone this repository # Clone this repository
git clone https://github.com/M0Rf30/android-udev-rules.git git clone https://github.com/M0Rf30/android-udev-rules.git
cd android-udev-rules cd android-udev-rules
# Copy rules file # Copy rules file
sudo cp -v 51-android.rules /etc/udev/rules.d/51-android.rules 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. # 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 sudo ln -sf "$PWD"/51-android.rules /etc/udev/rules.d/51-android.rules
# Change file permissions # Change file permissions
sudo chmod a+r /etc/udev/rules.d/51-android.rules sudo chmod a+r /etc/udev/rules.d/51-android.rules
# If adbusers group already exists remove old adbusers group # If adbusers group already exists remove old adbusers group
groupdel adbusers groupdel adbusers
# add the adbusers group if it's doesn't already exist # add the adbusers group if it's doesn't already exist
sudo mkdir -p /usr/lib/sysusers.d/ && sudo cp android-udev.conf /usr/lib/sysusers.d/ sudo mkdir -p /usr/lib/sysusers.d/ && sudo cp android-udev.conf /usr/lib/sysusers.d/
sudo systemd-sysusers # (1) sudo systemd-sysusers # (if not Ubuntu 16.04 and Mint 18)
# if Ubuntu 16.04 and Mint 18
sudo groupadd adbusers
# OR on Fedora: # OR on Fedora:
groupadd adbusers groupadd adbusers
# Add your user to the adbusers group
# Add your user to the adbusers group (back to Debian again)
sudo usermod -a -G adbusers $(whoami) sudo usermod -a -G adbusers $(whoami)
# Restart UDEV # Restart UDEV
sudo udevadm control --reload-rules sudo udevadm control --reload-rules
sudo service udev restart sudo service udev restart
# OR on Fedora: # OR on Fedora:
sudo systemctl restart systemd-udevd.service sudo systemctl restart systemd-udevd.service
# Restart the ADB server
# Restart the ADB server (back to Debian again)
adb kill-server adb kill-server
# Replug your Android device and verify that USB debugging is enabled in developer options # Replug your Android device and verify that USB debugging is enabled in developer options
adb devices adb devices
# You should now see your device # You should now see your device
(1) Not available on Ubuntu 16.04 and mint 18, use `sudo groupadd adbusers` instead.
## To Contribute: ## To Contribute:
1. Fork this repository. 1. Fork this repository.