Restored note 2 to stock firmware but data remained on phone! - AT&T Samsung Galaxy Note II

Hi. I restored my att note 2 back to orginal stock firmware so that i can start fresh again but all of my data remained. Should the data have been removed also? Very new at this and wants to learn. Thanks

It should have been removed
Unless you mean memory stored in the internal storage and external storage
But apps and data should be gone
Sent from my SAMSUNG-SGH-I317 using Tapatalk 4 Beta

My twrp backups remained. All of my rom files are available still that I downloaded. All downloaded apps were removed. My purpose was to remove all this. Instead over 11 gigs of space taken up after restore. Hope this makes sense
Sent from my SAMSUNG-SGH-I317 using xda premium

hey
it does not remove it because when you loaded on the stock firmware you forgot to wipe all the data so hold all 3 buttons and then when you see note 2 release all but the volume up button then go down to factory restore or wipe LOL have not look at the stock screen for a while anyways just clear it there and reboot and it will wipe it all
if you are planning to return or something amke sure you clear the flashes too good instructions from guys here
http://forum.xda-developers.com/showthread.php?t=1992303&page=4
good luck

A simple wipe of user data before and after flashing will prevent the old data issues on internal storage..
All data will remain on external storage obviously...g
Sent from my SAMSUNG-SGH-I317 using XDA Premium HD app

Related

how to fully wipe s3 clean

I jus recentlt rooted my phone and flashed recovery mod and then flashed cm10 and it was working fine and still works fine...
the problem is that in recovery I wiped data and cache and dlvick or whatever its called.I followed the instructions to a t and it all worked fine..but when I went into my sd card info and it says I have 11.95gb and only 2.30gb available. ..I have 7.94gb in miscellaneous files...so I tried wiping again in recovery and flashed my original backup rom and everything works fine except for my big gb games like gta3 etc..so its like it wiped it all or moved it over somehow..how can I fix this? please and thanks!
Sent from my SGH-I747M using xda app-developers app
Get disk usage from the market. It will show you the files using all your storage. It's probably your old CWM backups. You can delete your unused backups through CWM.
Sent from my SGH-I747 using xda premium
d3athsd00r said:
Get disk usage from the market. It will show you the files using all your storage. It's probably your old CWM backups. You can delete your unused backups through CWM.
Sent from my SGH-I747 using xda premium
Click to expand...
Click to collapse
Well i dont want to delete my backup from my phone and i only have 1 backup, im just looking to use the new flash i did lastnite and be able to start with a fresh internal SD i want to wipe it all off, well just the apps and such, not the essential stuff the phone needs to run. so how can i safly do this? im rooted, i flashed to cm10 and then i cleaned and went back to my original rom and looking to clean up whats on the phone to go back and flash my cm10
thanks again!!! dont be too harsh i am a noob to all this :
dorian345 said:
Well i dont want to delete my backup from my phone and i only have 1 backup, im just looking to use the new flash i did lastnite and be able to start with a fresh internal SD i want to wipe it all off, well just the apps and such, not the essential stuff the phone needs to run. so how can i safly do this? im rooted, i flashed to cm10 and then i cleaned and went back to my original rom and looking to clean up whats on the phone to go back and flash my cm10
thanks again!!! dont be too harsh i am a noob to all this :
Click to expand...
Click to collapse
Best bet would to just plug your phone into your pc and see what is taking up so much space. if is misc data, i could see it being zip files and what not.
Or it could be if you flashed 4.2. 4.2 has this profile thing that is only for tablets but they just disabled the function for mobile phones. look through your directories to see if there is anything under sdcard/0/. if there is, make sure you take all the data you want/need out of the /0 directory and put it back under your sdcard and then just delete the /0 directory. Hope it helps.
Or just use the disk usage app I suggested and you completely ignored. It will list your biggest culprits.
Sent from my SGH-I747 using xda premium

[Mod][Utility] Wiping Tools - Simple and Fast

