Go Back   Android Forums > Android Phones > Virgin Mobile Venture > Venture - All Things Root
Gamers - Check out our new sister sites!
Nintendo Wii U!    |    OUYA - $99 Android System!

test: Reply
 
LinkBack Thread Tools
Old September 29th, 2012, 01:24 PM   #1 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Mar 2012
Gender: Male
Posts: 43
 
Device(s): Htc ONE V
Carrier: Virgin Mobile USA

Thanks: 7
Thanked 1 Time in 1 Post
Notsure PCD venture is not connecting.

I am trying to use cwm on the phone but i would have to use adb and everytime i try to connect my phone with usb debugging on it will say on adb "error device not found" Please help!

gamingwiz is offline  
Reply With Quote
Sponsors
Old September 30th, 2012, 09:27 AM   #2 (permalink)
Member
 
Join Date: Jul 2012
Location: wisconsin
Gender: Male
Posts: 172
 
Device(s): HTC EVO V 4G/3D *AND* Venture
Carrier: Virgin Mobile

Thanks: 50
Thanked 13 Times in 10 Posts
Default

Quote:
Originally Posted by gamingwiz View Post
I am trying to use cwm on the phone but i would have to use adb and everytime i try to connect my phone with usb debugging on it will say on adb "error device not found" Please help!

tell me, do you have the required adb drivers? i.e pda net?
Download PdaNet <this is the DL for pda net, make sure to read all about the requirements, like service pack 2 if your running xp.
more so, make sure that your phone is connected securely.
couple questions:
did the computer install drivers of its own when you first plugged the phone in? and was it successful, as in, can you copy to the sd card?
maybe check your device manager with your phone plugged in and see if there is any problems there.
varenHjames is offline  
Reply With Quote
Old September 30th, 2012, 08:54 PM   #3 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Mar 2012
Gender: Male
Posts: 43
 
Device(s): Htc ONE V
Carrier: Virgin Mobile USA

Thanks: 7
Thanked 1 Time in 1 Post
Default

It let me copy to sd but when I put usb debugging on it says did not install then i went to device manager and it said JukeB not installed, and I cannot connect to adb
gamingwiz is offline  
Reply With Quote
Old September 30th, 2012, 09:06 PM   #4 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Mar 2012
Gender: Male
Posts: 43
 
Device(s): Htc ONE V
Carrier: Virgin Mobile USA

Thanks: 7
Thanked 1 Time in 1 Post
Default

well nvm thanks it works
gamingwiz is offline  
Reply With Quote
Old September 30th, 2012, 09:14 PM   #5 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Mar 2012
Gender: Male
Posts: 43
 
Device(s): Htc ONE V
Carrier: Virgin Mobile USA

Thanks: 7
Thanked 1 Time in 1 Post
Default

sorry i got it connecting but this is what cmd says ""Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.

C:\Users\Tammy>cd..\

C:\Users>cd..

C:\>android-sdk-windows
'android-sdk-windows' is not recognized as an internal or external command,
operable program or batch file.

C:\>cd android-sdl-windows
The system cannot find the path specified.

C:\>cd android-sdk-windows

C:\android-sdk-windows>cd platform-tools

C:\android-sdk-windows\platform-tools>adb
Android Debug Bridge version 1.0.29

-d - directs command to the only connected USB devic
e
returns an error if more than one USB device is
present.
-e - directs command to the only running emulator.
returns an error if more than one emulator is r
unning.
-s <serial number> - directs command to the USB device or emulator w
ith
the given serial number. Overrides ANDROID_SERI
AL
environment variable.
-p <product name or path> - simple product name like 'sooner', or
a relative/absolute path to a product
out directory like 'out/target/product/sooner'.

If -p is not specified, the ANDROID_PRODUCT_OUT

environment variable is used, which must
be an absolute path.
devices - list all connected devices
connect <host>[:<port>] - connect to a device via TCP/IP
Port 5555 is used by default if no port number
is specified.
disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
Port 5555 is used by default if no port number
is specified.
Using this command with no additional arguments

will disconnect from all connected TCP/IP devic
es.

device commands:
adb push <local> <remote> - copy file/dir to device
adb pull <remote> [<local>] - copy file/dir from device
adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb jdwp - list PIDs of processes hosting a JDWP transport

adb install [-l] [-r] [-s] [--algo <algorithm name> --key <hex-encoded key> --
iv <hex-encoded iv>] <file>
- push this package file to the device and instal
l it
('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data
)
('-s' means install on SD card instead of inter
nal storage)
('--algo', '--key', and '--iv' mean the file is
encrypted already)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories
)
adb bugreport - return all information from the device
that should be included in a bug report.

adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|-nosy
stem] [<packages...>]
- write an archive of the device's data to <file>
.
If no -f option is supplied then the data is wr
itten
to "backup.ab" in the current directory.
(-apk|-noapk enable/disable backup of the .apks
themselves
in the archive; the default is noapk.)
(-shared|-noshared enable/disable backup of the
device's
shared storage / SD card contents; the defau
lt is noshared.)
(-all means to back up all installed applicatio
ns)
(-system|-nosystem toggles whether -all automat
ically includes
system applications; the default is to inclu
de system apps)
(<packages...> is the list of applications to b
e backed up. If
the -all or -shared flags are passed, then t
he package
list is optional. Applications explicitly g
iven on the
command line will be included even if -nosys
tem would
ordinarily cause them to be omitted.)

adb restore <file> - restore device contents from the <file> backup
archive

adb help - show this help message
adb version - show version num

scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb status-window - continuously print device status for a specifie
d device
adb remount - remounts the /system partition on the device re
ad-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the boo
tloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on th
e specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
<localdir> can be interpreted in several ways:

- If <directory> is not specified, both /system and /data partitions will be u
pdated.

- If it is "system" or "data", only the corresponding partition
is updated.

environmental variables:
ADB_TRACE - Print debug information. A comma separated list
of the following values
1 or all, adb, sockets, packets, rwx, usb, sync
, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes prior
ity over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these de
bug tags are printed.

C:\android-sdk-windows\platform-tools>adb push flash_image /data/local/tmp/flash
_image
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
error: device not found

C:\android-sdk-windows\platform-tools>adb push CWM-Recovery.img /data/local/tmp/
recovery.img
error: device not found

C:\android-sdk-windows\platform-tools>adb shell chmod 755 /data/local/tmp/flash_
image
error: device not found

C:\android-sdk-windows\platform-tools>adb shell
error: device not found

C:\android-sdk-windows\platform-tools>su
'su' is not recognized as an internal or external command,
operable program or batch file.

C:\android-sdk-windows\platform-tools>/data/local/tmp/flash_image recovery /data
/local/tmp/recovery.imgadb push flash_image /data/local/tmp/flash_image
The system cannot find the path specified.

C:\android-sdk-windows\platform-tools>adb push CWM-Recovery.img /data/local/tmp/
recovery.img
cannot stat 'CWM-Recovery.img': No such file or directory

C:\android-sdk-windows\platform-tools>adb shell chmod 755 /data/local/tmp/flash_
image
Unable to chmod /data/local/tmp/flash_image: No such file or directory

C:\android-sdk-windows\platform-tools>adb shell
su
/data/local/tmp/flash_image recovery /data/local/tmp/recovery.img$ su
# adb push flash_image /data/local/tmp/flash_image
adb push CWM-Recovery.img /data/local/tmp/recovery.img
adb shell chmod 755 /data/local/tmp/flash_image
adb shell
su
/data/local/tmp/flash_image recovery /data/local/tmp/recovery.img/data/local/tmp
/flash_image recovery /data/local/tmp/recovery.imgadb push flash_image /data/loc
al/tmp/flash_image
/data/local/tmp/flash_image: not found
# adb push CWM-Recovery.img /data/local/tmp/recovery.img
adb: not found
# adb shell chmod 755 /data/local/tmp/flash_image
adb: not found
# adb shell
adb: not found
# su
#""
gamingwiz is offline  
Reply With Quote
Old October 1st, 2012, 06:15 AM   #6 (permalink)
Member
 
Join Date: Jul 2012
Location: wisconsin
Gender: Male
Posts: 172
 
Device(s): HTC EVO V 4G/3D *AND* Venture
Carrier: Virgin Mobile

Thanks: 50
Thanked 13 Times in 10 Posts
Default

turn on debugging, turn OFF mass storage. then try. also before doing all that work just type in... adb devices .... if it shows up as a single string of seemingly random numbers your good to go.
varenHjames is offline  
Reply With Quote
Old October 1st, 2012, 06:15 AM   #7 (permalink)
Member
 
Join Date: Jul 2012
Location: wisconsin
Gender: Male
Posts: 172
 
Device(s): HTC EVO V 4G/3D *AND* Venture
Carrier: Virgin Mobile

Thanks: 50
Thanked 13 Times in 10 Posts
Default

also, do you have pda net drivers installed? i didnt see you saying you did.
varenHjames is offline  
Reply With Quote
Old October 5th, 2012, 02:07 PM   #8 (permalink)
Junior Member
Thread Author (OP)
 
Join Date: Mar 2012
Gender: Male
Posts: 43
 
Device(s): Htc ONE V
Carrier: Virgin Mobile USA

Thanks: 7
Thanked 1 Time in 1 Post
Default

yeah, thanks i got it on there
gamingwiz is offline  
Reply With Quote
Reply


Go Back   Android Forums > Android Phones > Virgin Mobile Venture > Venture - All Things Root
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 06:58 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.