Can anyone please tell me what for this setting is for?
Can i change it to?
settings.secure.doze_enable=1
This setting is at /system>Emui>Base>xml>hw_defaults.xml
Thank you in advance
It's changed using ADB command
Related
edit plz remove this. Thank you
I've tried searching, but cant find a way to change my root password. Is it possible? If so, how? Thanks!
RalyDSM said:
I've tried searching, but cant find a way to change my root password. Is it possible? If so, how? Thanks!
Click to expand...
Click to collapse
I would assume since it's *nix based that it's just the *nix command. That being "passwd" hope that helps.
I.E)
Code:
C:\android-sdk\tools\>adb shell
$ su -
# passwd
Type current password:
Type new password:
Confirm new password:
Password changed
Hope that helps. I also hope it actually works.
In theory, it should.
Does anybody have any good info or a list of commands we can use in ADB without root access? I am not clear if this is strictly an App developer tool when root access is not allowed or if there are still commands we can use to interact with our phones. Thanks for any commands posted in advance!
Just type adb and it will give you a list of commands, if you try to do anything that requires root it will tell you that you can't do it.
I think this should be in general also.
Sent from my ADR6300 using Tapatalk
Actually this has to do with Android development. Thank you for the refresh I forgot you could just type that in to get the commands.
I am so close to use Tmobile GT as a phone but one hurdle is i don't know how to use hex editor or adb shell method. Please give advice me on this, if it's already answer please give the link for the thread. Thanks
I read a thread,it's DT for Cypress.
It says:
- run the following command
Code:insmod /system/lib/modules/ax8mt.ko
But I don't know how to run the command.Who can tell me what should I do?
sorry for my bad English and thanks for answering
Gourcuff said:
I read a thread,it's DT for Cypress.
It says:
- run the following command
Code:insmod /system/lib/modules/ax8mt.ko
But I don't know how to run the command.Who can tell me what should I do?
sorry for my bad English and thanks for answering
Click to expand...
Click to collapse
i think it says u run it using dmesg in shell
EDIT:
use command prompt
go to ur adb folder
type in:
adb shell dmseg
and don't forget to write the "su"
_________________________________________
end line -------> correct me if I'm wrong...
thanks for answering and I have solved the problem.
or if you want to be easy
using adb,, on page 3 u can see it
Please help me... I've got a similar problem.
I just enabled multitouch for my x8.
In order to enable it I use these commands at terminal emulator:
su (enter)
insmod /system/lib/modules/ax8mt.ko (enter)
I don't want to make multitouch running on startup (so I haven't changed my hw_config.sh) because of an annoying bug... the screen shuts down after several seconds as if I weren't touching it at all!
Can I create a *.sh file with these commands (su and insmod...) so that I can run it everytime I need to enable multitouch instead of writing them in the terminal?
I created and executed (with root explorer) a *.sh file with these exact lines but it didn't work. What did I do wrong? Should I write it differently in the *.sh file?