[Q] Could someone help me get two files from your one S s4 (T-mo US) - HTC One S

Hello everyone,
Can someone help me get some files from HTC one S s4 (US T-mobile) please?
Because my phone was broken, even cannot power on, cannot use adb as well. I need to collect a partition file from the phone.
Because once I saw some articles to solve this kind of trouble and want to have a try, but in lack of this partition file.
I just need those who have the same phone as mine can provide the file to me.
--------
adb shell su -c 'dd if=/dev/block/mmcblk0 of=/cache/partition0.bin bs=512 count=1'
adb shell su -c 'dd if=/dev/block/mmcblk0 of=/cache/partition0.bin bs=512 count=9'
--------
Can someone use these two command and send me two partition files please?
The final file is called "partition0.bin"
Each command can create one.
Thank you so much.:victory:

Related

[Q] trouble with MT4G downgrade

when i try to set the version it says permission denied.. i have successfully done the previous steps and when i try to put in the line in red it just doesnt give me permission even though i have # i am using http://forum.xda-developers.com/showthread.php?t=1178912
please refer to the Changing Version Number to Allow Downgrade section.
what am i doing wrong? what do i have too do?
P.S. I am asking in a new thread because the downgrade walktrough is in developers and i am new. any help will be apreciated
C:\AndroidSDK\platform-tools>adb shell
# /data/local/tmp/misc_version_01/misc_version -s 1.00.000.0
\/data/local/tmp/misc_version_01/misc_version -s 1.00.000.0
/data/local/tmp/misc_version_01/misc_version: permission denied
# sync
\sync
# dd if=/dev/block/mmcblk0p17 bs=1 skip=160 count=10
dd if=/dev/block/mmcblk0p17 bs=1 skip=160 count=10
2.19.531.110+0 records in
10+0 records out
10 bytes transferred in 0.003 secs (3333 bytes/sec)
#
Are you gaining temp root first?
um you didnt link to anything
I am seeing different commands than what you have posted...
> adb push misc_version /data/local/tmp/misc_version
> adb shell chmod 777 /data/local/tmp/misc_version
> adb shell
# /data/local/tmp/misc_version -s 1.00.000.0
they are different because the file name was different(it was misc_version_01 folder but had same misc_version file inside) and i pushed folder and not just the file so i had to get to the file
oh and i did get temp root...
that make adb shell make a # right
eddy14777 said:
they are different because the file name was different(it was misc_version_01 folder but had same misc_version file inside) and i pushed folder and not just the file so i had to get to the file
Click to expand...
Click to collapse
That shouldn't be the case, you are supposed to unzip the folder in your platform-tools directory, so you shouldn't have the folder name in the command...just the file.
thanks! i will try this and se if that goes smoother
you sir are a genious! thankyou soo much.. i probably wouldnt have gotten past this if it werent for you... thankyou
eddy14777 said:
you sir are a genious! thankyou soo much.. i probably wouldnt have gotten past this if it werent for you... thankyou
Click to expand...
Click to collapse
No problem...glad I could help

[Q&A] [TUT] Fix Mount System in Kitkat After Root