Attached are three recovery flashable wiping tools I use when doing my work.
I find them to be incredibly useful tools that save some power button & volume rocker mashing, and time.
Wipe Cache and Dalvik - Wipes Cache and Dalvik (duh!)
Useful for:
-Flashing GApps
-Resolving app issues
Wipe Full - Wipes Cache, Dalvik, Data, and System
-Wipes just about all data except internal sd card
-Stops just short of a factory reset (does not wipe media)
-Useful for flashing ROMs within a type (e.g. going from one CM ROM to another CM ROM)
Wipe Full Factory Reset - Wipes Cache, Dalvik, Data, System, and internal sd card
-Useful when going from one ROM type to another (e.g. going from CM to TW)
_____________________
This is the part of the updater-script that selectively wipes /data in case anyone wants to add this to their ROM:
Code:
delete_recursive("/data/dalvik-cache");
delete_recursive("/data/app");
delete_recursive("/data/app-asec");
delete_recursive("/data/app-private");
delete_recursive("/data/backup");
delete_recursive("/data/data");
delete_recursive("/data/drm");
delete_recursive("/data/log");
delete_recursive("/data/misc");
delete_recursive("/data/property");
delete_recursive("/data/system");
delete_recursive("/data/time");
delete_recursive("/data/user");
Changing the code above to the code below effectively performs a factory reset
(look at /data/media and you will see your internal sd card)
Code:
delete_recursive("/data");
As Always - Flash at your own risk!
First! And am trying it* now
Sent from my SPH-L710 using xda app-developers app
This would be nice as long as it doesn't do what the other wipe zips did posted awhile back....
w8setter said:
This would be nice as long as it doesn't do what the other wipe zips did posted awhile back....
Click to expand...
Click to collapse
I use these all the time. There should be no problems.
The only possible issue is that there are additional Sprint specific folders in /data that should be deleted as well to complete the wiping process.
What happened with the other wipe zips?
Um read the post and the part where it says wipe everything except internal sd......does this mean it'll wipe external sd as well or not?
Also does this wipes Sprint specific files and if it does what's the repercussion?
Sent from my SPH-L710 using xda app-developers app
fabzbear said:
Um read the post and the part where it says wipe everything except internal sd......does this mean it'll wipe external sd as well or not?
Also does this wipes Sprint specific files and if it does what's the repercussion?
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
Full Wipe is just like a factory reset, except it does not wipe your internal sd card. And like a factory reset, this will not wipe your external sd card. As shown in the OP it only wipes files in /data.
The repercussions are effectively the same as a factory reset you would perform in recovery.
I added a full wipe with factory reset zip to the OP and updated the post to reflect the changes.
upndwn4par said:
I use these all the time. There should be no problems.
The only possible issue is that there are additional Sprint specific folders in /data that should be deleted as well to complete the wiping process.
What happened with the other wipe zips?
Click to expand...
Click to collapse
There was a previous mod created by someone who just kind of copied and pasted and the wipe actually wiped some serious items that caused the phone to brick. I don't remember what it actually wiped (partition I think) but it was very important to the phone, it was eventually fixed but there were a lot of angry people with shiny new paperweights instead of phones.
Jfree3000 said:
There was a previous mod created by someone who just kind of copied and pasted and the wipe actually wiped some serious items that caused the phone to brick. I don't remember what it actually wiped (partition I think) but it was very important to the phone, it was eventually fixed but there were a lot of angry people with shiny new paperweights instead of phones.
Click to expand...
Click to collapse
Hopefully one of the local devs that you guys trust will stop by and give these zips the all clear.
Otherwise you will be without some handy tools.
Can any dev's confirm, yet
¡Puta Barca!
VikingoRMCF said:
Can any dev's confirm, yet
¡Puta Barca!
Click to expand...
Click to collapse
You already tried them when you flashed CSROM.
Cool, then I can say it works great!
Thank you!
Jfree3000 said:
There was a previous mod created by someone who just kind of copied and pasted and the wipe actually wiped some serious items that caused the phone to brick. I don't remember what it actually wiped (partition I think) but it was very important to the phone, it was eventually fixed but there were a lot of angry people with shiny new paperweights instead of phones.
Click to expand...
Click to collapse
I remember that.....good memory. Thanks for these brother.
D
Sent from my Slider SL101 using xda premium
I just wanted to confirm that when I was switching from Paranoid Android (CM10 based ROM) to Galaxy S fre3 2.34d (TW based ROM), I was left with about 2.5GB of internal space because the wipe options in recovery were not wiping properly.
I successfully used the factory reset zip and then flashed a new ROM and now have 11.65GB available on internal storage.
THANKS OP!
Thanks to the OP for his work. Now, stupid "user who doesn't know anything" question;
Some instructions and videos say to use the "format" function (e.g.; format system format cache, etc)
In the command code: what is different between a "wipe" and a "format"?
Sent from my SPH-L710 using Xparent Skyblue Tapatalk 2
I would try this but im old school hehe
Sent from my Nexus S 4G using Tapatalk 2
Just what i needed, it works flawlessly
I was running a CM M1 nightly and wanted to update I used the wrote and factory reset zip and it wiped my entire internal memory...
I'm not sure why this happened I used this zip before without issue but it sucked getting phone restored and trying to in delete at least pictures on the phone.
I noticed that the least couple of nightlies is creating a folder called 0 and moving all directories there. Not sure if that had anything to do with it.
I just wanted to share not complaining. Thanks! :beer:
Sent from my SPH-L710 using xda premium
edisonalvarez said:
I was running a CM M1 nightly and wanted to update I used the wrote and factory reset zip and it wiped my entire internal memory...
I'm not sure why this happened I used this zip before without issue but it sucked getting phone restored and trying to in delete at least pictures on the phone.
I noticed that the least couple of nightlies is creating a folder called 0 and moving all directories there. Not sure if that had anything to do with it.
I just wanted to share not complaining. Thanks! :beer:
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Lolololol sucks for you.
Sent from my SPH-L710 using Xparent Skyblue Tapatalk 2
edisonalvarez said:
I was running a CM M1 nightly and wanted to update I used the wrote and factory reset zip and it wiped my entire internal memory...
I'm not sure why this happened I used this zip before without issue but it sucked getting phone restored and trying to in delete at least pictures on the phone.
I noticed that the least couple of nightlies is creating a folder called 0 and moving all directories there. Not sure if that had anything to do with it.
I just wanted to share not complaining. Thanks! :beer:
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Sorry you lost your files.
The factory reset zip does perform a factory reset. That is what it is supposed to do.
Are you sure you didn't use the full wipe before?
I always store my important stuff on my external sd card so this can't happen. I also keep the factory reset zip in a separate folder so I can't use it by accident (I've done that before).
And yes, the CM 10.1 ROMs will create the "0" folder (which is for profiles) and will also usually create new (often multiple) sdcard0 folders.

Storage space problem after flash?

I just flashed the XenonHD stable 5.0 ROM on my Gnex (clean flash), coming from LIQUIDSMOOTH. Before the wipe/flash I had only used about 9.4 or 9.7GB (can't remember which) of my 13.33GB of data. After wiping/flashing, re-downloading my apps, etc. It says I've used about 13GB of storage, with roughly 500MB left. I deleted all my music which cleared about 3.04GB, but I can't just not have my music. Any ideas on why this happened?
Sent from my Galaxy Nexus using xda premium
Look in the Storage section of settings. Should show you what's using the memory. Could also be NANDroids just sitting there taking 1-2gb each.
Are you coming from android version 4.1.1?
The biggest thing is miscellaneous files. The two taking up the most space are clockworkmod and 0. I noticed I now have sdcard/0/0. They all sdcard/0 seems to be my normal root folder, but the second one is my old root folder before wiping and flashing. That's where I deleted all my music, since that's where it was before wiping and flashing.
And my previous ROM was on 4.2.1, this one is 4.2.2
Sent from my Galaxy Nexus using xda premium
Then why did you have to ask us?Update your recovery to one that properly handles the new file system. Delete some of the NAND's stored in CWM. Get rid of all the 0's except one.
I asked because I had no idea that's what I should do. How do I go about doing that? Not everyone's a genius at this.
Sent from my Galaxy Nexus using xda premium
R: Storage space problem after flash?
Fast simple way Imho is to install goomanager, install script from that (it update to last Twrp recovery) wipe e re flash your favorite rom.
Send from GNex with Tapatalk 2
I figured everything out.
Sent from my Galaxy Nexus using xda premium

Files left behind after flashing new rom

Hi all,
wondered if anyone can help.
I have been playing with new roms on my note 2 and after I flash a new rom I am still noticing files left on the phone from old apps.
I use clockwork mod to flash, I factory reset, format system, clear dalvex (might not be whats its called but u know what I meen) and then flash. Is there any thing im missing as I want a clean phone
Sent from my GT-N7105 using xda app-developers app
seesor said:
Hi all,
wondered if anyone can help.
I have been playing with new roms on my note 2 and after I flash a new rom I am still noticing files left on the phone from old apps.
I use clockwork mod to flash, I factory reset, format system, clear dalvex (might not be whats its called but u know what I meen) and then flash. Is there any thing im missing as I want a clean phone
Sent from my GT-N7105 using xda app-developers app
Click to expand...
Click to collapse
Clear Cache,Dalvik Cache, Factory reset, this should help you in clearing them, If still any files left behind may be there are from this new ROM your assuming they are left over from previous rom no but still this rom also has those apps.
If there are files left over from old apps, they're probably the files stored on the internal SD Card. I think they're usually in /sdcard/android or something
Sent from my GT-N7100 using Tapatalk 4 Beta
If you want a clear installation you can format internal memory from your recovery or flash the Mega/Super wipe script before flashing the new rom.

Internal SD wipe ok?

I just got an extended battery and wanted to wipe my internal SD so I can have a clean start and flash revolt with lightning kernel. I have no access to a computer. Would it be safe to put the ROM on my SD then wipe internal, then flash all in one recovery session? Thanks
It is probably ok. Although just to be sure I would stick a reboot in between.
Sent from my SPH-L900 using Tapatalk 2
patrao_n said:
It is probably ok. Although just to be sure I would stick a reboot in between.
Sent from my SPH-L900 using Tapatalk 2
Click to expand...
Click to collapse
But if I reboot I wouldn't be able to get back into recovery though right? Or would it not wipe that part?
If you just wipe internal only you still have a rom. If you format system your rom is gone. And you can just reboot recovery its much faster. You can go ahead and try it all at once. Worst outcome is you reflash the rom. No biggie
Sent from my SPH-L900 using Tapatalk 2
Yeah I just wanted to do a complete internal SD wipe, I didn't want to get locked out with no recovery. I'll wipe, then reboot then wipe ROM I guess then flash
hrffd said:
Yeah I just wanted to do a complete internal SD wipe, I didn't want to get locked out with no recovery. I'll wipe, then reboot then wipe ROM I guess then flash
Click to expand...
Click to collapse
If you go to settings/storage and format your internal, it will wipe it clean, but you'll still have your ROM.Just did it the other day.
Sent from my SPH-D710BST using xda premium
Thanks guys. It's just internal SD, not sure why I was thinking about the internal phone storage.
Sent from Sprint Samsung Epic 4G Touch
Well to me internal phone storage is internal sd card. The reason I didnt say for you to wipe that in setting is because I was unsure of the rom. As far as I can remember some stock roms had the brick bug still in it if you access the wipe by settings> storage.
Sent from my SPH-L900 using Tapatalk 2
Either way, I'm on a night shift and tired as hell, didn't think it through haha. Thanks for the help
Sent from Sprint Samsung Epic 4G Touch

Categories

Resources