Evolution is a wonderful mail consumer, with dozens of options. The most effective options it has is a simple backup function that lets customers export information, reasonably than needing to create a customized archive to again up for emails, settings and account data.

To create a backup of the Evolution mail settings throughout the Evolution app, open it up and click on the “File” menu. Inside “File,” search for the “Back up evolution data” possibility and choose it. Choosing this feature opens up a file browser. This file browser will let you save a TarGZ backup of your e-mail information.

Z

After saving your e-mail information, a window that claims “Are you sure you want to close Evolution” will seem on the display screen. Click on the “Close and backup Evolution” button to complete creating your information backup.

Back Up By way of Command-line

Although Evolution has a superb backup system, it’s only a fancy UI that customers can use to create a backup of ~/.config and ~/.native. For those who dislike the backup system, or possibly discover that it doesn’t work, it’s potential to create the identical type of backup straight from the Linux terminal. To do it, begin by utilizing the next ls instructions, and make sure that each ~/.config, and ~/.native have recordsdata inside. If not, you have to register to Evolution.

ls -a ~/.config/evolution
ls -a ~/.native/share/evolution

If operating the ls instructions above is a hit, the backup course of can start. Utilizing the mkdir command, create a brand new folder to carry the entire Evolution information we’ll compress.

mkdir -p ~/Desktop/evolution-mail-backup
mkdir -p ~/Desktop/evolution-mail-backup/config
mkdir -p ~/Desktop/evolution-mail-backup/native

Make a duplicate of  ~/.config/evolution and place it within the new evolution-mail-backup folder in your desktop. Saving this folder will let you hold your mail account information intact.

cp -r ~/.config/evolution/ ~/Desktop/evolution-mail-backup/config/

Evolution account settings are within the backup listing on the desktop. Subsequent, make a duplicate of your e-mail, and all the pieces else that Evolution shops within the ~/.native/share/ folder.

cp -r ~/.native/share/evolution/ ~/Desktop/evolution-mail-backup/native/

With the entire Evolution account information and mail information within the backup listing, it’s time to compress all the pieces. Compressing your backup is important, because it makes importing it to cloud storage a lot sooner (and safer). To create an archive, run the next command in a terminal window.

tar -czvf evolution-mail-backup.tar.gz ~/Desktop/evolution-mail-backup/

Let Tar compress your information right into a TarGZ file. Understand that compression might take a very long time you probably have a variety of mail information.

When the compression course of finishes, you’ll see evolution-mail-backup.tar.gz on the desktop. Take it and put it someplace for safekeeping, however be warned that by doing this with out encryption, your mail account is weak.

Encrypt Backup With GPG

Your Evolution mail settings backup, no matter which means it’s backed up, is unsafe. To safeguard your backup, set up the GPG encryption device. It’s one of many main encryption techniques for Linux. It’s dependable, and really straightforward to make use of, particularly when working with single recordsdata.

To get GPG in your Linux PC, launch a terminal window and observe the directions under to get it working in your Linux OS of alternative.

Ubuntu

sudo apt set up gpg

Debian

sudo apt-get set up gpg

Arch Linux

sudo pacman -S gnupg

Fedora

sudo dnf set up gpg

OpenSUSE

sudo zypper set up gpg

Generic Linux

All Linux customers have entry to GPG. For those who’re utilizing an obscure Linux distribution, don’t fear. Open up a terminal, search your package deal supervisor for “gpg” and set up it to make use of it!

Utilizing GPG

As soon as the GPG device is working in your Linux PC, it’s time to create the backup. Launch a terminal window and use the gpg command to create a brand new encrypted archive of your Evolution mail backup.

Perceive that as you create a brand new GPG encryption of your Evolution mail backup that it’s important to make use of a safe, safe password.

Word: when you’re unable to provide you with a safe, sturdy password, try strongpasswordgenerator.com.

Encrypt Evolution Backup

Find the backup you made with the Evolution e-mail consumer in your Linux PC. Then, open up a terminal and CD to the listing. In our instance, the Evolution backup is on the desktop.

cd ~/Desktop

Execute GPG and encrypt your backup.

gpg -c evolution-backup-*.tar.gz

Encrypt Command-line Backup

Launch a terminal window and CD into the house listing, the place the backup archive is.

cd ~/

Utilizing the GPG device, encrypt your backup.

gpg -c evolution-mail-backup.tar.gz

Restore Evolution Mail Settings Backup through Evolution Backup Device

Obtain the Evolution backup GPG file to your Linux PC. Then, open up a terminal and decrypt all the pieces.

gpg evolution-backup-*.tar.gz.gpg

Open Evolution and click on “File,” then “Restore Evolution Data.”

Browse in your decrypted TarGZ archive and click on the “Open” button to revive your e-mail settings totally.

Restore Backup By way of Command-line

Obtain your Evolution GPG backup and place it in your Paperwork folder. Then, launch a terminal window and decrypt your backup.

gpg evolution-mail-backup.tar.gz.gpg

Extract the Tar archive.

tar xvf evolution-mail-backup.tar.gz

Transfer the Evolution recordsdata into place.

Word: change username within the command under to your precise username, otherwise you won’t be able to make use of CD.

cd house/username/Desktop/evolution-mail-backup/
cd config
mv evolution/ ~/.config/
cd ..
cd native
mv evolution/ ~/.native/share/



Source link

Share.
Leave A Reply

Exit mobile version