CERCA
PER MODELLO
FullScreen Chatbox! :)

Utente del giorno: 9mm con ben 2 Thanks ricevuti nelle ultime 24 ore
Utente della settimana: elmegio con ben 7 Thanks ricevuti negli ultimi sette giorni
Utente del mese: bluemask con ben 43 Thanks ricevuti nell'ultimo mese

Visualizzazione dei risultati da 1 a 10 su 10
Discussione:

help comando adb nn trovato

Se questa discussione ti è stata utile, ti preghiamo di lasciare un messaggio di feedback in modo che possa essere preziosa in futuro anche per altri utenti come te!
  1. #1
    Baby Droid


    Registrato dal
    Mar 2009
    Messaggi
    15

    Ringraziamenti
    0
    Ringraziato 1 volta in 1 Post
    Exclamation

    help comando adb nn trovato

    help ragazzi sto tentando di sbloccare il dream sto usando mac ma quando uso il comando mi dice ke nn puo trovare il comando adb o provato tutti i comandi di terminale ke sapevo ma nn riesco a far funzionare il comando adb ne quello fastboot naturalmente ho usato il comando cd per entrare in tools

  2.  
  3. #2
    Administrator L'avatar di Andrea


    Registrato dal
    Nov 2008
    Messaggi
    3,368
    Smartphone
    Nexus S, myTouch Slide 4g

    Ringraziamenti
    143
    Ringraziato 880 volte in 323 Posts
    Predefinito

    devi scaricare la sdk di android

    Twitter @veke87

  4. #3
    Androidiano VIP


    Registrato dal
    Mar 2009
    Messaggi
    105

    Ringraziamenti
    0
    Ringraziato 1 volta in 1 Post
    Predefinito

    Qunado estrai l'sdk; all'interno della cartella estratta trovi un'altra directory che si chiama "tools", dentro tools c'è adb

  5. #4
    Administrator L'avatar di Andrea


    Registrato dal
    Nov 2008
    Messaggi
    3,368
    Smartphone
    Nexus S, myTouch Slide 4g

    Ringraziamenti
    143
    Ringraziato 880 volte in 323 Posts
    Predefinito

    Hai risolto?

    Twitter @veke87

  6. #5
    Baby Droid


    Registrato dal
    Mar 2009
    Messaggi
    15

    Ringraziamenti
    0
    Ringraziato 1 volta in 1 Post
    Unhappy

    scusate ero in spiaggia cmq nn sono riuscito ma l sdk l avevo gia scaricata e se lancio adb (quello contenuto in tools) mi vengono fuori una lista di komandi e nn mi permette di fare alkun ke

  7. #6
    Senior Droid


    Registrato dal
    May 2009
    Messaggi
    375

    Ringraziamenti
    6
    Ringraziato 2 volte in 2 Posts
    Predefinito

    Stesso problema.... "adb comand not found" pur essendo nella cartela tools e vedendo il file adb

    Sono su OsX e magic, però il problema è lo stesso
    Ultima modifica di Dream; 21-06-09 alle 23:20

  8. #7
    Androidiano VIP


    Registrato dal
    Mar 2009
    Messaggi
    105

    Ringraziamenti
    0
    Ringraziato 1 volta in 1 Post
    Predefinito

    su OsX devi prima puntare la cartella quindi per richiamare adb devi usare ./ cosi: ./adb

  9. #8
    Senior Droid


    Registrato dal
    May 2009
    Messaggi
    375

    Ringraziamenti
    6
    Ringraziato 2 volte in 2 Posts
    Predefinito

    Quote Originariamente inviato da Rixxo Visualizza il messaggio
    su OsX devi prima puntare la cartella quindi per richiamare adb devi usare ./ cosi: ./adb
    Perfetto, quell'errore non lo da più. Ora c'è solo il piccolo problema che non copia i files sulla sd :P

    la riga di testo: ./adb push androidiani\rootme-signed.zip /sdcard/update.zip

    mi ritorna:

    codice:
    Android Debug Bridge version 1.0.20
    
     -d                            - directs command to the only connected USB device
                                     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 running.
     -s <serial number>            - directs command to the USB device or emulator with
                                     the given serial number
     -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
    
    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
                                     (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] <file> - push this package file to the device and install it
                                     ('-l' means forward-lock the app)
                                     ('-r' means reinstall the app, keeping its data)
      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 help                     - show this help message
      adb version                  - show version num
    
    DATAOPTS:
     (no option)                   - don't touch the data partition
      -w                           - wipe the data partition
      -d                           - flash the data partition
    
    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 specified device
      adb remount                  - remounts the /system partition on the device read-write
      adb root                     - restarts adb with root permissions
    
    networking:
      adb ppp <tty> [parameters]   - Run PPP over USB.
     Note: you should not automatically start a PDP 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 updated.
    
      - If it is "system" or "data", only the corresponding partition
        is updated.

  10. #9
    Androidiano VIP


    Registrato dal
    Mar 2009
    Messaggi
    105

    Ringraziamenti
    0
    Ringraziato 1 volta in 1 Post
    Predefinito

    prova: ./adb push androidiani/rootme-signed.zip /sdcard/update.zip ; copialo e incollalo cosi per com'è.
    Ma androidiani si trova nella cartella tools?

  11. Il seguente Utente ha ringraziato Rixxo per il post:

    Dream (23-06-09)

  12. #10
    Senior Droid


    Registrato dal
    May 2009
    Messaggi
    375

    Ringraziamenti
    6
    Ringraziato 2 volte in 2 Posts
    Predefinito

    Quote Originariamente inviato da Rixxo Visualizza il messaggio
    prova: ./adb push androidiani/rootme-signed.zip /sdcard/update.zip ; copialo e incollalo cosi per com'è.
    Ma androidiani si trova nella cartella tools?
    Grande, la procedura pare riuscita....però il cell al riavvio rimane bloccato sulla schermata android

    :-/

    Edit: era solo lentissimo a partire....

    Devo fare anche questa parte?

    Una volta completamente partito, non ci resta altro che flashare la recovery modificata in modo da poter installare qualunque fw. Dal terminale che avevate lasciato aperto nel pc:
    adb shell flash_image recovery /sdcard/recovery-new.img
    adb remount
    adb push androidiani\Superuser.apk /system/app/Superuser.apk
    Ultima modifica di Dream; 22-06-09 alle 15:29

Discussioni simili

  1. [REQ]Applicazione per rispondere con comando vocale
    Da Mazinkaiser nel forum Le Applicazioni per Android
    Risposte: 3
    Ultimo messaggio: 06-01-10, 10:41
  2. un comando fastboot di troppo e..
    Da ekifox nel forum HTC Dream / Tmobile G1
    Risposte: 6
    Ultimo messaggio: 24-11-09, 16:21
  3. Comando "su"
    Da filippo39 nel forum HTC Dream / Tmobile G1
    Risposte: 13
    Ultimo messaggio: 26-05-09, 18:29
  4. comando flash_image non trovato.
    Da marietto nel forum HTC Dream / Tmobile G1
    Risposte: 5
    Ultimo messaggio: 13-05-09, 23:22

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire risposte
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Torna su
Privacy Policy