Showing posts with label Backup. Show all posts
Showing posts with label Backup. Show all posts

Tuesday, January 29, 2013

Back Up Your Google Account to Your Mac with CloudPull



Do you use all or most of Google’s services on a regular basis? If so, I’m sure you’ll find a backup service like CloudPull extremely helpful. CloudPull is a Mac app that can back up your Google account to your Mac, which conveniently makes your information available for offline use and access. Additionally, it supports multiple accounts.
CloudPull supports: Gmail (and Google Apps email), Google Contacts, Google Calendar, Google Drive, and Google Reader. It will perform a backup every hour, and “maintain old point-in-time snapshots of your account for 90 days.
The cool thing about using CloudPull to back up your Google account is that the backups are created in standard file formats. This means that your items can be easily imported into Apple programs. For instance, your email messages can be imported into Apple Mail. Likewise, your contacts can be imported into Apple Contacts, calendar events can be imported into iCal, etc.
If you’re ready to get started, here’s how to back up your Google account with CloudPull Free.

Setup and Usage

1. Install CloudPull from the Mac App Store and open it.
2. On the welcome screen, you can choose to subscribe to CloudPull news alerts and/or be added to their mailing list.
Welcome to CloudPull, subscribe to news alerts.
3. On the next screen, you can choose to run CloudPull automatically when you log into your Mac, or you can run it manually when you choose to.
Choose to run CloudPull automatically or manually.
4. On the next screen, you’ll need to enter your Google account email address and password. You will also need to select the services that you want backed up.
Enter your Google account credentials and choose the services to back up.
Note: You will need to have IMAP enabled in your account in order to back up your email. Your Inbox, Sent Mail, Drafts and All Mail system labels will also need to have the “show in IMAP” option selected.
Make sure your system labels have the 'show in IMAP' option enabled.
5. Afer you click on “continue,” your username and password will be verified. You will then choose the labels from your Gmail or Google Apps email account that you want CloudPull to back up.
Choose the labels to backup in your Gmail or Google Apps account.
6. Finally, CloudPull will begin to pull in your data. If you have a large amount of data, this could take awhile. If you’re like me and have a really slow Internet connection at home, then of course it can take hours for your initial backup to finish.
CloudPull will pull in your data from Google and save it.
7. Your items can be accessed and organized via CloudPull’s email-like interface. Each item type will have its own set of options. All items can also be opened in their respective Apple applications (i.e. email in Apple Mail, contacts in Google Contacts, etc).
Your backed up items can be viewed offline and opened in their respective Apple programs.

Final Thoughts

CloudPull is an awesome way to back up your Google account and organize it in a user-friendly interface, but there are a few cons to the service. For starters, this is the free version. If you want to upgrade to the Premium version, it will cost you $10.
The free version of CloudPull only allows you to back up one Google account. So power users like me (with 4 different Google accounts), will not benefit much from the free version. The Premium version supports up to 10 different Google accounts.
The Premium version also has the option to run CloudPull as a background application; meaning it can run without appearing in the Dock or Force Quit window. Whatever you decide, you can’t deny that this is a handy app with a lot of benefits.
How do you backup your Google data?

Sunday, November 4, 2012

How To Backup/Restore Your Installed Packages And Applications - Ubuntu/Linux Mint



In this tip, we will learn how to make a backup of all packages and applications installed from repositories or Ubuntu Software Center under Ubuntu, Linux Mint, or any Debian-based system. This will help you easily restore them after installing a new copy of your operating system without the need to install each package separately. With just a few commands, you will be able to store a list of all installed applications and packages in a text file, then you can use this file to install all your packages automatically.

Getting Started

1. Open the terminal and make a backup copy of your applications with this command:


sudo dpkg --get-selections > backup.txt

Now move the backup.txt file to another location (USB drive, CD, external hard drive, etc.)

2. After a new installation of Ubuntu/Linux Mint, cd to the folder containing your text file (backup.txt), then restore your packages with these commands:

sudo apt-get install aptitude 
sudo dpkg --clear-selections 
sudo dpkg --set-selections < backup.txt 
sudo aptitude install

Then follow given prompts.

Note: You may also use Ubuntu Software Center to sync and reinstall your applications on different Ubuntu computers. Open Ubuntu Software Center and head to File > Sync Between Computers.