Affichage des articles dont le libellé est 'nandroid'. Afficher tous les articles
Affichage des articles dont le libellé est 'nandroid'. Afficher tous les articles

mardi 25 mars 2014

How often do you Nandroid? topic




Hi all,

How often do you backup your Nandroid? Frequent? Before and/or after every major change (assuming stability)? Only once (with the stock ROM/kernel/efs/etc, before any major change)?

I've just received my Nexus. I plan on backing up the nandroid frequently but most likely not the efs - I do not plan on messing with the modem. Probably will stay on stock ROM and Franco so not many changes on that end.





lundi 24 mars 2014

[Q] nandroid online and CWM recovery topic




can I use http://androtab.info/clockworkmod/rockchip/rk3066/ (generic cwm) recovery with lava etab xtron plus, I have successfully rooted the phone now it is the turn of recovey, and does the nandroid online backup require custom recovery? I was thinking about making a backup before installing recovery, also if it fails is there a chance of bricking?





mardi 18 mars 2014

Unable to create nandroid backup topic




I am unable to create a Nandroid backup of my gs
The problem is I can't find backup n restore option in recovery mode
Plz help
I have cwm 5xxx flashed in my device
Sent from my GT-S5282 using xda premium





lundi 10 mars 2014

[Q] Help needed in advance restore of nandroid backup topic




Hey people im a newbie here and i want to learn stuff about android.
Recently i checked out the cm 11(4.4.2) roms for my XM... they were good but most of the releases are in the beta stages... I reverted to my stock rom(4.1.2) after a try...

I had a backup of my earlier stock rom(4.1.2) which i restored through cwm successfully.. all went great.. But then the liquid smooth rom came in and i wanted to try it... it was great... i made a clean flash of the liquid smooth rom from my stock... i had a backup of my cm11(4.4.2) rom from before.. i made an advance restore of the data from it(4.4.2 to 4.4.2) and everything went well...

Now my question is if in case i do an advance restore of data from my stock rom backup(4.1.2) to the liquid smooth rom(4.4.2)... will i get any issues??

Thanks for helping in advance.. :)





[Q] Nandroid backup topic




im wanting to do a full nandroid back up as ive just rooted ny LG-D802, but i have a concern.

Im assuming that the backup file created is pretty big in size.
Approximately how big?

As i have the D802 i have no SD slot, so memory runs out pretty fast!

I currently have around 3GB of free space, and could potentiall free up another 1 or 2 gb by removing all my music and photos / videos?

Am i going to be able to complete a full back up?
Or will i run out of space?





dimanche 9 mars 2014

[Q] Restoring CM11 NANDroid After Brick topic




Hi guys,

I tried searching for it but can't seem to find the answer.
I made multiple backups (on the SD card) using CWM while on CM11 before I tried to flash a custom kernel.
That kernel soft-bricked my phone. To get my phone working again, I used flashtools to flash a stock ROM.

Question: At what point can I restore using the backup made?
Can I restore as soon as I have CWM on my phone again or do I have to have cyanogenmod on it again etcetc

Cheers





vendredi 7 mars 2014

[Q] Nandroid Backup Not Complete topic




So I'm doing a nandroid on my VS980, and when I restore it.... it doesn't restore everything. It's not even getting half the apps. Am I doing something wrong? It's a backup that's being kicked off by ROM Installer.





Flashing stock KK and nandroid restore deodexed stock 4.4 topic




Can it be done so I can keep my data with the the exception of having a new upgraded bootloader and modem?

Sent from my SM-N900T using XDA Premium 4 mobile app





dimanche 23 février 2014

[GUIDE] Recover Notification from Nandroid topic




Have you ever installed a new rom, but completely forgot which notification sound you were using? I have a nandroid backup of the old rom, but really don't want to completely restore the rom just to figure out which sound I was using. Android stores this in a database, and I'll show you how to access that database. In hindsight, it may just be easier to restore the nandroid backup. But, this is how to do it using a nandroid backup.

I'll be using Ubuntu 12.04 to do this. I believe it can be done with Windows as well, though the commands and programs will differ. Again, this assumes that you don't remember what the filename was. If you do, you can just skip to step 7.

1. Copy your nandroid backup files to your computer. Specifically, the "data.ext4.tar" and any "data.ext4.tar.a", "data.ext4.tar.b", etc. files.

2. The files need to be combined together. Use the command "cat data.ext4.tar data.ext4.tar.a data.ext4.tar.b > data-combined.tar" or similar for your filenames. It combines all of your data.ext4.tar files into one new file, data-combined.tar. This should give you a working tar file. I got this step from http://forum.xda-developers.com/show....php?t=2194171.

3. Extract the data-combined tar file. If you're a super-cool linux hacker, you probably know some terminal command to do this, like tar -randomLettersHere (xzvf?). I just right clicked the tar file and selected "Extract Here".

4. Navigate to "./data/com.android.providers.settings/databases/settings.db" and open the file. I didn't have any program to read SQL databases, so I let Ubuntu installed the recommended one for me, called "Sqliteman".

5. Using the list on the left, go under Tables-System. You should see the contents of that table, which look like an excel spreadsheet. The row (or tuple) we're looking for has the field "name" equal to "ringtone" or "notification_sound", depending on which file you're trying to locate. You can scroll through the rows and look for those rows, or you can enter an SQL command in the top box and hit the green arrow to run it and filter just the ones we want. Try this-

Code:


