Alright guys, I was on an irc channel when I considered posting this since it's rather important. There has been a lot of disappointing posts all over the forum with people complaining about bugs, while not providing any kind of information for the developers aside from "X doesn't work" or "I get random reboots".
Well, without the proper knowledge, how are we going to fix it? We don't know what kernel you may be running, what version number you're on, or any information that the system spits out to let you know there's an error. So, I decided to start this thread, to hopefully teach newbies how to give us (developers) proper knowledge when complaining about issues.
This thread will have 3 sections, Logcat (App / system debug log.), Dmesg (active kernel output) and last_ksmg (Typically if you get a random reboot or something of that sort {this is the same as dmesg except it gets the info from the last shutdown [like a kernel panic]})
Section 1: Logcat
This log should almost always be included just because it provides more info than just saying something doesn't work. It will essentially tell you which apps are crashing and why and it also gives output of what they're doing. (Your system is running through apps, the dialer, wireless radio's, etc are all ran through apps.) so, if something is general, like a system force close, please just include a logcat.
How to get a logcat:
Well, this is REALLY simple, all you need to do is just get adb up and running (google how to do that, I don't feel like writing a 'how to use adb' tutorial for everyone's phone.) and then type
Code:
adb logcat
then you just right click, select, and paste to the thread. It's really that simple!
Section 2: Dmesg
This is getting into issues such as wifi not working, sleep of death, etc. Basically, things that make us go "OH F***" when we use our devices. Note: You will need adb access for this to work, same as logcat.
What this will do is get us live kernel output so we can know things like "What driver is the kernel loading {or not loading for that matter}" and similar things. This is linux, so kernel output is important if a hardware aspect isn't working right.
How to get a dmesg:
This is simple as well, no matter what operating system you're on (mac, windows, linux) just type
Code:
adb shell dmesg > dmesg.txt
and then it will have written the output to a .txt file in your current directory. Either paste the contents to the thread, or attach it to your post.
You can also get the dmesg by using terminal emulator. Instead though, you dont type adb shell, you need to also include it to somewhere you will be able to save it. Like /sdcard so, the command goes
Code:
dmesg > /sdcard/dmesg.txt
Just get it off your sdcard and get the contents to the developer!
Section 3: last_kmsg
Ok, the last thing is last_kmsg. When android kernels crash, they right to last_kmsg so then you can find out what's going on. This is usually for issues such as random reboots and other various kernel panic symptoms. A kernel panic happens when the kernel tries to do something it can't. It doesn't mean wrong permissions, it could just have errored out on something and died which can cause a few things. Anyway, developers REALLY need this if debugging a kernel because it gives us a viable way to see WHAT it's trying to do instead of trying to guess what it is trying to do
How to get a last_kmsg:
This is super simple and the same on all phones no matter what, what you need is adb up and running (or terminal emulator) and either in adb shell, or terminal emulator just type
Code:
cat /proc/last_kmsg > /sdcard/last_kmsg.txt
or you can do
Code:
adb shell cat /proc/last_kmsg > kmsg.txt
and that will write it to your current working directory from cmd.
Hopefully, this way we developers can have our lives be a little bit easier and you can learn more about android.
I'm glad to have written this and devs, feel free to link to this guide as a "bug reporting FAQ"
HALP! I BRICKD MY FONE!!1!
I JAILBROKED IT LAST NIGHT AND NOW I NO GET SIGNEL!! PLASE HALP!!!1
but on a more serious note, good tut
Thanks dude!!! I was looking for some kind of guide. Only thing I still don't understand is when are we supposed to give dmesg and when do we give the logcat? I understand the last_kmsg is for kernel panics and random reboots, but the rest two are still ambiguous to me... Could you please explain the other two in a simpler way with an easy example for each?... Sorry.. I'm a noob... but am trying to learn these things..
There also is this app called 'Bootlog Uptime' that tries to auto-detect a crash and subsequently exports the log to sdcard.
When I get in to cmd in bootloader mode and type adb shell cat /proc/last_kmsg > kmsg.txt, I get a message Error: Device not found. I checked the ADB drivers, the are loading well. Am I doing something wrong?
If you're in boot loader mode, that's not adb.
Sent from my Full Android on Crespo4G using xda premium
anshumandash said:
When I get in to cmd in bootloader mode and type adb shell cat /proc/last_kmsg > kmsg.txt, I get a message Error: Device not found. I checked the ADB drivers, the are loading well. Am I doing something wrong?
Click to expand...
Click to collapse
You need to boot into the ROM, then grab the logs.
Sent from my GT-I9100 using xda app-developers app
Thank you for this
Sent from my Nexus 4 using Xparent BlueTapatalk 2
Can someone help me please.
I am from the HTC One S (Ville C2) community. I am testing a new kernel by one of the devs who doesnt have the phone. Now after installing the new kernel the phone is on bootloop. I need to extract the last_kmsg. the only way I can get out of the boot loop to do anything is by pressing the power button and simulate battery out. This it seems erases the last_kmsg cuz when I enter recovery to get it. It either says no such file or sometimes ends up showing me the recovery kernels last_kmsg. I am at a total loss as to how I the last_kmsg file.
There is also no way to install a working boot image as the kernel uses a zip to install files on the phone so we must use recovery to restore to previous state. This leads to the original condition. I tried looking for a solution but cant find it anywhere.
I tried the above method (via the Terminal Emulator) for finding the last_kmsg (my phone had just rebooted) and it says "/system/bin/sh: cat: /proc/last_kmsg: No such file or directory"
And Indeed, there is no last_kmsg file in my proc folder. Is there something I have to do to create it in the first place?
Thanks!
piyush_soni said:
I tried the above method (via the Terminal Emulator) for finding the last_kmsg (my phone had just rebooted) and it says "/system/bin/sh: cat: /proc/last_kmsg: No such file or directory"
And Indeed, there is no last_kmsg file in my proc folder. Is there something I have to do to create it in the first place?
Thanks!
Click to expand...
Click to collapse
I have the same problem.
Nexus 7-16 GB, PA 3.00, faux kernel 16 ultimate
Just solved the last kmsg problem. Instead of making the terminal do the job and getting "there is no such directory", just go above one level from sdcard and find proc folder. There will be a file named last_kmsg.
Hope it helps someone
Nexus 7-16 GB, PA 3.00, faux kernel 16 ultimate
---------- Post added at 10:13 AM ---------- Previous post was at 10:08 AM ----------
piyush_soni said:
I tried the above method (via the Terminal Emulator) for finding the last_kmsg (my phone had just rebooted) and it says "/system/bin/sh: cat: /proc/last_kmsg: No such file or directory"
And Indeed, there is no last_kmsg file in my proc folder. Is there something I have to do to create it in the first place?
Thanks!
Click to expand...
Click to collapse
Wait a few minutes it will be there
Nexus 7-16 GB, PA 3.00, faux kernel 16 ultimate
Kaiyes said:
Just solved the last kmsg problem. Instead of making the terminal do the job and getting "there is no such directory", just go above one level from sdcard and find proc folder. There will be a file named last_kmsg.
Click to expand...
Click to collapse
Kaiyes said:
Wait a few minutes it will be there
Click to expand...
Click to collapse
Nope. It's still not there for me ... I have a file called kmsg, but not last_kmsg.
Good stuff!
I'm on JB 4.3, Galaxy Note 2 and I've Flash Davil Kernel.
Two Bugs for me:
1) when the Phone, in switch off, is charging... the LED will not light. No Red Light (when in charging), nor Green one, when it has reached the 100%.
2) When Phone is connect to PC it isn't recognized by the PC in any way. To transfer files I have to use some app via Wi-Fi.
Are Two knows Bugs? Thanks in advance.
Hey glowerita I have this same problem minus the devil kernel. I don't think devil works with the FTW rom
Sent from my SPH-L900 using Tapatalk
Aquarius169 said:
Hey glowerita I have this same problem minus the devil kernel. I don't think devil works with the FTW rom
Sent from my SPH-L900 using Tapatalk
Click to expand...
Click to collapse
Hi! About PC recognize I've done so and now it's ok.
With Terminal emulator digit;
su
Press Enter.
Now digit; setprop persist.sys.usb.config mtp,adb
Enter, exit and reboot device and PC. [emoji1]
About led light... have you same problem like me?
Inviato dal mio GT-I9100 utilizzando Tapatalk
Take a look at
https://play.google.com/store/apps/details?id=com.bassel.andylog
... [email protected]
dmesg kmsg not permitted
Here's the dmesg.txt file when issuing C:\platform-tools>adb shell dmesg > dmesg.txt
"klogctl: Operation not permitted"
So I tried:
"C:\platform-tools>adb shell
←7←[r←[999;999H←[[email protected]:/ $ su
su
←7←[r←[999;999H←[[email protected]:/ # dmesg > dmesg.txt
dmesg > dmesg.txt
sh: can't create dmesg.txt: Read-only file system"
Results of issuing "C:\platform-tools>cat /proc/last_kmsg > /sdcard/last_kmsg.txt
The system cannot find the path specified.
C:\platform-tools>adb shell cat /proc/last_kmsg > kmsg.txt
/system/bin/sh: cat: /proc/last_kmsg: Operation not permitted"
Same results running terminal on phone also.
-Running PecanCM's CM11 Beta10 on LG L5 e610-
So neat and simple. Thanks for clarifying that.
Hi,
My phone was bricked as I tried to replace framework-res.apk with some other file. It was struck in bootloop mode.
Unfortunately, I couldn't find stock ROM of that phone as it is new model. So, I cannot flash stock ROM.
The only way I can see is to replace corrupted framework-res.apk with stock framework-res.apk (I have taken back up).
So, can you tell me what is the best way to access system files of bricked phone on PC.
Your help is much appreciated.
Forgot to mention, my phone model is XOLO B700
Okay m not sure bt I guess u will need adb .. also u need to run adb in root mode so that u can replace the framework-file.. wid command
adb push ...
doctor_droid said:
Okay m not sure bt I guess u will need adb .. also u need to run adb in root mode so that u can replace the framework-file.. wid command
adb push ...
Click to expand...
Click to collapse
THANKS BROTHER..
can u let me know the steps to run adb commands...im new to these things bt learning many things coz of this issue
veerusayz said:
THANKS BROTHER..
can u let me know the steps to run adb commands...im new to these things bt learning many things coz of this issue
Click to expand...
Click to collapse
Check my thread
http://forum.xda-developers.com/showthread.php?t=2266638
Specially practice the adb push command...
Its like adb push "file location on pc" "file location on phone" which in ur case would be system folder I guess
I will keep on looking for stock rom for xolo b700 .. if I found one I will let u know
doctor_droid said:
Check my thread
http://forum.xda-developers.com/showthread.php?t=2266638
Specially practice the adb push command...
Its like adb push "file location on pc" "file location on phone" which in ur case would be system folder I guess
I will keep on looking for stock rom for xolo b700 .. if I found one I will let u know
Click to expand...
Click to collapse
Thanks a lot, waiting for good news
doctor_droid said:
Check my thread
http://forum.xda-developers.com/showthread.php?t=2266638
Specially practice the adb push command...
Its like adb push "file location on pc" "file location on phone" which in ur case would be system folder I guess
I will keep on looking for stock rom for xolo b700 .. if I found one I will let u know
Click to expand...
Click to collapse
Links are not working in ur thrd
veerusayz said:
Links are not working in ur thrd
Click to expand...
Click to collapse
Here
http://www.google.com/url?q=http://...wQFjAA&usg=AFQjCNH8f3wEs-3NrRrF7aAuqNJ8Du_sNA
doctor_droid said:
Here
http://www.google.com/url?q=http://...wQFjAA&usg=AFQjCNH8f3wEs-3NrRrF7aAuqNJ8Du_sNA
Click to expand...
Click to collapse
Thanks boss! I could able to download adb files on my pc.
I've started my phone into recovery mode and connected PC via US cable.
Have executed commands like start server, root I could able to execute.
When I tried below, I'm getting error
adb push <Location of framework-res.apk on my PC> /system/framework/
Pls help. I think I'm close to solution.
veerusayz said:
Thanks boss! I could able to download adb files on my pc.
I've started my phone into recovery mode and connected PC via US cable.
Have executed commands like start server, root I could able to execute.
When I tried below, I'm getting error
adb push <Location of framework-res.apk on my PC> /system/framework/
Pls help. I think I'm close to solution.
Click to expand...
Click to collapse
can you help on this brother?
veerusayz said:
can you help on this brother?
Click to expand...
Click to collapse
It's best to just "cd(change directory)" your way into the adb folder with the file right beside adb.exe,
that should fix the problem, I think.
Oh, can you post the error here. Just what it says, I mean.
It should help.
Jackoz530 said:
It's best to just "cd(change directory)" your way into the adb folder with the file right beside adb.exe,
that should fix the problem, I think.
Oh, can you post the error here. Just what it says, I mean.
It should help.
Click to expand...
Click to collapse
can you give step by step instructions.
I've placed adb folder in D:\ drive
pls provide step by step instructions
veerusayz said:
can you give step by step instructions.
I've placed adb folder in D:\ drive
pls provide step by step instructions
Click to expand...
Click to collapse
getting this error
- exec '/system/bin/sh' failed: Not a directory (20) nRet(-1) -
veerusayz said:
getting this error
- exec '/system/bin/sh' failed: Not a directory (20) nRet(-1) -
Click to expand...
Click to collapse
Judging from this error(and I ain't so sure):
1. Your output folder path(the path leading to the system folder) is wrong.(Correct your path)
2. Remove sh from the path. ADB detected sh as not a folder but another type of file(archive, apk etc...)
You can try to use cd to figure out the path, provided your phone's being detected by your computer now(which I doubt).
Code:
1. cd (E:/ or whatever your cellphone's drive)
2. dir
3. Then cd your way into another folder(choose from those that appear)
Repeat steps 2 and 3
Jackoz530 said:
Judging from this error(and I ain't so sure):
1. Your output folder path(the path leading to the system folder) is wrong.(Correct your path)
2. Remove sh from the path. ADB detected sh as not a folder but another type of file(archive, apk etc...)
You can try to use cd to figure out the path, provided your phone's being detected by your computer now(which I doubt).
Code:
1. cd (E:/ or whatever your cellphone's drive)
2. dir
3. Then cd your way into another folder(choose from those that appear)
Repeat steps 2 and 3
Click to expand...
Click to collapse
Handed over my phone to service center