What are you using old Galaxy 3 for? - Galaxy 3 Q&A, Help & Troubleshooting

Many of us may have brought new devices. But have good memories to cherish for this device. Many of us have learned about Android, modding, flashing etc through this device.
I got SGS 2 and Note 2 but still use this device when I am outdoors like beach, public places etc.
So guys who have got new phone what are you doing with your old device?

still using G3 though I have a new S3.....

Just got my Nexus 4 today and will be passing my trusted old Galaxy Apollo onto my wife (who is smartphone reluctant!). I'm just installing Kyrillos 9.7.1 back onto it after rocking out JellyBean for the last few months. I really loved this phone and it taught me how great Android can be,... although 5 minutes with the Nexus has me so excited for the future, it's FAST!
Can I just say thanks to all the developers that made this wonderful, underpowered little phone so much fun.

Nice to hear that you have moved on. I'm still with my G3, as I can't afford new phone present time, pretending it to be as GS3 and loving it with my soft hands.

I'm using g3 for 2 years now,so i thought it's time to move on.Still my primary phone untill i take a nexus 4...
Sent from my GT-I5800 using xda app-developers app

Just leave it lying around for flashing roms and flashing stuff

untill i was forced to sell it...i made my last rom version......and ofcourse i flashed it with JB few times...
>Sent from my S-II powered by DorimanX<

everything it can be used for. fine, that after 2 years I think I know every trick... e.g. I use bind- mounts for apps2sd and not symlinks anymore. and with all the experience collected from all the devs here ( thanks a lot to all) with ram and other tweaks in init.d and build.prop it's fast&stable&great. did not reboot for 2 Weeks now
sent from Galaxy3

mankokoma said:
everything it can be used for. fine, that after 2 years I think I know every trick... e.g. I use bind- mounts for apps2sd and not symlinks anymore. and with all the experience collected from all the devs here ( thanks a lot to all) with ram and other tweaks in init.d and build.prop it's fast&stable&great. did not reboot for 2 Weeks now
sent from Galaxy3
Click to expand...
Click to collapse
no...really...u're still using my rom?......
>Sent from my S-II powered by DorimanX<

rkoby13 said:
no...really...u're still using my rom?......
>Sent from my S-II powered by DorimanX<
Click to expand...
Click to collapse
ehhm, no - should udpate my signature... i am back to froyo for months now, coz of annoying camera problems and stability. using self tweaked purumod as base...