select *
from system
where name='notification_sound' or name='ringtone';


This pulls up all the rows where "name" is exactly equal to either of those strings. You can also search for anything that contains those strings by using this syntax-

Code:


select *
from system
where name like '%notification%';


If you're looking for your ringtone, try a query that just contains "ringtone", like this-

Code:


select *
from system
where name like '%ringtone%';


(That pulled up the actual file for me under the name "ringtone_CONSTANT_PATH")

If you're using a different rom than that I was (or a different device), you might need to tweak what you look for. Try changing the strings you search for. What we're looking for is for the entry where "value" equals something like "content://media/internal/audio/media/238". It might have the word 'internal' instead of 'external'. Note that number at the end, which is some kind of media ID number.

6. Now, open the SQL file "./data/data/com.android.providers.media/databases/external.db" or "./data/data/com.android.providers.media/databases/internal.db" depending on whether the value in step 5 had the word internal or external. Find the row where "_id" equals the number at the end of your "value" string in step 5. You can scroll through the "files" table, or enter a query like this-

Code:


select *
from files
where _id='238';


The field "_data" should show the path for your file. For me, it was "/system/media/audio/notifications/S_Dew_drops.ogg". Oh, how I love you, Touchwiz...

7. Now you know where the file is. If your new rom doesn't have that ringtone/notification sound any more, you can probably retrieve it from two places. First, check the rom installation zip file (probably the easiest way) if it was an included sound. Open the installation zip file, and look in the path you found in step 6. The second way is to go through your Nandroid backup. Follow steps 1-3, but copy, combine, and extract your system.ext4.tar file(s). Again, just look in the same path from step 6, and it should be there. These paths are typically "/system/media/audio/notifications/" and "/system/media/audio/ringtones".

Enjoy your old, familiar sound again!





lundi 27 janvier 2014

Nandroid on different Nexus 5 topic




I have two Nexus 5s, one is a t-mobile d820 16 gb black and the other is a white 32 gb d820 from google, can i restore the nandroid from my black one to my white one? thanks! using CWM BTW :)


Studying Computer Science and Forensic Science @ UCO
Using XDA Premium 4





I'm looking for 4.3 Full Nandroid backup topic




I'm looking for 4.3 Full nandroid Backup i9505





samedi 25 janvier 2014

[Q] Problems with internal sdcard (?) after nandroid backup topic




Hi guys!

I have a 16GB Moto G version, model XT1033 (dual SIM). I've installed some ROMs to test, and I did a nandroid backup to restore the previous stock system.

However, since I restored, some problems have occurred. The internal sdcard (or internal memory) mount, I can modify without problems in ES File Explorer and from computer. But most apps can't write, some, in addiction, cannot see the internal sdcard (eg. camera ICS).

Some screenshots can ilustrate the problem:



(in english: Insert a SD card before use the camera)


(in english: Insert a SD card before use the camera)

I suppose this problem is some with mountpoints (Moto G mounts sdcard in two modes at the same time, one is legacy). I dont find fstab or another config file to check this.

What could be done to solve this problem?

Thanks! And sorry my bad english :D





[Q] Recover image files out of a Nandroid backup? topic




Hey guys,

Last week i flashed CM11 in my S3. Before doing it, i did a nandroid backup via recovery and backed up apps + system data via TBP.

I didn´t realize that i had all my photos saved in my internal memory, so i didn´t save them before wiping.

Since i did a Nandroid, my photos must be stored there, right?

My question is:

Is it possible to recover all the pictures from that backup, without having to flash it? Maybe via "mskip" Gs3 Toolkit?

Thanks for your time!!

Walter





I need a Stock Nandroid topic




I own an HTC One bought directly from HTC no carrier brand Sim unlocked International variant. I'm in the USA. Need go back to stock for camera purple tint repair. Here's my dilemma: can't find an RUU for MID 0712000 and CID HTC__001. If anyone put there can provide me one I will appreciate it immensely!! TIA

Sent from my Nexus 7 using xda app-developers app





vendredi 24 janvier 2014

Nandroid Restore Issue topic




Major issue running along the lines of a few other threads I've been reading on here. I'm currently with 3 in the UK.

Phone has been working great for almost 2 years, decided to install one of the custom ROM's with KitKat 4.4.2, I was previously running 4.3. At around 8-8.30 am yesterday morning my signal suddenly disappeared. I rebooted, took out battey and sim card, left it off for a few hours but no joy, noticed I had a generic IMEI number. Managed to restore a nandroid backup I had from last year and all was well again, it was a custom rom v 4.1.2 so I tried again to update to KK 4.4.2 but same issue, no signal with generic IMEI. I then tried a different nandroid backup I had but somehow this completely scrubbed my phone. When I eventually got it up and running it was back to stock and all my folders etc have been wiped. I do have a nandroid backup on my PC and I copied it to the root of my phone but when I try and do a restore it says no files found, reading elsewhere and going off the top of my head it says it has to go to /Data/Media/Clockworkmod but I don't have a Data folder, is there anyway to get this nandroid to work?

TIA





jeudi 23 janvier 2014

[Q] How to Nandroid my Samsung galaxy Core i8260 topic




Hello
I want to make an image Back-up of my Core and I cannot find something!
I tried the search but I couldn't.
I tried also the rom manager but it does not support my Core.

I want to make this image back up so I can go back if i install an other ROM.

How can I do this?

I hope you can help me!!

(I have already succesfully rooted my phone)

Thank you for your time and help!