This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find . -name '*so' | xargs strings | grep '^persist.' | |
persist.radio.ims.backcamera | |
persist.media.treble_omx | |
persist.ims.mm_maxqp | |
persist.vendor.qti.telephony.vt_cam_interface | |
persist.vendor.ims.use_modem_time | |
persist.vendor.ims.vt.enableadb | |
persist.vendor.ims.use_mdmtime | |
persist.vendor.ims.get_min_bitrate | |
persist.vendor.ims.enableltr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find . -name '*so' | xargs strings | grep '^persist\.' | |
persist.camera.pproc.debug.mask | |
persist.camera.dumpmetadata | |
persist.camera.pproc.debug.mask | |
persist.rmnet.data.enable | |
persist.data.netmgrd.qos.enable | |
persist.data.qmi.adb_logmask | |
persist.camera.imglib.dump | |
persist.camera.mobicat | |
persist.bluetooth.a4wp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ find . -name '*so' | xargs strings | grep 'persist.radio' | |
persist.radio.voice.modem.index | |
persist.radio.multisim.config | |
persist.radio.ignore_ims_wlan | |
persist.radio.sglte_csfb | |
persist.radio.multisim.config | |
persist.radio.rat_on | |
persist.radio.kddi_hold_answ_on | |
persist.radio.ims_retry_3gpp | |
persist.radio.ims_retry_3gpp2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shopt -s dotglob | |
sudo adduser adithya --disabled-password --gecos "" | |
sudo gpasswd -a adithya sudo | |
sudo mkdir /home/adithya/.ssh | |
sudo chmod 700 /home/adithya/.ssh/ | |
sudo sh -c "echo 'adithya ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers" | |
# Now copy paste ssh pubkey here | |
nano /home/adithya/.ssh/authorized_keys |
NewerOlder