Just installed this ROM (Non-deodexed version) and after restoring my apps everything is hunky dory except for one thing. For some reason I cannot view Dmesg logs with either OS monitor, Lumberjack or any Dmesg log viewing app for that matter
Same thing for logcat
Does anyone know what could be causing this?
Sent from my Galaxy Nexus using xda app-developers app
Same here need an answer, il post here if i find one
stktd said:
Same here need an answer, il post here if i find one
Click to expand...
Click to collapse
I got my answer from the developer of the Lumberjack app (used to pull up dmesg)
In Jelly Bean, you now need root access to pull up dmesg (open up terminal emulator, type in "su" then "dmesg" and it will work), get the Lumberjack app and it will let you pull up dmesg (after you give it root access)
Related
I feel like such a tard.. i cant remeber the adb command to make the command prompt on my pc show the phones running logcat.
I tried adb shell logcat but the cursor just sat there looking at me like i asked something it couldnt do...
What command am i forgetting? I just want to see the logcat on my pc while i do thngs on the phone?
Sent from my PC36100 using XDA App
v_lestat said:
I feel like such a tard.. i cant remeber the adb command to make the command prompt on my pc show the phones running logcat.
I tried adb shell logcat but the cursor just sat there looking at me like i asked something it couldnt do...
What command am i forgetting? I just want to see the logcat on my pc while i do thngs on the phone?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
I don't quite remember this either, but have you tried.... adb shell logcat > log.txt
I believe its:
adb logcat > name of rom.txt
Sent from my SUPERSONIC
The arrow key is just a space right so
adb logcat logcat.txt
Sent from my PC36100 using XDA App
v_lestat said:
The arrow key is just a space right so
adb logcat logcat.txt
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
no the arrow is the arrow
freeza said:
no the arrow is the arrow
Click to expand...
Click to collapse
Correct.
Sent from my SUPERSONIC
i just use adb logcat and it comes out. use control c to exit
If on Linux/Mac:
Code:
adb logcat > ~/logcat.txt
If on Windows:
Code:
adb logcat > %userprofile%\Desktop\logcat.txt
Okay so I got my phone rooted and installed froyo with gapps.
Now I am trying to delete some apps with "Root Explorer" it works great untill i reboot the phone and all those deleted apps come back.
How to delete apps and save the image or something?
U will prolly have to remove via adb in recovery mode. Then they will stay gone.
Sent from my Htcclay's Remixed Remix using XDA App
I was trying to do that but my phone stays offline in recovery mode.
Maybe an advice please?
What is the command to remove the apps when in recovery?
Sent from my T-Mobile myTouch 3G Slide using XDA App
You have to mount /system then
adb shell
Click to expand...
Click to collapse
then
cd /system/app
Click to expand...
Click to collapse
then
ls
Click to expand...
Click to collapse
then following to remove app
rm -r Appname.apk
Click to expand...
Click to collapse
But I still cant shell into device while its in recovery mode?
Anyone help?
Did you unplug the phone then plug it back in once you went into recovery (adb devices after that). Otherwise it will say offline. After that:
Cyanogenmod Barebones has the code to remove the apps (and which ones you can remove safely) from adb or terminal.
KCRic said:
Did you unplug the phone then plug it back in once you went into recovery (adb devices after that). Otherwise it will say offline. After that:
Cyanogenmod Barebones has the code to remove the apps (and which ones you can remove safely) from adb or terminal.
Click to expand...
Click to collapse
I did plug it out and back in, even tried to do it few times.
Still says offline
Okay, I do not know how, but I got into phone shell in recovery moed and successfully removed apps.
Thanks for help
Probably restarted adb?
Edit: thx for the remove commands
Sent from my T-Mobile myTouch 3G Slide using XDA App
This thread helped out great, thanks guys!
I'm running a script and want to log the terminal as the script is running. How do I do this?
Grab alogcat from the market or use 'adb logcat > FILE.TXT' advanced logcat has a switch to output it to a file but I do not know what it is.
Sent from my Incredible using Tapatalk
Folks, i really don't know what to do to get a specific problem log file to be sent/showed to someone to fix my problem, any help or suggestions will be really appreciated here
If you just had a hard reboot, once booted up, from pc
Adb pull /proc/last_kmsg
This will get last kmsg file related to the last boot session to your pc.
If no hard reboots but freezes etc, then
Adb shell dmesg > /sdcard/dmesg.txt
To see what's been going on since the boot at kernel level. File gets created on sdcard. Use
Adb pull /sdcard/dmesg.txt
To get it to your pc.
To get a log of something, before trying it, start the logcat with
Adb logcat > logcat.txt
File will be created on the pc.
This is from my post 6843 in official cm10 thread. You can also use
Adb shell cat /proc/kmsg > /sdcard/kmsg.txt
To see kernel logs since last boot.
Sent from my ASUS Transformer Pad TF700T using Tapatalk 2
Edit: /proc was missing 3 lines above
eyosen said:
If you just had a hard reboot, once booted up, from pc
Adb pull /proc/last_kmsg
This will get last kmsg file related to the last boot session to your pc.
If no hard reboots but freezes etc, then
Adb shell dmesg > /sdcard/dmesg.txt
To see what's been going on since the boot at kernel level. File gets created on sdcard. Use
Adb pull /sdcard/dmesg.txt
To get it to your pc.
To get a log of something, before trying it, start the logcat with
Adb logcat > logcat.txt
File will be created on the pc.
This is from my post 6843 in official cm10 thread. You can also use
Adb shell cat /kmsg > /sdcard/kmsg.txt
To see kernel logs since last boot.
Sent from my ASUS Transformer Pad TF700T using Tapatalk 2
Click to expand...
Click to collapse
thanks eyosen you are the best
what if i already rebooted it several times due to weird signal loss? please check this http://forum.xda-developers.com/showthread.php?p=32791585#post32791585
does this means i've lost the latest log? if no, then how to extract the specific problem log from it such as the signal loss? or shall i send the whole log?
Hossam.Abdelsalam said:
thanks eyosen you are the best
what if i already rebooted it several times due to weird signal loss? please check this http://forum.xda-developers.com/showthread.php?p=32791585#post32791585
does this means i've lost the latest log? if no, then how to extract the specific problem log from it such as the signal loss? or shall i send the whole log?
Click to expand...
Click to collapse
use "adb logcat -b radio"
Press the thanks button if you want to thank me
You are welcome.
Just send the whole log. Best practice is to post it to pastebin and post the link in the forum.
After every reboot you will lose the previous last_ksmg.
Sent from a gadget on my balcony.
wcypierre said:
use "adb logcat -b radio"
Press the thanks button if you want to thank me
Click to expand...
Click to collapse
i already pressed it
but it seems this shows you the log at the run time, but what am trying to get is the log of my weird signal loss for incidents happened yesterday, is this even possible?
No that's not possible. You can start a logcat, repeat the steps that caused the problem, after the problem , post logcat and kmsg.
Sent from a gadget on my balcony.
Hossam.Abdelsalam said:
i already pressed it
but it seems this shows you the log at the run time, but what am trying to get is the log of my weird signal loss for incidents happened yesterday, is this even possible?
Click to expand...
Click to collapse
well, it should be able to trace back if the time duration is not that long, but you can just try and do what eyosen had suggested
This is Ubuntu Touch
Disclaimer: Don't touch if your not experienced! You are responsible for what happens not me understand you agree that im not responsible in any way when you download!
Justsueme has been working on this rom for a while and now I bring it to a locked bootloader! Not possible Ubuntu says but im good a scrips, so test it out let us know READ EVERYTHING BEFORE FLASHNG...its not a normal rom!
Link to his threadhttp://forum.xda-developers.com/showthread.php?t=2564187
instructions:
New Experimental method
Wipe device ready for new rom
Flash Rom : Rom
Reboot device
IF no wifi on boot you may need set
chmod +x /data/local/userinit.sh
(pm or comment if you need with terminals)
I didn't add reverse tether by default so head to manual fixes section to find how to.(buggy fixes soon with gsm)
this is not an update to functionality its just a quick knock-up putting both .zips into one and adding fix for no PC to boot.
Old Method(outdated) use if not working
At this point youll have a black screen and no activity except ADB
plug phone into pc
grab this file : (70-jfltexx.rules) http://www.datafilehost.com/d/17d6dd77
now open terminal
$ su
$ adb push 70-jfltexx.rules /usr/lib/lxc-android-config/
$ adb shell "reboot"
phone will look like its doing nothing for a bit, but wait.
now it will boot back up like normal but you will have a ubuntu touch gui
BUGS:
celluar
BT
IR?
no sound (works with headphones)
camera (maybe needs libjnigraphics ?)
frame jump
app not loading
adb or ssh for cli
Manual Fixes:
now have connectivity via reverse tether:
adb root
adb shell setprop sys.usb.config rndis,adb
ubuntu network manager will show that samsung android is connecting.
open network settings edit that connection and change auto DHCP to shared
run this command (logged into phone)
dhclient usb0 -v
now on phone open webbrowser or ping 8.8.8.8 to test connection
just got WIFI !
make it auto load at boot
touch userinit.sh
nano userinit.sh
add to the file :
-
#!/bin/bash
insmod /system/lib/modules/dhd.ko firmware_path=/system/etc/wifi/bcmdhd_sta.bin nvram_path=/system/etc/wifi/nvram_net.txt
-
adb push userinit.sh /data/local/userinit.sh
adb shell
chmod +x /data/local/userinit.sh
Contributors
JustSueMe, Warg-Razdroid
ROM OS Version: 4.2.x Jelly Bean
ROM Kernel: Linux 3.4.x
Based On: cyanogenmod
Reserved
Whoaaa man. This is big.
Sent from my SGH-I337 using XDA Premium 4 mobile app
jaythaovadose said:
Whoaaa man. This is big.
Sent from my SGH-I337 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
download up!
Sweet! I am stoked to play with this!
Sent from my SGH-I337 using XDA Premium 4 mobile app
Bigbabyjesus said:
Sweet! I am stoked to play with this!
Sent from my SGH-I337 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
cant get the zip booting will fix soon someone else please confirm?
Yeah, I'm stuck on splash screen. Can't even get to boot animation. Possibly a kernel problem?
Sent from my SGH-I337 using XDA Premium 4 mobile app
Yeah I'm guessing you can flash the original phablet zip from his thread but he has a fix coming soon with kernel and I'm searching too
Sent from my SGH-I337 using Tapatalk
Dang... if this requires a custom kernel, then SafeStrap is out of question... I really wanted to try this one out, but have the dreaded MF3...
Fix is slow, but making progress
Sent from my SGH-I337 using Tapatalk
NNagendran said:
Dang... if this requires a custom kernel, then SafeStrap is out of question... I really wanted to try this one out, but have the dreaded MF3...
Click to expand...
Click to collapse
It needs a custom kernel sorry
Sent from my SGH-I337 using Tapatalk
You need to link his thread to this one. And give him proper credit. He is the one that has worked hard on this. Not being mean but I'm just saying.
Sent from my SGH-I337 using Tapatalk
toxicpaulution said:
You need to link his thread to this one. And give him proper credit. He is the one that has worked hard on this. Not being mean but I'm just saying.
Sent from my SGH-I337 using Tapatalk
Click to expand...
Click to collapse
Learn reading it's in op...
Sent from my SGH-I337 using Tapatalk
uploading new
up
Hey guys just wanted to thank you for taking this initiative. All the best.
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
junooni.1980 said:
Hey guys just wanted to thank you for taking this initiative. All the best.
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
Click to expand...
Click to collapse
nice!
Joeyxc said:
This is Ubuntu Touch
Disclaimer: Don't touch if your not experienced! You are responsible for what happens not me understand you agree that im not responsible in any way when you download!
Justsueme has been working on this rom for a while and now I bring it to a locked bootloader! Not possible Ubuntu says but im good a scrips, so test it out let us know READ EVERYTHING BEFORE FLASHNG...its not a normal rom!
Link to his threadhttp://forum.xda-developers.com/showthread.php?t=2564187
instructions:
New Experimental method
Wipe device ready for new rom
Flash Rom : Rom
Reboot device
IF no wifi on boot you may need set
chmod +x /data/local/userinit.sh
(pm or comment if you need with terminals)
I didn't add reverse tether by default so head to manual fixes section to find how to.(buggy fixes soon with gsm)
this is not an update to functionality its just a quick knock-up putting both .zips into one and adding fix for no PC to boot.
Old Method(outdated) use if not working
At this point youll have a black screen and no activity except ADB
plug phone into pc
grab this file : (70-jfltexx.rules) http://www.datafilehost.com/d/17d6dd77
now open terminal
$ su
$ adb push 70-jfltexx.rules /usr/lib/lxc-android-config/
$ adb shell "reboot"
phone will look like its doing nothing for a bit, but wait.
now it will boot back up like normal but you will have a ubuntu touch gui
BUGS:
celluar
BT
IR?
no sound (works with headphones)
camera (maybe needs libjnigraphics ?)
frame jump
app not loading
adb or ssh for cli
Manual Fixes:
now have connectivity via reverse tether:
adb root
adb shell setprop sys.usb.config rndis,adb
ubuntu network manager will show that samsung android is connecting.
open network settings edit that connection and change auto DHCP to shared
run this command (logged into phone)
dhclient usb0 -v
now on phone open webbrowser or ping 8.8.8.8 to test connection
just got WIFI !
make it auto load at boot
touch userinit.sh
nano userinit.sh
add to the file :
-
#!/bin/bash
insmod /system/lib/modules/dhd.ko firmware_path=/system/etc/wifi/bcmdhd_sta.bin nvram_path=/system/etc/wifi/nvram_net.txt
-
adb push userinit.sh /data/local/userinit.sh
adb shell
chmod +x /data/local/userinit.sh
Contributors
JustSueMe, Warg-Razdroid
ROM OS Version: 4.2.x Jelly Bean
ROM Kernel: Linux 3.4.x
Based On: cyanogenmod
Click to expand...
Click to collapse
Sent from my Deadly Venom SS 3.0 S4 ~ 20GB free cloud https://copy.com?r=vtiraF
Is anyone actively working on this? Will it work with AT&T phones, or do I need to be concerned with the whole Loki Doki thing here as well? Until it is working with the cellular radio, I fear there is no reason to even play with this for now. Unfortunately, I don't think I have the skills to help out.
Subscribing.
Edit: Just tried to load this rom via TWRP v2.5.0.2 and it failed.
purdone said:
Is anyone actively working on this? Will it work with AT&T phones, or do I need to be concerned with the whole Loki Doki thing here as well? Until it is working with the cellular radio, I fear there is no reason to even play with this for now. Unfortunately, I don't think I have the skills to help out.
Subscribing.
Edit: Just tried to load this rom via TWRP v2.5.0.2 and it failed.
Click to expand...
Click to collapse
You do need Loki and such. I think development on this was merged into the international S4, if you check the Ubuntu wiki for Ubuntu touch you'll find the thread listed.
EDIT: It links to the same thread as OP, so I don't know if anyone is continuing it but I don't think so.
Sent from my SGH-I337 running Light ROM