Go Backup
Learn how to back up docs, photos and media the easy way with a portable external hard drive—all Mac® and Windows compatible and bursting with capacity. Apr 20, 2014. Galaxy S2 4.1.2. I like Go Launcher so thought I would use GO Backup Pro with it. However I cannot see how to make my local backup to my.
Choose a backup method
Before you get started, learn the difference between iCloud and iTunes backups, then choose the method that's best for you. If you need an alternative backup, you can make one in iCloud and another in iTunes.
Go Backup And Restore Pro
How to back up with iCloud
- Connect your device to a Wi-Fi network.
- Go to Settings > [your name], and tap iCloud.
- Tap iCloud Backup.
- Tap Back Up Now. Stay connected to your Wi-Fi network until the process completes.
You can check the progress and confirm the backup completed. Go to Settings > [your name] > iCloud > iCloud Backup. Under Back Up Now, you'll see the date and time of your last backup.
Get help making a backup or manage your available space in iCloud.
Automatically back up with iCloud Backup
To let iCloud automatically back up your device each day, here's what you need to do:
- Make sure that iCloud Backup is turned on in Settings > [your name] > iCloud > iCloud Backup.
- Connect your device to a power source.
- Connect your device to a Wi-Fi network.
- Make sure that your device's screen is locked.
- Check that you have enough available space in iCloud for the backup. When you sign in to iCloud, you get 5GB of iCloud storage for free. If you need more iCloud storage, you can buy more from your iPhone, iPad, iPod touch, or Mac. Plans start at 50GB for $0.99 (USD) a month. Learn more about prices in your region.
How to back up with iTunes
- Update to the latest version of iTunes.
- Open iTunes and connect your device to your computer.*
- If a message asks for your device passcode or to Trust This Computer, follow the onscreen steps. If you forgot your passcode, get help.
- Select your iPhone, iPad, or iPod when it appears in iTunes. If your device doesn't appear in iTunes, learn what to do.
- If you want to save Health and Activity data from your iOS device or Apple Watch, you need to encrypt your backup: Select the box called Encrypt [device] backup and create a memorable password. If you don't need to save your Health and Activity data, you can make a backup that isn't encrypted. Just click Back Up Now.
Write down your password and store it somewhere safe, because there's no way to recover your iTunes backups without this password. - When the process ends, you can see if the backup finished successfully on the Summary screen in iTunes. Just look under Latest Backup to find the date and time.
* Learn how to connect iPad Pro (11-inch) or iPad Pro 12.9-inch (3rd generation) to your computer.
Learn more
- Restore your device from a backup.
- Get help with iCloud backups or iTunes backups.
- Manage your backups.
Introduction
restic is a backup program that is fast, efficient and secure. It supports the three major operating systems (Linux, macOS, Windows) and a few smaller ones (FreeBSD, OpenBSD).
For detailed usage and installation instructions check out the documentation.
You can ask questions in our Discourse forum.
Quick start
Once you've installed restic, startoff with creating a repository for your backups:
and add some data:
Next you can either use restic restore
to restore files or use resticmount
to mount the repository via fuse and browse the files from previoussnapshots.
For more options check out the online documentation.
Backends
Saving a backup on the same machine is nice but not a real backup strategy.Therefore, restic supports the following backends for storing backups natively:
- HTTP REST server (protocolrest-server)
- AWS S3 (either from Amazon or using the Minio server)
- And many other services via the rcloneBackend
Design Principles
Restic is a program that does backups right and was designed with thefollowing principles in mind:
- Easy: Doing backups should be a frictionless process, otherwiseyou might be tempted to skip it. Restic should be easy to configureand use, so that, in the event of a data loss, you can just restoreit. Likewise, restoring data should not be complicated.
- Fast: Backing up your data with restic should only be limited byyour network or hard disk bandwidth so that you can backup your filesevery day. Nobody does backups if it takes too much time. Restoringbackups should only transfer data that is needed for the files thatare to be restored, so that this process is also fast.
- Verifiable: Much more important than backup is restore, so resticenables you to easily verify that all data can be restored.
- Secure: Restic uses cryptography to guarantee confidentiality andintegrity of your data. The location the backup data is stored isassumed not to be a trusted environment (e.g. a shared space whereothers like system administrators are able to access your backups).Restic is built to secure your data against such attackers.
- Efficient: With the growth of data, additional snapshots shouldonly take the storage of the actual increment. Even more, duplicatedata should be de-duplicated before it is actually written to thestorage back end to save precious backup space.
Reproducible Builds
The binaries released with each restic version starting at 0.6.1 arereproducible, which means that you caneasily reproduce a byte identical version from the source code for thatrelease. Instructions on how to do that are contained in thebuilder repository.
News
You can follow the restic project on Twitter @resticbackup or by subscribing tothe development blog.
License
Restic is licensed under BSD 2-Clause License. You can find thecomplete text in LICENSE
.
Sponsorship
Backend integration tests for Google Cloud Storage and Microsoft Azure BlobStorage are sponsored by AppsCode!