mankokoma said:
ehhm, no - should udpate my signature... i am back to froyo for months now, coz of annoying camera problems and stability. using self tweaked purumod as base...
Click to expand...
Click to collapse
ah...outdated sig, eh?...well yeah...it's anoying when camera doesn't work
Sent fom my S-II with CM-10 by mcm811(12/06/2012] powered by [url="http://dorimanx.shine.sk/kernels-jb/Kernel_Dorimanx-V7.29-ICS-JB-22-51--06-12-12-SG2-PWR-CORE.zip]DorimanX kernel v 7.29[/url]

I use my G3 just to try roms. G3 has retired and my Nexus 4 has taken it's place. I flash Sammy's touchwiz froyo rom sometimes just to remember how laggy that was.

mankokoma said:
everything it can be used for. fine, that after 2 years I think I know every trick... e.g. I use bind- mounts for apps2sd and not symlinks anymore. and with all the experience collected from all the devs here ( thanks a lot to all) with ram and other tweaks in init.d and build.prop it's fast&stable&great. did not reboot for 2 Weeks now
sent from Galaxy3
Click to expand...
Click to collapse
Can you explain what bind mounts are? And how to use them please?
Sent from my GT-I5800 using xda app-developers app

MicroGeek said:
Can you explain what bind mounts are? And how to use them please?
Click to expand...
Click to collapse
I try to...
under unix/linux you have at least two ways to 'link' folders to another 'place' in the filesystem.
One way is to use 'symlinks'. BTW symlinks work with files and folders, mounts only with folders or 'drives' (devices, e.g. /dev/block/stl6 or /dev/block/mmcblk0p2).
You know symlinks also from Microsoft with *.lnk files (icons on the desktop pointing to the *.exe files in the program folders) i doubt that is exactly the same technology, but the result is.
in unix/linux/android the command to create symlinks is:
Code:
ln -s /source/place /goal/place
this is usually used by app2sd scripts in this (G3) forum. I think Kyrillos had the idea to do it this way (hopefully i do not insult anyone who thinks she/he invented this... whoever had the idea to gain more space in poor G3 - GREAT GREAT GREAT!!)
One disadvantage in this way is that it won't work in network shares. that means if you have a linux-samba-share for windows-clients, a symlink won't work. you don't have access to the 'goal' of the symlink...
But you can use the mount command with the option 'bind' and then you can access the folder you are pointing to from network client side.
Code:
mount -o bind /source/folder /goal/folder
Maybe it takes more resources of the device memory than a symlink but it works well and seems to be very stable...
To cut a long story short: this is the script i use inside /system/etc/init.d:
Code:
#!/system/bin/sh
LOG=/sd-ext/01.scripts/LOG/mount.log
mkdir /sd-ext
mkdir /sdext
chmod 777 /sd-ext
chmod 777 /sdext
rm -rf /data/app # to be sure to empty the space to save internal memory, but DANGEROUS if already mounted ;)
rm -rf /data/log # to be sure to empty the space to save internal memory, but DANGEROUS if already mounted ;)
mkdir /data/app
mkdir /data/log
mount -o remount,ro,nodiratime,noatime,nobh,errors=continue /dev/block/stl6 /system
mount /dev/block/mmcblk0p2 /sdext
mount -o remount,delalloc,noauto_da_alloc,nodiratime,noatime,barrier=0,commit=600,nobh,discard /dev/block/mmcblk0p2 /sdext
mount /dev/block/mmcblk0p2 /sd-ext
mount -o remount,delalloc,noauto_da_alloc,nodiratime,noatime,barrier=0,commit=600,nobh,discard /dev/block/mmcblk0p2 /sd-ext
mount /dev/block/stl7 /data
mount -o remount,delalloc,noauto_da_alloc,nodiratime,noatime,barrier=0,commit=600,nobh,discard /dev/block/stl7 /data
[B][COLOR="Red"]mount -o bind /sd-ext/app /data/app[/COLOR][/B] > $LOG
[B][COLOR="Red"]mount -o bind /sd-ext/log /data/log[/COLOR][/B] >> $LOG
mount >> $LOG
To come back to topic finally: I use my old Galaxy 3 to live one of my obsessions - playing around with computer operating systems of any kind

I purchased an Xperia Sola a few months back, and sold my G3...but I still lurk here just to see whats happening here...

I'm still using it as my daily phone, while waiting for a nexus 4...

I am Using Galaxy 3 for my development purpose now...
As i am growing my knowledge more and more here in XDA...i am seriously starting to develop things now....and hope i can help our devs in near future for the ports.....
As far as my devices are concerned ......I own 2 Nexus Devices now(Galaxy Nexus & Nexus 4) along with my first android smartphone( Galaxy Apollo).

I use this phone!
Sent from my GT-I5800 using xda app-developers app

rkoby13 said:
ah...outdated sig, eh?...well yeah...it's anoying when camera doesn't work
Sent fom my S-II with CM-10 by mcm811(12/06/2012] powered by [url="http://dorimanx.shine.sk/kernels-jb/Kernel_Dorimanx-V7.29-ICS-JB-22-51--06-12-12-SG2-PWR-CORE.zip]DorimanX kernel v 7.29[/url]
Click to expand...
Click to collapse
Don't worry mate, I've been using your ROM for almost 5 months now. Obviously, I've heavily modded it, mixed and matched a few times, put in extra things here and there, but in the end, the base was your ROM
I will be using this phone up until April. after that, I will use it to learn Android programming. yayz!!

Phone for daily use, since this is the only phone I got...

Related

DROID 2 ROM! Epic Unleashed 1.0!

This is for the DROID 2 ONLY! Do not flash on your DROID 1 please. I will not help you if you attempt this rom on a DROID 1 and will laugh at you.
For all those having a problem install I have updated the update.zip file. Try it out
Things in the rom:
Removed bloatware(Stupid Verizon!)
Added scripts
Many build.prop mods
This rom is fully Deodexed thanks to bizzshow. Thanks
Themse will be ported. The stock theme comes first!
Still has Motoblur, just took my system folder and edited it a lot. This is the first booted build so please report bugs as you find them to my GTalk matt4542
Thanks to birdman for helping me fix my DROID 2 when I screwed up the system.
The known bug is that the backlight wont turn off when you locked the device, the screen is on but black. Please do not report this bug I will fix it in the next release. This release is buggy and is not for normal use.
Btw I don't have a DROID 1 anymore. DROID 2 now. Will try to keep up D1 development.
I have worked my ass off for this rom so just say thanks!
This has the DROID 1 boot animation for a "retro" feel lol.
READ IMPORTANT!
To install need root and koush's bootstrap app. You will need to make a FULL nandroid backup before doing this because if you screw up your system you can restore. After that go into install zip and toggle the zip authentication check off(or whatever it is) because I wanted this release out so quick I didn't sign the package. DO NOT INSTALL VIA ROM MANAGER!
READ IMPORTANT!
Why the hell have you read all this? Just download it!!
HERE IS YOUR DOWNLOAD!!! Don't you just love me for making you read all that?
DOWNLOAD!!! <--- Click me!
FIRST DROID 2 ROM! Hope you love it!!!!!!
If you post this elsewhere link back to this thread! HOPE YOU ENJOY!
By the way here are your scripts
Scripts:
mountsys - mounts system as read/write
unmountsys - mounts system as read only
blockads - blocks ads from apps
showads - shows ads from apps
free50mb - frees internal memory
free75mb - frees internal memory
free100mb - frees internal memory
movecache - moves your cache to your sdcard
swtchba - switches your boot animation (must be named bootanimation.zip on the root of your sdcard)
switchlwp - swithces your live wallpaper (must be named LiveWallpapers.zip on the root of your sdcard)
reboot - reboots your phone
reboot recovery - reboots into recovery
rmbrowser - Removes stock browser
rmcardock - Removes cardock
rmcorpcal - Removes corporate calendar
rmemail - Removes email
rmgenie - Removes genie widget (news and weather)
rmgooglevoice - Removes google voice
rmim - Removes G1 IM app
rmlauncher2 - Removes Launcher2(ONLY DO IF YOU HAVE OTHER HOME APP)
rmlwps - Removes all live wallpapers
rmmms - Removes mms
rmtalk - Removes google talk
rmyoutube - Removes You Tube
For convenience,
http://www.epic.grrmode.com/Epic-Unleashed10-Deodexed.zip
Tell me if you want it deleted and I'll take it off
pics?????????
just curious if anyone is running this yet. i hate being the first to try things out cause it never turns out well for me
Great work! Please pm me and tell you how you built this rom.
When I get back from vacation I'll test this out.
Sent from my DROID2 using XDA App
kwheel596 said:
For convenience,
Tell me if you want it deleted and I'll take it off
Click to expand...
Click to collapse
Thanks for posting it I had to remove the link from the quote because it wouldnt let me post it lmfao
ok so im a noob and this is my first smart phone. i came from a voyager...eww. ive been researching about making a full nandroid backup and am confused by how about doing this. is it the same from a droid x as it is for the droid 2? if someone can point me in the right direction...id appreciate it
heartlessmcfly said:
just curious if anyone is running this yet. i hate being the first to try things out cause it never turns out well for me
Click to expand...
Click to collapse
Bunch of people on DF have tested it. I've tested it throughly so nothing bad should happen. Take a look if you want
Uh, I'd be careful with this one, kids. I haven't tried it myself, nor have I looked at the entire thing, but the {u,}mountsys scripts are wrong.
Code:
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system > /dev/nul 2>&1
1) the d2 uses ext3, so the -t param is wrong (and actually unnecessary)
2) our system block device is mmcblk1p21, not mtdblock4 (we don't even have mtdblock4!)
3) > /dev/nul 2>&1 is extremely very not good - silencing error messages means a load of "HELP IT DOESN'T WORK!" complaints that you can't actually diagnose.
The rest of the rom may be fine, and I can't comment on it's quality/safety as I have very little experience with Android, but the above is clearly incorrect, and if something as important as that has been overlooked, who knows what else has.
heartlessmcfly said:
ok so im a noob and this is my first smart phone. i came from a voyager...eww. ive been researching about making a full nandroid backup and am confused by how about doing this. is it the same from a droid x as it is for the droid 2? if someone can point me in the right direction...id appreciate it
Click to expand...
Click to collapse
Same method as the Droid X. If you have Gtalk add me or just email me at [email protected] and I can help you out
LordLandon said:
Uh, I'd be careful with this one, kids. I haven't tried it myself, nor have I looked at the entire thing, but the {u,}mountsys scripts are wrong.
Code:
mount -o ro,remount -t yaffs2 /dev/block/mtdblock4 /system > /dev/nul 2>&1
1) the d2 uses ext3, so the -t param is wrong (and actually unnecessary)
2) our system block device is mmcblk1p21, not mtdblock4 (we don't even have mtdblock4!)
3) > /dev/nul 2>&1 is extremely very not good - silencing error messages means a load of "HELP IT DOESN'T WORK!" complaints that you can't actually diagnose.
The rest of the rom may be fine, and I can't comment on it's quality/safety as I have very little experience with Android, but the above is clearly incorrect, and if something as important as that has been overlooked, who knows what else has.
Click to expand...
Click to collapse
I know there are issues with it. It runs fine with bugs. It is just a alpha release, give me time to get everything ready with it.
ljbaumer said:
Great work! Please pm me and tell you how you built this rom.
When I get back from vacation I'll test this out.
Sent from my DROID2 using XDA App
Click to expand...
Click to collapse
I just did an adb pull of my system folder. It is in the post.
Cool. Sounds like it is time for me to write another how to or something.
Matt, I am interested in learning more about this. I will see if I can get in touch with you.
Understandable, Matt4542, but I'd fix the mount/umount scripts asap, as literally every other script you've provided depends on those (=
darkonion said:
Cool. Sounds like it is time for me to write another how to or something.
Matt, I am interested in learning more about this. I will see if I can get in touch with you.
Click to expand...
Click to collapse
Just hit me up on GTalk, Matt4542.
LordLandon said:
Understandable, Matt4542, but I'd fix the mount/umount scripts asap, as literally every other script you've provided depends on those (=
Click to expand...
Click to collapse
I am gonna work on it
The accelerometer and compass doesn't seem to be working. Just restored to my backup till this is fixed.
SomKen said:
The accelerometer and compass doesn't seem to be working. Just restored to my backup till this is fixed.
Click to expand...
Click to collapse
Sorry bout that. A lot of things are broken.
I did DL it yesterday and DEV. was extremly helpful in all questions I did have. I would recommend downloading 1.1 that's now available.
Great first D2 ROM
What us different about this rom from the stock rom?
Sent from my DROID2 using XDA App

[Script] Darkness in the dark hours

hi everyone
I present to you:
Darkness in the dark hours​
this is a pack of:
- a script I made
- Gscript lite
- Screen filter(optional, but recommended)
I strongly recommend to you to read the whole post and only then apply my script!
A lot of users tried to find a way to do this, so I polished my script I used for Eternity to make it universal(hopefully )
this script made to work with rooted 2.1+ firmwares and busybox properly installed.
1. Install Gscript lite
2. To make this script revertable on the newer brand of kernels, you will need to add one line to hw_config.sh (because I just don't trust init.d scripts)
run this from adb or any terminal emulator from phone as superuser
Code:
echo "\n\n\nrm /data/noled_tmp_reverse.prop" >> /system/etc/hw_config.sh
3. in Gscript choose Add a script and name it whatever you want(e.g. NOLed) and paste these lines in it
Code:
#! /system/bin/busybox sh
# "turn off keyboard and notification LEDs" for ANY android firmware
# this script needs su access
# made by Adolf1994
# thanks for the help diimaan
# maybe final version - revertable
# requires hw_config.sh modification to be properly revertable
DIR=$(cd /sys && find | grep brightness | cut -c 3- | cut -d : -f 1 | head -n 1)
LED=/sys/$DIR
LED1=$LED:rgb1:red/brightness
LED2=$LED:rgb1:green/brightness
LED3=$LED:rgb1:blue/brightness
LED4=$LED:sled/brightness
if [ -s /data/noled_tmp_reverse.prop ]; then
chmod 00644 $LED1
chmod 00644 $LED2
chmod 00644 $LED3
chmod 00644 $LED4
rm /data/noled_tmp_reverse.prop
else
echo 0 > $LED1
echo 0 > $LED2
echo 0 > $LED3
echo 0 > $LED4
chmod 00444 $LED1
chmod 00444 $LED2
chmod 00444 $LED3
chmod 00444 $LED4
echo 1 > /data/noled_tmp_reverse.prop
fi
exit
4. tap on "Needs SU" then save
5. run the script and enjoy surfing at night without the annoying hw leds
(most likely you WILL get stderrs on 2.2+, but it's normal)
Note: if you get EMPTY stderrs, that's no problem. BUT if something is shown next to the stderr, like permission denied, then please report
optional. install Screen filter from market: https://market.android.com/details?id=com.haxor&feature=search_result
This is only for 2.1 and/or 2.2. On 2.3 I experienced a problem that's I couldn't press install in package installer activity. I nearly reinstalled the whole thing. You've been warned!
Night is over? Just run the script again and wait till the LEDs light up.
If You Don't Like LEDs At All, This Pretty Line Will Disable Them At Startup
http://forum.xda-developers.com/showpost.php?p=17514012&postcount=27
Q: Why modifying hw_config.sh?
A: Because if you reboot your phone while the leds are off, there will remain a file that normally indicates how the script should act upon running it. That one particular file should not present after boot.
Q: I'm on Wolfbreak's ROM. Won't that mess tweaks up?
A: In no way. Impossible. Unless you didn't follow steps properly.
hope you like it
and don't forget to press thanks button
can I use script manager to run this at boot?
I think it'd be fine
the script didnt work for me i went to my dolphin browser copied text pasted it saved i run it it showed up stderr twice that's it?
shahkam said:
the script didnt work for me i went to my dolphin browser copied text pasted it saved i run it it showed up stderr twice that's it?
Click to expand...
Click to collapse
i cant paste the text corectly ffs i think thats the problem can you upload the script as ".sh" so i can load it whit gscript?
shahkam said:
the script didnt work for me i went to my dolphin browser copied text pasted it saved i run it it showed up stderr twice that's it?
Click to expand...
Click to collapse
from gscript I get a bunch of stderrs, too. however, from a terminal emulator it runs fine, so no problem.
It's the most noticeable if the phone is on the charger, because you will see that the led suddenly switches off.
you can revert the script back with a simple reboot.
Sorry for being a noob, but what does this do? :$
It disables the l.e.d.s. It should be made a little clearer in op.
Is there a script to turn them back on?
Sent from my X10a using XDA App
AyDee said:
It disables the l.e.d.s. It should be made a little clearer in op.
Is there a script to turn them back on?
Sent from my X10a using XDA App
Click to expand...
Click to collapse
sorry if I wasn't clear. I'll fix it soon
and change it to revertable, too
Adolf any clue why it didnt work.for me and i kept having stderr thingy
Sent from my X10i using XDA Premium App
shahkam said:
Adolf any clue why it didnt work.for me and i kept having stderr thingy
Sent from my X10i using XDA Premium App
Click to expand...
Click to collapse
since they are empty it's ok
Huh? I think i wasnt clear i used your script and when i ran it whit gscript i got twice stderr message twice one under the other like this
Stderr
Stderr any clue why?
Sent from my X10i using XDA Premium App
shahkam said:
Huh? I think i wasnt clear i used your script and when i ran it whit gscript i got twice stderr message twice one under the other like this
Stderr
Stderr any clue why?
Sent from my X10i using XDA Premium App
Click to expand...
Click to collapse
for this script only gscript gives empty stderrs. if I run it with a terminal emulator/adb there's no stderr.
it's a problem of gscript
@Adolf or @My_Immortal
any new experiments with sd card mounting?
There was some interesting posts by one shaun in link2sd thread! he's using x10! somehow he managed to find more free space in /system than in /data!
so no need of an extra partition, you can just run the script to mount the /system as rw on boot and then link the link2sd mount point to it! I sent a PM to him about how is it working! let's see...
Ohhh but i tried terminal too pasted the script and nothing happened?
Sent from my X10i using XDA Premium App
I use this script most nights now, thanks Adulf! perhaps a mod to the script could be to set an expiry time value? (or is this not possible!)
diimaan said:
@Adolf or @My_Immortal
any new experiments with sd card mounting?
There was some interesting posts by one shaun in link2sd thread! he's using x10! somehow he managed to find more free space in /system than in /data!
so no need of an extra partition, you can just run the script to mount the /system as rw on boot and then link the link2sd mount point to it! I sent a PM to him about how is it working! let's see...
Click to expand...
Click to collapse
There are currently 190 MB free in my system partition, 219 MB in data and 11 GB in my sdcard, so I really want to use Links2SD on an ext partition in my SD, rather than anywhere else!
But it's nice that there's progress!!
My_Immortal said:
There are currently 190 MB free in my system partition, 219 MB in data and 11 GB in my sdcard, so I really want to use Links2SD on an ext partition in my SD, rather than anywhere else!
But it's nice that there's progress!!
Click to expand...
Click to collapse
190 mb? that's far less you should clean up some junk in your system then!
btw this is the msg I got from shaun! you can check how it works!
http://forum.xda-developers.com/show...&postcount=834
Should explain how to do it, just need to add commands to a start up script that is editable on your phone, that runs before the GUI is started. Dunno how I would create a universal script as you will need to edit diff files on diff phones.
If there is anything you don't understand from my post I'll try and help.
Click to expand...
Click to collapse
Brilliant this is exactly what i wanted, thanks Adolf !!
[email protected] said:
I use this script most nights now, thanks Adulf! perhaps a mod to the script could be to set an expiry time value? (or is this not possible!)
Click to expand...
Click to collapse
Adulf... hehh, funny
yyeeeeaaaaaaahhhh...no
that'd be a bit complicated.
but this is why it's revertable

[Q] 2.2 Dev firmware for 1 night only

Guys, I've got a 2.2 dev firmware transformer unit for tonight only. Are there any files I should rip before I have to send it back tomorrow? Seems like lots of dev tools installed. I know there are dumps out there, but perhaps the files can be useful.
3.0 version arriving tomorrow hopefully.
It makes sense to dump root and system partitions. Data can also have some useful stuff, but no partition dump needed, may be just /data/app directory. Could you try playing YouTube videos using native app? Does it drops frames?
Sent from my Transformer TF101 using Tapatalk
dd if=/dev/block/mmcblk3 of=/<sdcard with enough space for a 16GB dump>
Once compressed that shouldn't be too large.
Roach2010 said:
dd if=/dev/block/mmcblk3 of=/<sdcard with enough space for a 16GB dump>
Once compressed that shouldn't be too large.
Click to expand...
Click to collapse
Seriously. There's been a whole lot of dicking around on this, when this would give us everything to pore over offline. Don't let another one go to waste!
Also get the output from 'cat /proc/partitions' so we know where to split up the partitions.
Why does anybody want the 2.2? Not in a ass way,just actually curious.
Sent from my Nexus S 4G using XDA Premium App
jinsoku3g said:
Why does anybody want the 2.2? Not in a ass way,just actually curious.
Sent from my Nexus S 4G using XDA Premium App
Click to expand...
Click to collapse
It's not about the Froyo ROM, nobody wants that on his TF, really
But since it's a dev device, our devs hope that it is less locked down and perhaps flashable with nvflash for example. This would give us great opportunities. I'm no dev myself, but I hope I could help.
qwer23 said:
It's not about the Froyo ROM, nobody wants that on his TF, really
But since it's a dev device, our devs hope that it is less locked down and perhaps flashable with nvflash for example. This would give us great opportunities. I'm no dev myself, but I hope I could help.
Click to expand...
Click to collapse
Ah I see so clearly now lol I never thought about that. Thanks
Sent from my Nexus S 4G using XDA Premium App
get the files from the /data/ folder.
We believe some dev tools are in the /data/ folder instead of /system/app/, since other people had some apps disappear after they did a factory reset.
I'd back up everything I could.. assuming MicroSD is at /Removable/MicroSD...
Feel free to sub values according to busybox df -h.. for example, if there are 300MB of files on the data partition... create an image accordingly..
busybox dd if=/dev/zero of=/Removable/MicroSD/data.img bs=1M count=768
Bold indicates that it may have to be done in linux.. in this case.. I'm talking about making the ext4 file system on the created images.. in which case.. loop devices wouldn't be in /dev/block/...
for the acutal script..
busybox dd if=/dev/zero of=/Removable/MicroSD/data.img bs=1M count=768
busybox dd if=/dev/zero of=/Removable/MicroSD/system.img bs=1M count=300
busybox losetup /dev/block/loop2 /Removable/MicroSD/data.img
busybox losetup /dev/block/loop3 /Removable/MicroSD/system.img
mkfs.ext4 /dev/block/loop2
mkfs.ext4 /dev/block/loop3
mkdir /Backups
mkdir /Backups/data
mkdir /Backups/system
busybox mount /dev/block/loop2 /Backups/data
busybox mount /dev/block/loop3 /Backups/system
cd /data/
cp -aR ./ /Backups/data/
cd /system/
cp -aR ./ /Backups/system/
then you can use 'dd' to grab whatever other partitions you can find..
I guess this 'offer' is over with.. but I still have a quesiton.. what size was the device? 16 or 32?
pokey9000 said:
Seriously. There's been a whole lot of dicking around on this, when this would give us everything to pore over offline. Don't let another one go to waste!
Click to expand...
Click to collapse
Agree, would be great to have the whole thing
I'm mostly interesting in the stuff on the /data partition, since they have apps installed on there that are not in the current system dump
I sent itback and got a nice new 3.0 version. Had to pay again though and wait for ebuyer to collect and spend a week checking the old one though before i get my money back. Consider this very bad customer service.
Managed to rip all the apps from app and system/app. Got the ones that were deleted in a factory reset too! Will find a way to make them available soon.
ryukent said:
I sent itback and got a nice new 3.0 version. Had to pay again though and wait for ebuyer to collect and spend a week checking the old one though before i get my money back. Consider this very bad customer service.
Managed to rip all the apps from app and system/app. Got the ones that were deleted in a factory reset too! Will find a way to make them available soon.
Click to expand...
Click to collapse
I'm r34p3rex and I approve of this message.
pokey9000 said:
Seriously. There's been a whole lot of dicking around on this, when this would give us everything to pore over offline. Don't let another one go to waste!
Click to expand...
Click to collapse
Guys im not trying to be negative but did no one read what i posted with the last one ? I did post the partitions as well... the 2.2 version is nothing but a device flashed with wrong software.. the sbk is locked it is all locked and the partitions are all different, take the apps if you want but these devices dont hold any keys or secrets for us. :-(
ryukent said:
I sent itback and got a nice new 3.0 version. Had to pay again though and wait for ebuyer to collect and spend a week checking the old one though before i get my money back. Consider this very bad customer service.
Managed to rip all the apps from app and system/app. Got the ones that were deleted in a factory reset too! Will find a way to make them available soon.
Click to expand...
Click to collapse
Sweet, nice work.

Mms causing force close...

So every time I get a mms from my buddy on t-mo, it causes my messaging app to force close. I am running stock froyo with the overstock kernel. Any thoughts?
Sent from my SAMSUNG-SGH-I897 using XDA App
The stock Samsung MMS app has a size restriction on MMS files. I had this problem too. When I get to my computer I can attach the AOSP MMS app that works on froyo. You just have to put the apk into the /system/app folder and rename the existing MMS app to something like Mms.apk.disabled.
sent from my Pinnacle Powered Captivate
Here is the Mms.apk I promised. Sorry for taking so long to get it. It slipped my mind a few times.
You can't just put this on the SD card and install it like any other apk. You have to have root privileges and either use a terminal emulator or ADB.
Put the Mms.apk I attached on your SD card just in the root folder and run these commands EXACTLY like they are written, do NOT type the things in parenthesis, I only wrote that so you know which command is doing what:
Code:
su (for root access)
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system (to mount as read/write)
cd /system/app
mv ./Mms.apk ./Mms.apk.disabled (to keep the stock Mms.apk to revert to, but not to use)
cp /sdcard/Mms.apk ./
Now reboot and you're all set. This is the stock AOSP Mms.apk so it will look different, but you won't get anymore FC's and I prefer this one much better anyways. I do this on every ROM I use.
Thanks! I actually upgraded to kj3 over the weekend, but haven't had a chance to see if the force close issue is still happening
Sent from my SAMSUNG-SGH-I897 using XDA App
Dnorwood said:
Thanks! I actually upgraded to kj3 over the weekend, but haven't had a chance to see if the force close issue is still happening
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
Well I have the AOSP Mms.apk for GB too so if it is, or if you rather just have that one over the Samsung one then let me know and I'll post it. The one I uploaded only works with Froyo.
sent from my Pinnacle Powered Captivate

New Market 3.3.11 apk

Just wanna let people know new version of market is out if you haven't heard here's the link
http://www.androidpolice.com/2011/1...te-update-over-wi-fi-only-shortcuts-and-more/
Sent from my SAMSUNG-SGH-I997 using XDA Premium App
Does the new market fix the 30mb download limit for infuse ?
thanks downloading
---------- Post added at 04:33 PM ---------- Previous post was at 04:19 PM ----------
does it works in 2.3.7 miui
Installed this the other day. Never had the bug where market would disconnect data but when I upgraded to this market I was getting constant disconnects.
Nordendorf said:
Does the new market fix the 30mb download limit for infuse ?
Click to expand...
Click to collapse
still has it
mine upgraded itself (idk how) but now the 30mb limit is there again
The 30mb download limit is the way android is partitioned on the phone. Samsung basically halfed the partition /cache to give you more app room. Sadly the new market uses that as the download location for the app thus resulting in the limit. I forgot the thread i found this in but if youve rooted and have terminal emulator simply open it up and run these lines of code:
su
cd /
umount /cache
mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
It moves the /cache into /data so as long as you have some free room where your phone stores apps your good. Only side effect is that you have to do it upon every reboot -.- a drag when you keep flashing things or it just crashes. Srry for the long reply, i just couldnt find the thread this was originally at. Post this around anywhere you see people in dismay about the download limit.
Sent from my SGH-I997 using XDA App
nim.whit said:
The 30mb download limit is the way android is partitioned on the phone. Samsung basically halfed the partition /cache to give you more app room. Sadly the new market uses that as the download location for the app thus resulting in the limit. I forgot the thread i found this in but if youve rooted and have terminal emulator simply open it up and run these lines of code:
su
cd /
umount /cache
mount -o rw,remount -t rootfs /
rmdir /cache
mkdir /data/cache
ln -s /data/cache /cache
It moves the /cache into /data so as long as you have some free room where your phone stores apps your good. Only side effect is that you have to do it upon every reboot -.- a drag when you keep flashing things or it just crashes. Srry for the long reply, i just couldnt find the thread this was originally at. Post this around anywhere you see people in dismay about the download limit.
Sent from my SGH-I997 using XDA App
Click to expand...
Click to collapse
After every reboot would be kind of annoying, i tend to reboot my phone a few times a day. Is there any long term cure?
Garen21 said:
After every reboot would be kind of annoying, i tend to reboot my phone a few times a day. Is there any long term cure?
Click to expand...
Click to collapse
Put that into a script and load it with a script manager on boot, or use Entropy's kernel which fixes the market bug.
I finally had it pushed to me today through regulars updates. It's nice. New app logo as well.
Sent from my SAMSUNG-SGH-I997 using xda premium
What's different with this new market update? Looks exactly like my market 3.1
Sent from my SGH-I997 using Tapatalk
After my market auto upgraded itself, it always force closed. I narrowed down the problem to me editing the builprop to have density set at 200. When I set it to 240, it works, but non 240 value it failed and force closed. I replaced the market on my phone with the one distributed with ROM and all is well with density at 200.

Categories

Resources