[HELP] ADB cannot find my ville C2!

Search This thread

xQubee5o3

Senior Member
Sep 3, 2013
134
76
Duisburg
Hey guys.

So far, I am working on Ubuntu 13.10 to install Ubuntu touch on my device.
Guys, this is my problem, what is raging me, because it's just a question of drivers -.-

Code:
hal5000@HAL-5000:~/development/android-sdk-linux/platform-tools$ adb devices
List of devices attached 
SH265W------	offline

I cannot find my device.
Can anyone help me to fix this?
In bootloader, I cannot do any adb commands, because my terminal is always showing me this:

Code:
hal5000@HAL-5000:~$ adb kill-server
hal5000@HAL-5000:~$ adb start-server
* daemon not running. starting it now on port 5037 *

* daemon started successfully *
hal5000@HAL-5000:~$ 
hal5000@HAL-5000:~$ cd ~/development/android-sdk-linux/platform-tools
hal5000@HAL-5000:~/development/android-sdk-linux/platform-tools$ ubuntu-device-flash --channel=devel --bootstrap
2014/06/17 17:10:48 Expecting the device to be in the bootloader... waiting

I have updatet my SDK and my adb is full-updated.
Please help me as fast as you can.. (I'm a little bit noobish on ubuntu)

Greetz
Mii La Bee <3
 

Black SpideR

Member
Mar 29, 2010
10
3
Try running adb under root:
Code:
sudo adb kill-server
adb kill-server
sudo adb start-server

AND/OR:

Run:
Code:
lsusb

Output example:
Code:
Bus 002 Device 103: ID [COLOR="Red"]04e8[/COLOR]:[COLOR="Blue"]6860[/COLOR] Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II]

Create new rules file (/lib/udev/rules.d/10-adb.rules), and add this rule to it (edit it with the correct information):
Code:
# ADB
SUBSYSTEM=="usb", ATTR{idVendor}=="[COLOR="Red"]04e8[/COLOR]", ATTR{idProduct}=="[COLOR="Blue"]6860[/COLOR]", MODE="0600", OWNER="[COLOR="Cyan"]your_username[/COLOR]"

Then restart udev (udevadm control --reload-rules) or reboot your computer.
 
Last edited:
  • Like
Reactions: xQubee5o3

xQubee5o3

Senior Member
Sep 3, 2013
134
76
Duisburg
Try running adb under root:
Code:
sudo adb kill-server
adb kill-server
sudo adb start-server

AND/OR:

Run:
Code:
lsusb

Output example:
Code:
Bus 002 Device 103: ID [COLOR="Red"]04e8[/COLOR]:[COLOR="Blue"]6860[/COLOR] Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II]

Create new rules file (/lib/udev/rules.d/10-adb.rules), and add this rule to it (edit it with the correct information):
Code:
# ADB
SUBSYSTEM=="usb", ATTR{idVendor}=="[COLOR="Red"]04e8[/COLOR]", ATTR{idProduct}=="[COLOR="Blue"]6860[/COLOR]", MODE="0600", OWNER="[COLOR="Cyan"]your_username[/COLOR]"

Then restart udev (udevadm control --reload-rules) or reboot your computer.

Thanks.
Will try it soon.. I punched my PC.. so ... xD yea we have to wait..

Sent from my Bee-Phone using Honey. Greetz! Mii La Bee. <3
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    Try running adb under root:
    Code:
    sudo adb kill-server
    adb kill-server
    sudo adb start-server

    AND/OR:

    Run:
    Code:
    lsusb

    Output example:
    Code:
    Bus 002 Device 103: ID [COLOR="Red"]04e8[/COLOR]:[COLOR="Blue"]6860[/COLOR] Samsung Electronics Co., Ltd GT-I9100 Phone [Galaxy S II]

    Create new rules file (/lib/udev/rules.d/10-adb.rules), and add this rule to it (edit it with the correct information):
    Code:
    # ADB
    SUBSYSTEM=="usb", ATTR{idVendor}=="[COLOR="Red"]04e8[/COLOR]", ATTR{idProduct}=="[COLOR="Blue"]6860[/COLOR]", MODE="0600", OWNER="[COLOR="Cyan"]your_username[/COLOR]"

    Then restart udev (udevadm control --reload-rules) or reboot your computer.