How to clone/backup your Raspberry Pi’s SD card

If you want to preserve all of the data, you will probably have to create a disk image. Furthermore, Windows cannot recognize typical Linux filesystems, so you probably won’t even be able to see your files, when you plug in your SD card.

Creating a disk image will preserve not only files but also the filesystem structure and when you decide to flash your new SD card, you will be able to just plug it in and it will work.

Linux

On Linux, you can use the standard dd tool:

dd if=/dev/sdx of=/path/to/image bs=1M

Where /dev/sdx is your SD card.

Mac

On Mac, you can also use the standard dd tool with a slightly different syntax:

dd if=/dev/rdiskx of=/path/to/image bs=1m

Where /dev/rdiskx is your SD card.

(using rdisk is preferable as its the raw device – quicker)

To find out which disk your device is type diskutil list at a command prompt – also, you may need to be root; to do this type sudo -s and enter your password when prompted.

Windows

Option 1

On Windows, you can use the reverse process that you used when flashing the SD card.

You can use Win32 Disk Imager, which is the preferred tool for flashing a SD card of the Foundation. Just enter the filename, select the device and press read:

Win32 Disk Imager

Of course, you can also use RawWrite, dd for Windows or similar tools, the process is quite similar.

Option 2

If you don’t want to back up your entire system, but only specific files, I suggest you connect to your Raspberry Pi via SFTP and copy the files to your local computer (You can use the WinScp client). If you have SSH enabled, SFTP usually requires no special configuration on the Raspberry Pi side.

Another option is to copy the files to a remote system using rsync.

You can also install special drivers so your Windows can read ext filesystems (and will thus be able to read the whole SD card), such as ext2fsd but it is probably not worth the effort.

 

Source: http://raspberrypi.stackexchange.com/questions/311/how-do-i-backup-my-raspberry-pi

Change a network user

Press your Windows buttons and type “Windows Credential Manager” (german “Anmeldeinformationsverwaltung”). There you can change (delete) the saved values for your network locations.

 

Xiaomi MiPad 2 ROM with working Google Play Store

Are you getting error 963 whilst trying to download an app greater than 10MB in Google’s Play Store? The following is the only easy solution (that I know of) to get a working google play store on your Xiaomi MiPad 2. It is a ROM version released in a vietnamese MiUi forum. The link below is the direct download link for the ROM.

https://drive.google.com/file/d/0B40ItdHKfkyQaVc2S3g4QTZGTjg/view?usp=sharing

ROM information
Version: Rom MC v1.0 – Xiaomi MiPad 2 – Global MIUI 7 v5.12.24
Based ROM: V5.12.24 Global MIUI 7 – Rooted
Key feature and optimization
Multi language supported
Deleted Chinese applications which are not compatible with international language
Disabled 10 sec Apk installation confirmation
Pre-installed Google services (Google Play Store, Maps, Gmail, Google Sync, …)
Disable Chinese online video in video application
System Optimization: Zip align
Installed BusyBox v1.24.1, SuperSU 2:46

ROM installation instruction:
Unzip the downloaded file
Install the driver files in the folder Driver for PC
Boot into fastboot mode (bootloader) (During power off, holding Vol – and Power button together)
Run Flash_Tools.exe
Note:
* All data will be removed during this ROM installation. Please back up in advanced.
* Keep your computer getting constant power supply and good connection of USB cable. Power or USB connection failure might be caused boot loop or bricked.
Please refer the download link from original developer thread.

Original Vietnamese Source: http://miui.vn/forum/threads/rom-mc-v1-0-xiaomi-mi-pad-2-miui-7-v5-12-24-global-multi-language.7382/

Source: http://en.miui.com/thread-223851-1-1.html

Back to Top