Stupid-er question ... how do I extract the .img from the .rar?
(Just call me noob)
did u unzip the img... or is it still in a zip format. I bet thats ur issue...Hoping someone can help...
I'm only gettiing basic recovery not Xionia...thinking its not flashing xionia_cwma_12518.6.img
Here are the commands i used. Reboots to recovery but i only see basics (flash .zip, wipe cache, etc..)
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock5 /system
# cat /sdcard/flash_image > /system/bin/flash_image
# chmod 755 /system/bin/flash_image
# mv /system/etc/install-recovery.sh /system/etc/install-recovery.sh.bak
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock5 /system
# flash_image recovery /sdcard/xionia_cwma_12518.6.img
# reboot recovery
How long should it take to run this command: # flash_image recovery /sdcard/xionia_cwma_12518.6.img ? am i not waiting long enough?
Thanks!
i extracted the .rar to my desktop and copied the .img file to root of SD card: xionia_cwma_12518.6.imgdid u unzip the img... or is it still in a zip format. I bet thats ur issue...
are u getting the #, or are yours showing the $ sign on each line?i extracted the .rar to my desktop and copied the .img file to root of SD card: xionia_cwma_12518.6.img
Ok so this morning I rooted my wifes phone with the new one step multi platform process.... briliant worked perfectly. I must have missed something tried flashing Zefie's Xionia useing the cpromp .... I have root permission for unknown but string is this:
# mount -o remount,rw -t yaffs2/system/system
Mount -o remount,rw -t yaffs2/system/system
Usage: mount [-r] [-w] [-o options] [-t type] device directory
# cat/dev/mtd/mtd2>/sdcard/recovery-stockfactory.img
Cat/dev/mtd/mtd2: not found
I have no idea if I've made a noob mistake or if I need to do something else to put the recovery on.
Sent from my LG-LS670 using Tapatalk
your mount script is wrong, if you had rooted the phone manually like you should always do if its you're first time working in adb, you would have known that
mount -o remount,rw -t yaffs2 /system /system
thats what it's supposed to look like.
EDIT: to clarify it looks like you forgot/didn't notice the spaces between words after yaffs2. keep in mind spaces have a purpose in linux commands unlike cmd where spaces only sort of have a purpose, and have exceptions for when they're allowed and not allowed linux terminals are VERY strict about spacing and do not allow for spacing. The reason all file names in linux have "_" in between words, is because of this. Yes you can manually rename files with spaces instead of underscores but then you can't use those files in terminal. class dismissed lol good luck feel free to write back if you have any other questions about the process. Also your cat line wont ever do anything it's also not written properly.
mount -o remount,rw /system /system
cd "/home/drewwalton/Desktop/Folder with spaces"
mount -o remount,rw /system /system
mount -oremount,rw /system/system
cd "/home/myname/Folder with spaces"
cd /home/myname/Folder with spaces
Actually, you don't need to specify the filesystem type with -t yaffs2, as Linux/Android automatically detects it.
The correct (and more universal) command would then be:P.S. You can use spaces in Linux paths as long as you enclose the path with quotes. Same thing applies when accessing files. Example:Code:mount -o remount,rw /system /system
Code:cd "/home/drewwalton/Desktop/Folder with spaces"
Ummm, you realize that this is a response to somebody who's having problems because they took a shortcut and ultimately didn't understand advanced because of it. In response to my CORRECT reply to his post you've suggested he use another shortcut, I ask you, where's the logic in that? Yes your way is also an acceptable method but why would you step in and suggest that in this circumstance?
your mount script is wrong, if you had rooted the phone manually like you should always do if its you're first time working in adb, you would have known that
mount -o remount,rw -t yaffs2 /system /system
thats what it's supposed to look like.
EDIT: to clarify it looks like you forgot/didn't notice the spaces between words after yaffs2. keep in mind spaces have a purpose in linux commands unlike cmd where spaces only sort of have a purpose, and have exceptions for when they're allowed and not allowed linux terminals are VERY strict about spacing and do not allow for spacing. The reason all file names in linux have "_" in between words, is because of this. Yes you can manually rename files with spaces instead of underscores but then you can't use those files in terminal. class dismissed lol good luck feel free to write back if you have any other questions about the process. Also your cat line wont ever do anything it's also not written properly.