QNA > Q > Qual È Il Significato Di Dare L'accesso Di Root Ad Adb?

Qual è il significato di dare l'accesso di root ad ADB?

ADB sta per Android Debug Bridge. Questa è la forma letterale completa di ADB.

ADB è uno strumento o un ponte intermedio che aiuta gli sviluppatori a eseguire il debug di un'applicazione in esecuzione sul dispositivo Android da un pc collegato tramite un cavo USB.

Quando si esegue il rooting di un dispositivo Android normalmente è necessario flashare una recovery personalizzata come TWRP o CWM in modo da poter installare i file di root attraverso la recovery personalizzata in quanto la recovery stock che viene fornita con il software originale del telefono non ha queste funzionalità. Quindi usando i comandi adb flashiamo una custom recovery e poi attraverso la recovery possiamo installare i file di root

Vedrai un'opzione chiamata USB Debugging che dovrebbe essere attivata per essere in grado di inviare comandi al telefono cellulare per fare certe cose

per esempio:

  1. adb reboot bootloader // this will reboot your phone into bootloader mode 
  2. adb devices // this will show you the status of the device whether connected or not 
  3. adb push // to copy something to your phone 
  4. adb pull // to copy something from your phone 

Now after rooting your phone if you are giving root access to ADB, this means you can give root commands from adb shell through USB cable. Root non è altro che un utente con più privilegi. To be a user with root permissions from ADB first you have to use the command

  1. adb root // this will start adb with root permissions 

after starting as root user you can use commands which are valid, only if you are a root user will start working.

So giving root access to ADB in your phone will do no harm to your phone

Hope that helps you in understanding!

Di Roeser

Cosa devo fare se il mio Samsung Galaxy Tab 10.1 non si accende? :: È possibile collegare una tastiera e un mouse a un telefono e usarlo in Fortnite mobile?
Link utili