Q&A for [TUT] Fix Mount System in Kitkat After Root
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer.
Before posting, please use the forum search and read through the discussion thread for [TUT] Fix Mount System in Kitkat After Root. If you can't find an answer, post it here, being sure to give as much information as possible (firmware version, steps to reproduce, logcat if available) so that you can get help.
Thanks for understanding and for helping to keep XDA neat and tidy!
boot.img
Please give me M2 ,D2303, 4.4.2 , 18.3.C.0.37 boot.img
aunggyi2014 said:
Please give me M2 ,D2303, 4.4.2 , 18.3.C.0.37 boot.img
Click to expand...
Click to collapse
heres a .40 one if it helps https://drive.google.com/file/d/0B8tBozpqUuU1R0RnV3VoVXJEUWs/view
d2306 unable to update from OTA
Hi,
I've tried this method and I couldn't update my d2306 with D2306_18.0.C.1.17_PT-BR.ftf (JB) using the Update Center app (I'm really sorry for my ignorance, but this is how we update from OTA, right?). It only said that the update failed and didn't gave any log or reason why.
So I've tried to flash everything, but the kernel, again using the flashtool, as seen in androidclub. But then I got stuck in bootloop.
I've already tried to flash CWM and root from within it, and then, as my phone had come with KK already, I've flashed only the kernel. But then I can't go into custom recovery anymore, and I got the system not writable problem.
For OTA errors check this file :
/cache/recovery/fota/report
Sony ric service for KK 4.4.2 is located at /sys/kernel/security/sony_ric
Assume you have root access on your KitKat, and busybox installed.
Get ready (or compile for yourself) copymodulecrc and ric_disabler_mod.ko written by @cubeundcube from here.
Look at install_tool.sh script, there is everything you need...)
e.g., connect your device via usb......and execute from shell :
Code:
adb push files/copymodulecrc /data/local/tmp/
adb push files/ric_disabler_mod.ko /data/local/tmp/
adb shell "su -c 'chmod 0755 /data/local/tmp/copymodulecrc'"
adb shell "su -c 'chmod 0644 /data/local/tmp/ric_disabler_mod.ko'"
adb shell "/data/local/tmp/copymodulecrc /system/lib/modules/scsi_wait_scan.ko /data/local/tmp/ric_disabler_mod.ko"
adb shell "su -c 'insmod /data/local/tmp/ric_disabler_mod.ko'"
adb shell "su -c 'dd if=/data/local/tmp/ric_disabler_mod.ko of=/system/xbin/ric_disabler_mod.ko'"
adb shell "su -c 'chown root.root /system/xbin/ric_disabler_mod.ko'"
adb shell "su -c 'chmod 0644 /system/xbin/ric_disabler_mod.ko'"
Create a file 00stop_ric, with the following content:
Code:
#!/system/bin/sh
insmod /system/xbin/ric_disabler_mod.ko
Save it, copy to the /system/etc/init.d/ and set access permissions :
Code:
adb push 00stop_ric /system/etc/init.d/00stop_ric
adb shell "su -c 'chown root.root /system/etc/init.d/00stop_ric'"
adb shell "su -c 'chmod 0755 /system/etc/init.d/00stop_ric'"
Put this line at the end of the file init.qcom.post_boot.sh (located in the /system/etc/)
Code:
/system/xbin/busybox run-parts /system/etc/init.d
Test mount:
Code:
adb shell "su -c 'mount -o remount,rw /system'"
p.s
For all written above I used koush/Superuser for root access.
Please help
After rooting, my phone is showing internal storage fill. How can i fix it.

[Q] What the hell is happening??

I know I'm a noob.. But can someone please explain what the hell is happening. When I'm root, the sdcard folder is something completely different and its different when im not?
I tried taking backups of my efs with these 2 commands in adb shell
Code:
su
dd if=/dev/block/mmcblk0p10 of=/sdcard/modemst1.bin bs=512
dd if=/dev/block/mmcblk0p11 of=/sdcard/modemst2.bin bs=512
Can someone please check the attachment below and tell me... !!!!:crying:
maniyal said:
I know I'm a noob.. But can someone please explain what the hell is happening. When I'm root, the sdcard folder is something completely different and its different when im not?
I tried taking backups of my efs with these 2 commands in adb shell
Code:
su
dd if=/dev/block/mmcblk0p10 of=/sdcard/modemst1.bin bs=512
dd if=/dev/block/mmcblk0p11 of=/sdcard/modemst2.bin bs=512
Can someone please check the attachment below and tell me... !!!!:crying:
Click to expand...
Click to collapse
That's not what root is...
The directory for sdcard is /sdcard
The directory for root is /
Root/=sdcard
The sdcard directory is located inside the root directory

HUGE HELP!!

Hello guys i need a huge help from someone who have H340N from Europe. I need some exploits to fix my phone , The commands are
Code:
adb shell
Code:
su
Code:
cd /dev/block/platform/soc.0/by-name
Code:
ls -l
please guys it's emergency !
Send me the files on a message or a quote here!

Help me by dumping a partition on your device

Hello,
Could someone having access to a rooted Zenfone 4 Pro do me a favour by dumping a partition on their device?
As root, execute the following commands:
Code:
# dump the sec partition to /data/local/tmp/sec.img
# it might be in /dev/block/platform/soc/<something>/by-name/
dd if=/dev/block/by-name/sec of=/data/local/tmp/sec.img
chmod 755 /data/local/tmp/sec.img
Then use ADB to retrieve the file from your device:
Code:
adb pull /data/local/tmp/sec.img
There is no personal data in this partition. It is either empty, or what's in it is the same for all devices.
Thanks a lot for the help!
You still need this?

Categories

Resources