enable adb connection for Ulefone Power phone on Linux

posted by on 2017.05.31, under android, linux
31:

As I wasn’t able to find this in a single spot in the net… (maybe my google-foo is rusty)

  1. enable adb on the phone and set USB mode to PTP
  2. add a rule to /etc/udev/rules.d/51-android.rules:
    
    SUBSYSTEM=="usb", ATTRS{idVendor}=="0e8d", MODE="0666", GROUP="plugdev", SYMLINK+="android%n"
    

  3. add vendor to ~/.android/adb_usb.ini:
    
    0x0e8d
  4. Reload udev-rules and restart adb server…
    sudo udevadm control --reload-rules
    adb kill-server && adb start-server
    
  5. check if the device is now accessible via adb…
    adb devices -l
    List of devices attached 
    ZHD*********BAZS       device usb:1-5 product:power model:Power device:hct6753_65u_m0

Comments are closed.

pagetop