Posts: 218
Threads: 12
Joined: Feb 2018
Reputation:
5
Incase you're wondering what the ADB commands are for, here's a quick explanation
1. "ADB shell" and "SU"
adb commands to open root in adb window
2. echo 0 > /proc/sys/kernel/kptr_restrict
There is a restriction in kernel to dump symbols. This command removes the restriction
3. cat /proc/kallsyms >/sdcard/symbl.txt
cat command reads the contents of "kallsyms" and then outputs the contents into a new file "symbl.txt"
4. cat /proc/kallsyms | grep tpd_i2c_probe
cat command reads the contents of kallsyms then grep command searches for "tpd_i2c_probe" & filters the rest away and outputs any line containing "tpd_i2c_probe"
5. Exit
this command terminates and returns a level below. e.g going from 'root #' to 'shell $' OR from 'shell $' to 'adb'
6. adb pull /*****
adb command for copying files from phone to PC
Sent from my Titanium Vista 4G using Tapatalk
(This post was last modified: 30-03-2019, 01:53 PM by
X3non.)