Pulling /system folder from Froyo Intercept - Intercept General

Hello, can anyone pull root /system folder onto PC, archive it and put it here? /system folder ONLY from Samsung Intercept 2.2 Froyo.
Thanks in advance. Needed in developing.

cadavreatpinopl said:
Hello, can anyone pull root /system folder onto PC, archive it and put it here? /system folder ONLY from Samsung Intercept 2.2 Froyo.
Thanks in advance. Needed in developing.
Click to expand...
Click to collapse
i'm guessing you want it from a bone stock froyo phone?

That would be best.
PLUS important folders like etc/efs/...

Stock /system dump can be found here

ADB pull /system folder
Create C:\systemfolder folder on your PC
Try this in ADB
adb pull /system C:\systemfolder
Check C:\systemfodler contents.

Related

Fascinate/Vibrant Widgets on Captivate

Sorry if this has been mentioned before (I did search before posting), but there are a few widgets from the other Galaxy S phones that are rather nice, the weather clock in particular. I know there is a Fascinate dump out there, but can I just extract the apk and install it, or is there something else that I need to do. Any help is appreciated.
Sent from my SAMSUNG-SGH-I897 using XDA App
I would like to know this as well. Have subscribed to this thread.
Sent from my SAMSUNG-SGH-I897 using XDA App
Download the firmware that has those widgets and pull the apks and install them on your firmware of choice
If anyone does this post it please, if you link a how to ill do it.
Well, i pulled the APK's out of the ROM, but I'm not able to install them. I'm really new at this, so forgive me for the ignorance. there are ODEX files that accompany the apks...do i have to do something with those on order to install the widgets?
you'll need to use adb shell once you copy the files to a location on your internal sd card
you'll need to mount system as r/w first so do this, so:
adb shell
su (your device needs to be awake and unlocked so you can verify the SU request)
mount -o remount rw /system
cp /sdcard/xxxx.odex /system/app
cp /sdcard/xxxx.apk /system/app
reboot
the reboot is just for good measure. i've used this technique to get apps onto the phone, but as usual YMMV. If you post up the apk and odex files as a zip i'll give them a shot.
uiskibum said:
you'll need to use adb shell once you copy the files to a location on your internal sd card
you'll need to mount system as r/w first so do this, so:
adb shell
su (your device needs to be awake and unlocked so you can verify the SU request)
mount -o remount rw /system
cp /sdcard/xxxx.odex /system/app
cp /sdcard/xxxx.apk /system/app
reboot
the reboot is just for good measure. i've used this technique to get apps onto the phone, but as usual YMMV. If you post up the apk and odex files as a zip i'll give them a shot.
Click to expand...
Click to collapse
Do you have o remount /system as read only or will the reboot do that?
alphadog00 said:
Do you have o remount /system as read only or will the reboot do that?
Click to expand...
Click to collapse
the reboot will do that
What kind of cool stuff do they have?
Do tell!!
I had asked about putting the Samsung Touchwiz widgets on if using Launcher Pro. Was told no.
Would this method allow that for them?
Well, I've uploaded the files to Rapidshare, but thanks to the restrictions on my noob account, I can't link to the files.
rapidshare files 421816817 Samsung_Fascinate_Widgets zip
OK, major problem.
I copied the ODEX and APK's to the System/App folder and rebooted...now my phone will get stuck at the "Galaxy S" logo page and the display stops working. connecting via USB to the computer allows me to access the system via ADB, but I can't get the display running. What's the command in ADB to remove the files I just copied over?
adb shell
su
mount -o rw,remount /dev/block/st19 /system
rm /system/app/[name of widget file].*
Sgt_Bilbo said:
OK, major problem.
I copied the ODEX and APK's to the System/App folder and rebooted...now my phone will get stuck at the "Galaxy S" logo page and the display stops working. connecting via USB to the computer allows me to access the system via ADB, but I can't get the display running. What's the command in ADB to remove the files I just copied over?
Click to expand...
Click to collapse
Thanks for that info. Phone is back to normal. Now, back to the topic at hand. Anyone had success at getting these widgets working on the Captivate?
Sent from my SAMSUNG-SGH-I897 using XDA App

Backing up Swype/QuickOffice; restoring on custom ROM [UPDATED 11/13]

