Hello!
Today I just wanted to revert back to the newest MIUI weekly (with the stock kernel). It's just suits best for my daily usage. Before that, I've used bunch of Custom ROM's, used Siyah kernel and done some OC.
Now, my question is: Together with the usual things like:
- Wipe data/factory reset
- Wipe cache
- Wipe dalvik cache
Is it good idea to also format partitions under CWM recovery (/system, /data or some others) to get as fresh, clean install as possible (just don't want to have any traces of ROM's, kernels or settings I had before). Didn't find any clear answers about that so that's why I'm posting it here.
Thanks!
I've done it a couple of times, had no problems. Just be sure to have the MIUI (Or whatever ROM you want to use) zip on the SD card.
Hi!
Yes, I do have the MIUI ROM zip on my device. So, to get as fresh install as possible, should I format all those partitions ? (/system, /data, /boot, /cache)?
matee89 said:
Hello!
Today I just wanted to revert back to the newest MIUI weekly (with the stock kernel). It's just suits best for my daily usage. Before that, I've used bunch of Custom ROM's, used Siyah kernel and done some OC.
Now, my question is: Together with the usual things like:
- Wipe data/factory reset
- Wipe cache
- Wipe dalvik cache
Is it good idea to also format partitions under CWM recovery (/system, /data or some others) to get as fresh, clean install as possible (just don't want to have any traces of ROM's, kernels or settings I had before). Didn't find any clear answers about that so that's why I'm posting it here.
Thanks!
Click to expand...
Click to collapse
For best result, install stock ROM & then hard reset . After that you install whatever you want .
Sent from my GT-I9100 using XDA App
Thanks sendhiloo7! I will do it then
hi,
this ROM works very nice for me, thanks all the deveopers!
i have few questions:
(1) since this ROM has OTA updater (it seems, from the changelog), next time when the new version is realeased, can i just update the ROM via OTA updater?
(2) i dont really understand what “Wipe cache/dalvik” and “Wipe data / factory reset” really do. my guess is that “Wipe data / factory reset” repartitions the internal flash memory of the original memory, so we can use all the memory for our purpose. (not like original Nook Tablet, in which they dedicate only 1GB for personal usage)
if i understand all these correctly, this means next time if i flash the new ROM and want to keep the old data, i should not do "Wipe data / factory reset", but only need to do "Wipe cache/dalvik"? is this correct?
thanks so much,
Jun
junkoi said:
hi,
this ROM works very nice for me, thanks all the deveopers!
i have few questions:
(1) since this ROM has OTA updater (it seems, from the changelog), next time when the new version is realeased, can i just update the ROM via OTA updater?
(2) i dont really understand what “Wipe cache/dalvik” and “Wipe data / factory reset” really do. my guess is that “Wipe data / factory reset” repartitions the internal flash memory of the original memory, so we can use all the memory for our purpose. (not like original Nook Tablet, in which they dedicate only 1GB for personal usage)
if i understand all these correctly, this means next time if i flash the new ROM and want to keep the old data, i should not do "Wipe data / factory reset", but only need to do "Wipe cache/dalvik"? is this correct?
thanks so much,
Jun
Click to expand...
Click to collapse
Wipe data/factory reset is an option in CWM Recovery. Really all it does (from the screen messages) is format both /data and /cache.
Assuming you have CWM Recovery (though I imagine that there are similar entries in TWRP, I've just never used it), to wipe both of the caches you will first need to go to the entry "Wipe Cache Partition", which I believe is directly below Wipe Data/Factory Reset. Do that 3x (that's always been the recommendation, anyway) then go to Advanced and click on Wipe Dalvik Cache (again, 3x).
Again, assuming CWM Recovery, when you're in the recovery Vol Up/Down goes up and down in the list, the 'n' key is for Enter, and the Pwr button goes back.
I don't know about the OTA Updater. I always download and install ROMs (on both my phone and my NT) via Recovery.
Since this is a CM10 based rom you probably don't want to do the ota updater since that is a Cyanogenmod feature. This rom is optimized for the Nook from the CM10 Source I would presume. I personally tried the ota uldater since i get the notifications all the time but i get an error message something like "can't verify the source with a string of numbers". Stick to the recovery based flash installation.
Sent from my SPH-L710 using xda app-developers app
---------- Post added at 10:48 AM ---------- Previous post was at 10:10 AM ----------
I agree with liquidzoo that you should probably do the wipe cache, wipe dalvik cache and factory reset 3times seems like overkill but you can never be too safe. Also i use twrp recovery and click the system button and wipe system a few times as well.
Sent from my SPH-L710 using xda app-developers app
kobhomye said:
I agree with liquidzoo that you should probably do the wipe cache, wipe dalvik cache and factory reset 3times seems like overkill but you can never be too safe. Also i use twrp recovery and click the system button and wipe system a few times as well.
Sent from my SPH-L710 using xda app-developers app
Click to expand...
Click to collapse
I wipe /system 3x as well (under Mounts in CWM Recovery) when I'm installing a new ROM.
liquidzoo said:
I wipe /system 3x as well (under Mounts in CWM Recovery) when I'm installing a new ROM.
Click to expand...
Click to collapse
I'm not picking on you personally, but deleting and/or wiping partitions (in the case of /system) or directories (dalvik-cache) three times as opposed to once is completely unnecessary. You'll gain nothing by running the command three times over running it once, assuming you received no errors the first time.
When wiping the dalvik cache, both CM recovery and TWRP perform an "rm -rf /data/dalvik-cache" command using the shell. It's not Windows, and is unlikely to fail when passed the "-f (force)" option along with the "-r (recursive)" option.
In the case of wiping the /system partition, again both CM and TWRP write out zeros to clear the data on the partition. I would be suprised if CWM acted differently from CM and TWRP when wiping dalvik-cache and /system.
The only reason I bothered to look into what these commands actually do is to prevent a user from thinking there's a corellation between a failure to wipe 3x versus a problem they're having. If a 3x wipe "fixes" something for you, whatever the problem was, it's very unlikely that the second or third wipe was what fixed it but instead it was more likely a result of a clean install of the ROM.
References from source:
TWRP Wipe Dalvik - https://github.com/TeamWin/Team-Win...548de276b62c0e9af8661e/extra-functions.c#L986
TWRP Wipe/Format System - https://github.com/TeamWin/Team-Win...8de276b62c0e9af8661e/mtdutils/mtdutils.c#L498
CM Wipe Dalvik - https://github.com/CyanogenMod/andr...aa7ff3d06d5dd115b16c/extendedcommands.c#L1292
CM Wipe/Format System - https://github.com/CyanogenMod/andr...aa7ff3d06d5dd115b16c/mtdutils/mtdutils.c#L498
Have fun modding!
No worries, it's just something I've always done as it's been recommended to me in the past (there are some ROM developers that recommend 5x, actually). I'm not saying that 3x over 1x is any better, but I've never had issues. YMMV, but it doesn't take much more time and I like being thorough.
liquidzoo said:
Wipe data/factory reset is an option in CWM Recovery. Really all it does (from the screen messages) is format both /data and /cache.
Assuming you have CWM Recovery (though I imagine that there are similar entries in TWRP, I've just never used it), to wipe both of the caches you will first need to go to the entry "Wipe Cache Partition", which I believe is directly below Wipe Data/Factory Reset. Do that 3x (that's always been the recommendation, anyway) then go to Advanced and click on Wipe Dalvik Cache (again, 3x).
Click to expand...
Click to collapse
sorry, but can you confirm that when i upgrade to the new ROM (from the same author), it is really necessary to Wipe cache &Dalvik cache?
i am confused because somebody told me that i can just flash the ROM by installing the ZIP file (containing the ROM), and reboot the Nook without having to wipe or clean anything.
thanks,
JK
Flashing a ROM
junkoi said:
sorry, but can you confirm that when i upgrade to the new ROM (from the same author), it is really necessary to Wipe cache &Dalvik cache?
i am confused because somebody told me that i can just flash the ROM by installing the ZIP file (containing the ROM), and reboot the Nook without having to wipe or clean anything.
thanks,
JK
Click to expand...
Click to collapse
I don't know if I am doing it right or wrong but I have flashed numerous ROMs and lately have flashed every version of SGT7+CM10+Cherry Picks,By meghd00t. from 24/09 thru my current installation of 08/10 with only one glitch and that was when I flashed enhancements v2 on top of v1.
I have never had any other issues with the above mentioned ROMs except when I flashed 04/10 with enhancement v2. I didn't have the tablet option.
The way I do it is as follows:
1. format /system
2. format /data
3. Flash ROM
4. Flash CWM emmc
5. Flash GAPPs
6. Reset Factory/format data
7. Remove CWM SD card put in data SD Card with Flash Player (no longer avail on Google Play)
8. Boot from CWM menu
Takes awhile to boot this first time. When booted up I bypass the setup screens.
9. Manually set up wireless (need to access auth web site at work and need wireless to be working to accomplish that)
10. Browse to a web site and get redirected to auth page.
11. Auth
12. Set up Google account and other settings, especially under Security <Install from other locations>
13. Download apps I want from Google.
At this first boot SD card is not mounted.
14. Shut down and do a cold boot.
Now I can see SD Card.
15. Install Flash Player from External SD Card.
16. Install Crackle from Play Store.
Now I check Pandora for Audio, Crackle for Video, other apps I use, utilities, keyboards, launchers, games, etc.
So far since Version 24/09 everything has worked for me with the two exceptions above, tablet mode with 04/10 with enhancement v2 and when I flashed enhancement v2 over enhancement v1.
I am now running 08/10 and am very happy with the performance, battery drain is more than CM7 but that is to be expected from a fairly new ROM but not so bad that it is unacceptable, to me at least.
I have never had a black screen or arbitrary reboot (knock on wood). However I do turn my tablet off when I am finished using it, so don't know about deep sleep. I'm using OnDemand, and three launchers without one being the default....Apex, Nova and Trebucket.
All I can say is these developers really ROCK, way to go guys!
--------------------------------------------------------------------------------
MojoGB said:
The way I do it is as follows:
1. format /system
2. format /data
3. Flash ROM
4. Flash CWM emmc
5. Flash GAPPs
6. Reset Factory/format data
7. Remove CWM SD card put in data SD Card with Flash Player (no longer avail on Google Play)
8. Boot from CWM menu
Click to expand...
Click to collapse
You don't need to re-flash CWM every time you flash a ROM. Also, it doesn't make sense to me why you would do a factory reset/format after flashing the new ROM, I would think it would be done prior to flashing the ROM but maybe it doesn't make a difference, I don't know.
I've got TWRP installed to the emmc so I just download the new ROM to the SD with GooManager, reboot into recovery, do a backup, factory reset, flash new ROM & GApps and reboot. Only takes a few minutes.
Reflash ROM
LifeWOutMilk said:
You don't need to re-flash CWM every time you flash a ROM. Also, it doesn't make sense to me why you would do a factory reset/format after flashing the new ROM, I would think it would be done prior to flashing the ROM but maybe it doesn't make a difference, I don't know.
I've got TWRP installed to the emmc so I just download the new ROM to the SD with GooManager, reboot into recovery, do a backup, factory reset, flash new ROM & GApps and reboot. Only takes a few minutes.
Click to expand...
Click to collapse
Tried it as you mentioned, doing a factory reset before flashing the ROM and got a black screen and wouldn't boot. May have been a fluke but the way I mentioned above gives me a good image and alway boots. Don't know why, but if it works for me, I will continue to do it this way as long as it works for me. I have flashed numerous other ROMs the same way with good results each time.
junkoi said:
sorry, but can you confirm that when i upgrade to the new ROM (from the same author), it is really necessary to Wipe cache &Dalvik cache?
i am confused because somebody told me that i can just flash the ROM by installing the ZIP file (containing the ROM), and reboot the Nook without having to wipe or clean anything.
thanks,
JK
Click to expand...
Click to collapse
For an update, yes it is recommended to clear both caches. To be clear, this is only for an update. If it is a new ROM, or if the author recommends it, you should also wipe /data and /system first.
You can just flash without clearing them, but you might run into unexpected issues, so it's not recommended.
MojoGB said:
Tried it as you mentioned, doing a factory reset before flashing the ROM and got a black screen and wouldn't boot. May have been a fluke but the way I mentioned above gives me a good image and alway boots. Don't know why, but if it works for me, I will continue to do it this way as long as it works for me. I have flashed numerous other ROMs the same way with good results each time.
Click to expand...
Click to collapse
I get a black screen for a while on first boot too, but it only last a couple minutes at the most and if you shine a bright light at the screen you can see the CM logo spinning. Are you sure it was hung?
Sent from my Barnes & Noble Nook Tablet using xda premium
When you clear the Dalvik cache, it clears out data stored in your applications. When you turn on your Nook after clearing the Dalvik, the first thing it does is it rebuilds the Dalvik cache, that's why it seemed like it hung on startup. I believe the long black screen in the beginning is when it rebuilds Dalvik for core Android apps and then when it says "Optimizing Apps", that's for the rest of your applications. The more apps you have, the longer it will take to build the Dalvik. No need to freak out, just a little patience is all you need. Correct me if I'm wrong, however, as I'm still pretty much a noob at this... :laugh:
Flash a Rom
topdawg7793 said:
When you clear the Dalvik cache, it cleares out data stored in your applications. When you turn on your Nook after clearing the Dalvik, the first thing it does is it rebuilds the Dalvik cache, that's why it seemed like it hung on startup. I believe the long black screen in the beginning is when it rebuilds dalvik for core Android apps and then when it says "Optimizing Apps", that's for the rest of your applications. The more apps you have, the longer it will take to build the dalvik. No need to freak out, just a little patience is all you need. Correct me if I'm wrong, however, as I'm still pretty much a noob at this... :laugh:
Click to expand...
Click to collapse
Well fhe screen was black, no light at all and I waited for over five minutes for the Flash Screen to come up and it never did. Yes I know when you are waiting time drags. But due to the ROMS always taking awhile to boot up the first time I actually pay attention to how long it takes. No more then 2 minutes in my experience. I had to hold the power button in for a long time until it finally booted in B&N Recovery. Used my sequence mentioned in earlier post to flash the ROM again and everything worked as it should, GREAT. The number of APPs shouldn't be an issue as these ROMS only have the very basic apps.
I have read this forum and see the various and asundry errors some are getting, so far I have never gotten a major error, except for when I forgot to do the Wipe Data/Factory Reset after flashing.
I also got the "No Tablet Mode Option" with 04/10 with enhancement v2.
But I consider these minor issues and currently am running 08/10 with no issues, works smoother then any version of Microsoft Windows I have dealt with.
These developers are exceptional.
MojoGB said:
I don't know if I am doing it right or wrong but I have flashed numerous ROMs and lately have flashed every version of SGT7+CM10+Cherry Picks,By meghd00t. from 24/09 thru my current installation of 08/10 with only one glitch and that was when I flashed enhancements v2 on top of v1.
I have never had any other issues with the above mentioned ROMs except when I flashed 04/10 with enhancement v2. I didn't have the tablet option.
The way I do it is as follows:
1. format /system
2. format /data
3. Flash ROM
4. Flash CWM emmc
5. Flash GAPPs
6. Reset Factory/format data
7. Remove CWM SD card put in data SD Card with Flash Player (no longer avail on Google Play)
8. Boot from CWM menu
--------------------------------------------------------------------------------
Click to expand...
Click to collapse
oh, so you always reset factory every time you upgrade the ROM? that way will delete all the old data/apps you installed, so you need to install all the apps again?
this is my concern, because i dont want to reinstall apps, or lose my data. so i think i just need flash the new ROM, then Wipe cache/Dalvik cache, and hopefully all the old apps and data are still intact.
thanks.
MojoGB said:
I don't know if I am doing it right or wrong but I have flashed numerous ROMs and lately have flashed every version of SGT7+CM10+Cherry Picks,By meghd00t. from 24/09 thru my current installation of 08/10 with only one glitch and that was when I flashed enhancements v2 on top of v1.
--------------------------------------------------------------------------------
Click to expand...
Click to collapse
i have some questions on the "Enhancements":
(1) the correct way to install them is to flash version 1 first, then immediately flash version 2 right after version 1 (without having to reboot first)?
(2) i am not sure what i will get with this "enhancements". they will make video/audio playing more smoothly? is the quality improvement really noticable? anything else, like they make the battery last longer, for example?
thanks,
Jun
If you're running 08/10, the enhancements are not needed. That's my understanding at least. I had problems with V2 so I decided to not install them while on 04/10.
Sent from my Barnes & Noble Nook Tablet using xda premium
Flash Rom
junkoi said:
i have some questions on the "Enhancements":
(1) the correct way to install them is to flash version 1 first, then immediately flash version 2 right after version 1 (without having to reboot first)?
(2) i am not sure what i will get with this "enhancements". they will make video/audio playing more smoothly? is the quality improvement really noticable? anything else, like they make the battery last longer, for example?
thanks,
Jun
Click to expand...
Click to collapse
If you flash enhancement v2 on top of version 1 you will have problems, UI will stop. If you only flash v2 you will not have the Tablet Mode Option. So my understanding is that you can use either v1 or v2 but not both.
ROM 08/10 does not need either enhancement as indicated by the developer. ROM 08/10 works great by itself is my experience.
If I'm installing a ROM, backup the existing ROM and wipe everything.
If I'm installing a .zip package like GApps or an enhancement, backup the existing ROM, wipe Data/Dalvik.
Folks, these are development ROMS. Thar be bugs in thet thar code. It's going to take you longer than the time you think you're going to save by doing a dirty flash, and then having to restore the thing to stock (worse case) only to start all over.
Don't ask how I know.
wellersl said:
If I'm installing a ROM, backup the existing ROM and wipe everything.
Click to expand...
Click to collapse
so it is possible to back up the existing data/apps, then restore them back after the new ROM is flashed? could you please confirm this?
if so, how & what is the right steps to do the backup? can we still use CWM, or use ROM Manager, or other tools?
thanks
Hey everyone, I am looking for a little clarification on something. I have a Canadian Rogers i717r. I am running the stock Rogers Jellybean ROM I717RUXMD1_I717RRWCMD1_RWC, with root. Recently, I have been noticing some issues with it hanging, and doing other odd things, so I just think it is time for a reinstall. I may have installed a bad app or something along the way, because it does happen from time to time. My main question is this: How do I do a complete system wipe? Now I am talking every old file, so there are no remnants of the old information left. I have done the factory wipe and dalvik wipe, along with the cache wipe, prior to installing a ROM, every time I have done a new ROM install.. It always seems to leave files behind though. Old game files will still be there and such. Is there a way to get rid of it all, so it is a complete clean slate for the install?
Now, I use TWRP, but the idea is generally the same when it comes to this procedure, and I have found these instructions online;
-- The correct procedure for doing a full wipe is below.
Go to clockworkmod recovery.
Volume up, power button, and home button all pressed together for a couple of seconds.
Go to Advanced menu and wipe the dalvik cache and batt stats if present!
Go to mounts and storage and select it.
Go to format / system and select it.
Scroll down to format system and select yes.
Go to format / data and select it
Scroll down to format data and select yes.
Go to format / cache and select it.
Scroll down to format cache and select yes.
Now go back and install the rom from the internal or external sd card.
This is the correct way of doing a full wipe everything is erased and formatted ready for the new rom, no old system files, old kernel remnants etc....
I am curious as to what will have to be done after the install is complete. I am going to lose ALL of the info. I would basically need to redo all the programming on the phone, including the IMEI and all the info for the networks and what the phone needs to recognize what network it is allowed to access and such. Is this what it will boil down to? I will basically need to reprogram the behind the scenes info also, or no?
Thanks in advance!
Shad
ShadNuke said:
Hey everyone, I am looking for a little clarification on something. I have a Canadian Rogers i717r. I am running the stock Rogers Jellybean ROM I717RUXMD1_I717RRWCMD1_RWC, with root. Recently, I have been noticing some issues with it hanging, and doing other odd things, so I just think it is time for a reinstall. I may have installed a bad app or something along the way, because it does happen from time to time. My main question is this: How do I do a complete system wipe? Now I am talking every old file, so there are no remnants of the old information left. I have done the factory wipe and dalvik wipe, along with the cache wipe, prior to installing a ROM, every time I have done a new ROM install.. It always seems to leave files behind though. Old game files will still be there and such. Is there a way to get rid of it all, so it is a complete clean slate for the install?
Now, I use TWRP, but the idea is generally the same when it comes to this procedure, and I have found these instructions online;
-- The correct procedure for doing a full wipe is below.
Go to clockworkmod recovery.
Volume up, power button, and home button all pressed together for a couple of seconds.
Go to Advanced menu and wipe the dalvik cache and batt stats if present!
Go to mounts and storage and select it.
Go to format / system and select it.
Scroll down to format system and select yes.
Go to format / data and select it
Scroll down to format data and select yes.
Go to format / cache and select it.
Scroll down to format cache and select yes.
Now go back and install the rom from the internal or external sd card.
This is the correct way of doing a full wipe everything is erased and formatted ready for the new rom, no old system files, old kernel remnants etc....
I am curious as to what will have to be done after the install is complete. I am going to lose ALL of the info. I would basically need to redo all the programming on the phone, including the IMEI and all the info for the networks and what the phone needs to recognize what network it is allowed to access and such. Is this what it will boil down to? I will basically need to reprogram the behind the scenes info also, or no?
Thanks in advance!
Shad
Click to expand...
Click to collapse
First, If you're currently using TWRP I'd suggest updating to the latest version, if you haven't already. There's a few of the newer ROMS which specifically require it. On the question of wiping, before you get too carried away it might help you to backup a few things. Within TWRP (ver 2.8.1.0) you have the options to backup EFS (anywhere you please, Internal storage, internal SDcard or MicroSD card) by clicking on the Storage: bar just above the swipe icon. Your IMEI >> located within EFS folder. Also, search the TWRP website for more specific instructions. What you posted is CW instructions. Hope it helps!
LOOK HERE!!
TWRP version 2.8.1.0: http://teamw.in/project/twrp2
TWRP XDA post: http://forum.xda-developers.com/showthread.php?t=2551499
Hi, I'm not exactly new to XDA, however my Note is my first real Android phone. My question is this: If I want to make a backup of the entire phone, so that I can install a new ROM, then restore the phone to exactly the way it was before I installed said ROM, what do I need to select to back up in TWRP? I'm wanting to play with the Lolipop build for i717. I already have a good EFS backup stored separately just in case, so I need to select System, Data, and Boot, and this will save the kernel and the ROM contents, correct? ...and when I restore this backup it will be just like I left it, right?
Also, what do I need to select to Wipe to perform a 'Full Wipe' as is recommended before install?
Thanks for your time.
-josh
joshsmit07 said:
Hi, I'm not exactly new to XDA, however my Note is my first real Android phone. My question is this: If I want to make a backup of the entire phone, so that I can install a new ROM, then restore the phone to exactly the way it was before I installed said ROM, what do I need to select to back up in TWRP? I'm wanting to play with the Lolipop build for i717. I already have a good EFS backup stored separately just in case, so I need to select System, Data, and Boot, and this will save the kernel and the ROM contents, correct? ...and when I restore this backup it will be just like I left it, right?
Also, what do I need to select to Wipe to perform a 'Full Wipe' as is recommended before install?
Thanks for your time.
-josh
Click to expand...
Click to collapse
Use gimmeitorilltell's version of twrp as some specifics have not made it to official version. I've had great results using 2.8.0.0 though I believe some newer versions are working now as well. I backup android secure as well. Not sure if this is necessary, it was the default setting. Wipe is generally accepted as factory reset usually followed by going to advanced wipe and checking cache, and dalvik cache and wiping these again. Then install your new rom zip, gapps zip if required, wipe cache and dalvik cache and reboot. First boot will take a long time. Possibly as long as 5 minutes or more. Once booted let rom settle for at least 10 minutes before adjusting any settings. Good luck.
Edit: Your backed up rom system will restore everything back to the way it was if you desire to go back (installed apps and settings as well).
Sent from my SAMSUNG-SGH-I717
Thanks @developweb, works perfectly. Also thanks to @gimmeitorilltell for his TWRP and Lollipop ROM.
Sent from my SAMSUNG-SGH-I717 using XDA Free mobile app