우분투의 버전을 올리고 나서부터 시스템 세팅이 초기화되어 애를 먹고 있다.
오늘은 fastboot가 안 먹는 상태가 확인됐다... 오랜 기억을 떠올려 방법을 찾아본다.
먼저 lsusb를 쳐 vendor id와 product id를 확인한다.
=================================
$ lsusb
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 005: ID 13d3:3567 IMC Networks Wireless_Device
Bus 003 Device 004: ID 04f2:b760 Chicony Electronics Co., Ltd HP Wide Vision HD Camera
Bus 003 Device 021: ID 18d1:d00d Google Inc. Android
Bus 003 Device 002: ID 192f:0916 Avago Technologies, Pte. USB Optical Mouse
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
================================
요즘 개발중인 장비 아이디가 보인다.
vendor id 05c6. product id 9091이다.
이걸 /etc/udev/rules.d/51-android.rules 에 추가하도록 하자.
$ sudo gedit /etc/udev/rules.d/51-android.rules
SUBSYSTEM=="usb", ATTR{idVendor}=="05c6", MODE="0666", GROUP="plugdev"
이후 다시 로드하도록 하자.
$ sudo udevadm control --reload-rules
끝!