OK so I installed the latest CM6.1 Nightly and was able to backup and then restore both QuickOffice and Swype. NOTE: I am NOT providing any apks for backup purposes or if you somehow lost yours. These are merely directions for how to get Swype/QuickOffice off your phone and back on.
BACKUP:
(In a terminal w/ ADB)
Code:
adb pull /system/app/Swype.apk .
adb pull /system/app/Quickoffice.apk .
adb pull /system/lib/libSwypeCore.so .
After installing a custom ROM....
Code:
adb install Quickoffice.apk
adb push libSwypeCore.so /system/lib
adb install Swype.apk
tuzonghua said:
I was wondering if it is possible to pull the Swype/QuickOffice .apk's from my G2 (currently stock ROM), flash a custom ROM (say, Desire Z or CM6), and then re-install those .apk's. I figure it will throw some kind of error (e.g., Swype will say it's not configured for my device) because of different ROMs but just thought I'd ask.
I know how to pull, push, and install apk's from ADB so I'm not asking for how to do it. Just if it is possible.
Click to expand...
Click to collapse
I would love to know this as well. If you figure it out would you mind PMing me the details on how to do it?
Once a more stable version of CM6 or some other ROM comes out, I'll be trying it myself. Just as a reference, the ADB commands for doing this are:
Code:
C:\>adb pull /system/app/Swype.apk
C:\>adb pull /system/app/Quickoffice.apk
then after installing a custom ROM...
Code:
C:\>adb install Swype.apk
C:\>adb install Quickoffice.apk
I was able to use ES File Explorer and press menu>manager>app manager> then long press the Quick office app to back it up to the SD card, still trying to find the Swype apk though, going to do some digging with SUFBS (another file manager) and see if I can't get a hold of the Swype apk
This would be pretty awesome once we figure this out. Using Swype is the main reason why I'm still on the stock ROM. I tried out Sense and if it can come with Swype, I'll be one happy camper.
Did anyone try the above poster's method on pulling the apk?
Sent from my T-Mobile G2 using XDA App
tuzonghua said:
Once a more stable version of CM6 or some other ROM comes out, I'll be trying it myself. Just as a reference, the ADB commands for doing this are:
Code:
C:\>adb pull /system/app/Swype.apk
C:\>adb pull /system/app/Quickoffice.apk
then after installing a custom ROM...
Code:
C:\>adb install Swype.apk
C:\>adb install Quickoffice.apk
Click to expand...
Click to collapse
Quickoffice will work, but Swype will not. Swype has some libraries that you have to copy as well. Beyond that, I've not tested it. Find those Swype specific libs in the stock ROM and copy them as well, and maybe you might be ok.
Any chances you guys can send me the original Swype.apk that pre-installed on the G2? I stupidly deleted it off while doing Titanium things. Thanks.
See the post above from Dyndragon. I don't know what specific libs also go with Swype so the apk alone won't be enough.
Sent from my T-Mobile G2 using XDA App
tuzonghua said:
BUGS:
- Cannot use voice input with Swype after restoring to custom ROM
Click to expand...
Click to collapse
This is working fine for me on the CM 12 nightly. I used the same steps as you so try it with that?
Is there a way to get these files from a backup without having to back up the CM rom and then restore the stock, grab the stuff, and then go back to cm rom?
Sent from my T-Mobile G2 using XDA App
Popokrew,
No, AFAIK, and I cannot provide them here.
root file explorer
/system/app long click and copy what u wanna backup.
Sent from my T-Mobile G2 using XDA App
tuzonghua said:
Popokrew,
No, AFAIK, and I cannot provide them here.
Click to expand...
Click to collapse
No worries. Ill restore the backup, grab it, and go back to cm once the RC comes out. I noticed the google apps are also missing and I know cm can't provide those so I'm sure there is a backup procedure for them.
Sent from my T-Mobile G2 using XDA App
Hey guys, I was able to back everything up and while I was able to install the swype apk, whenever I go to copy the libswypecore.so file I have issues. Both through adb and root explorer. Any ideas? I'm going to attempt to do it through an update.zip + clockwork recovery now
tuzonghua said:
OK so I installed the latest CM6.1 Nightly and was able to backup and then restore both QuickOffice and Swype. NOTE: I am NOT providing any apks for backup purposes or if you somehow lost yours. These are merely directions for how to get Swype/QuickOffice off your phone and back on.
BACKUP:
(In a terminal w/ ADB)
Code:
adb pull /system/app/Swype.apk .
adb pull /system/app/Quickoffice.apk .
adb pull /system/lib/libSwypeCore.so .
After installing a custom ROM....
Code:
adb install Quickoffice.apk
adb push libSwypeCore.so /system/lib
adb install Swype.apk
Click to expand...
Click to collapse
Ok, I got it, I'm not sure if everyone has to do this or if it was just an oddity for me but
A. For those that quickly jumped on the rom band wagon without thinking about backing up swype. You can just open any g2 stock rom as an archive and get the files from it.
B. This is what I had to do to install it.
Turn it from Read-Only to Read/Write
Code:
adb shell
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
Then you have acess to the system folder to copy the swype lib file so...
Code:
adb install Quickoffice.apk
adb push libSwypeCore.so /system/lib
adb install Swype.apk
[/QUOTE]
Then close that access up
Code:
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
And your good to go.
REMEMBER SWYPE WILL NOT FUNCTION WITHOUT THAT LIB FILE!
If you are already on the custom rom and don't have the files, you can grab the files from the stock rom posted in this forum.
Sent from my T-Mobile G2 using XDA App
adb wont let me adb push libSwypeCore.so /system/lib . Says it is read only. I just installed cm6.1 and would like to have swype back.
Thanks for any help.
popokrew said:
If you are already on the custom rom and don't have the files, you can grab the files from the stock rom posted in this forum.
Sent from my T-Mobile G2 using XDA App
Click to expand...
Click to collapse
And where is this located?
i got this to install. but when i go to use swype it says something about i cant use this version of swype with this phone.... do anyone know anything about this? if you do post some info. thanks!
i'm using the g2 with sense ui.
shaneleelevin said:
Ok, I got it, I'm not sure if everyone has to do this or if it was just an oddity for me but
A. For those that quickly jumped on the rom band wagon without thinking about backing up swype. You can just open any g2 stock rom as an archive and get the files from it.
B. This is what I had to do to install it.
Turn it from Read-Only to Read/Write
Code:
adb shell
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
Then you have acess to the system folder to copy the swype lib file so...
Code:
adb install Quickoffice.apk
adb push libSwypeCore.so /system/lib
adb install Swype.apk
Click to expand...
Click to collapse
Then close that access up
Code:
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
And your good to go.
REMEMBER SWYPE WILL NOT FUNCTION WITHOUT THAT LIB FILE![/QUOTE]
Just FYI, you don't need all the extra stuff when you're remounting /system, you can just say
Code:
mount -o remount,rw /system
It already knows where it's mounted from and what it is, neh?
Also, I have a Swype Beta login, so I wanted to install the newest beta, and before you can install with the Swype Installer, you have to delete /system/app/Swype.apk and /system/lib/libSwypeCore.so both before the new beta runs right (if you leave the library it just FCs as soon as you enable it).

[Q] i want swype back please!!!!

Just did everything to my g2 at once today, and lost one of my fav features; swype...i have cyanogenmod-6.1.0-RC3-vision... i went and downloaded the stock rom and pulled the apk file from it and when i installed it, it kept force closing. i even tried pushing it via abd but kept getting errors.. can someone please help
You need to grab libSwypeCore.so from /system/lib and push it to same directory on new ROM.
Sent from my T-Mobile G2 using XDA App
Just download the apk provided by oldsk00lz to recover swype from your clockwork backup. It worked for me.
http://forum.xda-developers.com/showthread.php?t=841603
what are the commands? i have a stock rom downloaded and have the swpe file s sitting on my desktop ready to go..i have the swype.apk and libswypecore.so...i tried transferring them to the app file on the root of my phone and system/lib via astro manager but it wont let me
what page is it on?
Tman0604 said:
what are the commands? i have a stock rom downloaded and have the swpe file s sitting on my desktop ready to go..i have the swype.apk and libswypecore.so...i tried transferring them to the app file on the root of my phone and system/lib via astro manager but it wont let me
Click to expand...
Click to collapse
the first line of code changes your system to READ/WRITE I use root explorer to change it back to READ-ONLY or just reboot.
Code:
adb shell mount -o remount,rw /dev/block/mmcblk0p25 /system
adb push libSwypeCore.so /system/lib
adb install Swype.apk
for the code I wrote to work for you the files need to be in the same folder that the adb.exe runs out of. this is usually located in the tools folder in the android SDK otherwise you have to type the full path ie
this is on windows 7 on my computer so file path will be different for you
Code:
adb push C:\users\etnie\downloads\G2\libSwypeCore.so /system/lib
hope that helps

[Q] How can I fix swype resolution on roto jme rom?

It doesn't fit the screen.. Pls help!
Sent from my GT-P1000 using Tapatalk
I bet there's already the solution somewhere on the forum, but Ill try to make it simple for u..
Basically u need to mount the factoryfs.rfs image of the JMK5 fw, on linux u can use the mount command tool, if on windows MagicISO would be the way to go. Once its mounted you need to copy the file Swype.apk from /app and libSwypeCore.so from /lib . Once you have them on ur computer all you have to do is to copy them into the Gtab, Ill post you the procedure step by step
Code:
adb shell
mount -o remount,rw -t rfs /dev/block/stl9 /system
chmod 777 /system/app
chmod 777 /system/lib
cd /system/app
mv Swype.apk Swype.apk.old
cd /system/lib
mv libSwypeCore.so libSwypeCore.so.old
exit
then from ur computer navigate to the folder where u have the files Swype.apk and libSwypeCore.so, then
adb push Swype.apk /system/app/
adb push libSwypeCore.so /system/lib/
adb reboot
Once it reboots you'll have the old nice Swype keyboard in replacement of the new small one...
To make it even easier I am uploading the files needed for the fix right below..
Enjoy ..
Nice! After I flashed Roto jme and discovered the swype issue, I reflashed the stock t-mo tom, grabbed those files, then reflashed Roto jme. Then I pushed those files and had the big keyboard back. Then I saw Mr. Roto made a v3b with the big keyboard! I could have been outside smoking a good cigar waiting for the upgrade!
So go get the v3b upgrade and flash that, unless you are looking for an adventure.
P.S. Reboot a few times if you do the file switching to make the changes take effect.
Well, unless you don't mind reflashing your tab and might lose apps and configurations this will take you few minutes. However I'm glad he has made a pre fixed keyboard version of the JME, defo easy way for everyone.
Sent from my GT-P1000 using XDA App
Segnale007 said:
To make it even easier I am uploading the files needed for the fix right below..
Enjoy ..
Click to expand...
Click to collapse
I suggest you take down those links before you get moderated!
See here.
Regards,
Dave
Segnale, you definitely want to remove those files from here. By the way the whole procedure can be done within the phone :
1. Download the files to your tab (before they are removed , ) using your browser
2. Use Androzip to unzip the files
3. Rename the original files of your tab with RootExplorer (just in case you want to reuse them)
4. Copy the downloaded unzipped files to their respective locations with RootExplorer
5. Reboot the system
P_
Or just flash the latest "update" from Rotohammer as it fixes the issue.
knightnz said:
Or just flash the latest "update" from Rotohammer as it fixes the issue.
Click to expand...
Click to collapse
But brings another one for us European users as his Swype only contains English & Spanish keyboards
Thanks a lot mate you saved my day.

Need System files from Kindle Fire HD 2013 model (no camera)

Hello Everyone. I bricked my device and need the following files to fix that. Please, can someone with a rooted device provide this files?
Thanks much:
/system/framework/services.odex
/system/app/DownloadProvider.apk
/system/app/DownloadProvider.odex
/system/app/DownloadProviderUi.apk
/system/app/DownloadProviderUi.odex
Thanks again
MarcoJoo said:
Hello Everyone. I bricked my device and need the following files to fix that. Please, can someone with a rooted device provide this files?
Thanks much:
/system/framework/services.odex
/system/app/DownloadProvider.apk
/system/app/DownloadProvider.odex
/system/app/DownloadProviderUi.apk
/system/app/DownloadProviderUi.odex
Thanks again
Click to expand...
Click to collapse
hey don't feel bad I need boot img and system img to get my running again....or I just need to pop it in the microwave and call amazon and ask for a new one and start over
My Kindle is alive. If someone need this files too, they can be found in the Update.bin at Amazons website.
@crzyjoker13. Good luck with your device.
Here you go, pulled straight from the latest update...
It's just the files you requested, the file structure should be correct.
crzyjoker13 said:
hey don't feel bad I need boot img and system img to get my running again....or I just need to pop it in the microwave and call amazon and ask for a new one and start over
Click to expand...
Click to collapse
You can get them from Amazon's website. That's your best bet at this time.
really lost
NighthawkXL said:
Here you go, pulled straight from the latest update...
It's just the files you requested, the file structure should be correct.
Click to expand...
Click to collapse
ok this is a start but how do I get them to /system/app
crzyjoker13 said:
ok this is a start but how do I get them to /system/app
Click to expand...
Click to collapse
Your need to get the device to be picked up by ADB and then push the files if your not able to boot into the actual system itself. Your have to ask someone else for the commands... but here's a snippet for services.odex the rest the files should be similar pieces of commands.
Code:
adb shell
su
mount -o rw,remount /system
chmod 777 /system/framework
exit
exit
adb push services.odex /system/framework
adb reboot
step in the right direction
NighthawkXL said:
Your need to get the device to be picked up by ADB and then push the files if your not able to boot into the actual system itself. Your have to ask someone else for the commands... but here's a snippet for services.odex the rest the files should be similar pieces of commands.
Code:
adb shell
su
mount -o rw,remount /system
chmod 777 /system/framework
exit
exit
adb push services.odex /system/framework
adb reboot
Click to expand...
Click to collapse
well hey this is a step in the right direction but all I need now Is to gain read write acess to /system and system/app abd I should bea able to push the old files back...my problem lies in the fact that es explorer tried to update and it messed up so I went to remove and just install the new version at the same time I was following the directions to put play market on the dev so now I can download and I have no file explorer
or if anyone know how I can push and execute an apk to the kindle I would be happy
thanks in advance
crzyjoker13 said:
well hey this is a step in the right direction but all I need now Is to gain read write acess to /system and system/app abd I should bea able to push the old files back...my problem lies in the fact that es explorer tried to update and it messed up so I went to remove and just install the new version at the same time I was following the directions to put play market on the dev so now I can download and I have no file explorer
or if anyone know how I can push and execute an apk to the kindle I would be happy
thanks in advance
Click to expand...
Click to collapse
I was having the same problem as you are and was able to fix it by doing the following.
Download and extract the files NighthawkXL has provided.
From within the folder that you saved the files run command and do the following
adb shell
su
mount -o rw,remount /system
chmod 777 /system/framework
exit
exit
adb push services.odex /system/framework
adb push DownloadProvider.odex /system/framework
adb push DownloadProviderUi.odex /system/framework
exit
adb shell
su
mount -o rw,remount /system
chmod 777 /system/app
exit
exit
adb push DownloadProvider.apk /system/app
adb push DownloadProviderUi.apk /system/app
adb reboot
I think this will solve your problem with the downloads not working. Please keep in mind I have small amount of knowledge when it comes to rooting, but figured that it couldn't do more damage to it since it wasn't working.
LinearEquation said:
You can get them from Amazon's website. That's your best bet at this time.
Click to expand...
Click to collapse
can you provide a link to the system images please
thanks cant seem to find them
davethebrave14 said:
can you provide a link to the system images please
thanks cant seem to find them
Click to expand...
Click to collapse
https://s3.amazonaws.com/kindle-fire-updates/update-kindle-11.3.1.0_user_310084920.bin
Just downloaded .bin gonna check this out also. I didn't brick mine its usable but I screwed it up trying to take things off to get more memory and easier on battery. Runs ok now but I took off the system keyboard thinking the android keyboard file would be it the asop or whatever. So had to add Google keyboard which is better and the main navigation is gone with the back and menu key. ROFL. Using all in one gestures and omega status bar as a rig lmao.
adb install package.apk works fine after adb start-server with linux.
Theres app in 1 mobile market for moving .apk to /system/app folder.

Categories

Resources