Skip to content

Instantly share code, notes, and snippets.

@johnjohndoe
Last active May 22, 2018 00:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnjohndoe/a67d1558d01cb79bf6347beb35722ece to your computer and use it in GitHub Desktop.
Save johnjohndoe/a67d1558d01cb79bf6347beb35722ece to your computer and use it in GitHub Desktop.
How to connect Pico i.MX7 Dual Development Board on Ubuntu

How to connect Pico i.MX7 Dual Development Board on Ubuntu

If you facing the following error message when you try to access your device via adb ...

error: insufficient permissions for device: udev requires plugdev group membership

... then you might find the following tutorial helpful.

1) Create a udev rule for your device

  • Create the file /etc/udev/rules.d/51-android.rules if it does not exist with the following content:
# Pico Pro Maker Kit, Pico i.MX7 Dual Development Board
SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee7", MODE="0660", GROUP="plugdev", SYMLINK+="android%n"%

2) Unplug the device and restart the service

$ systemctl restart udev

3) Test with adb

$ adb devices
List of devices attached 
0000000caf2a5022	device

Related article

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment