In the event you’re sick of re-setting up all your Google Chrome extensions on Linux every time you re-install your working system, you need to know that there’s truly a approach to again up a Google Chrome profile underneath Linux.

It really works by copying varied configuration information that Chrome makes use of to arrange a profile and saving it for later. Needless to say doing that is greatest when there’s just one consumer arrange to make use of Chrome. In the event you’ve obtained a number of customers it’s nonetheless simple to do, however it’s possible you’ll get confused with the totally different folders.
SPOILER ALERT: Scroll down and watch the video tutorial on the finish of this text.

Again Up Chrome Profile – The Conventional Approach

9k=

To again up your Chrome profile, begin out by opening up a terminal window, however make sure NOT to present it root entry. That is dangerous, and you can by accident make the profile backup exterior of your common consumer’s permissions. As an alternative, hold it as your regular consumer and use the CD command to navigate to ~/.config within the house folder.

cd ~/.config

The config folder is house to most program settings and profiles, and it’s right here the place the Chrome profile data for customers is saved. Utilizing the tar command, you’ll must create a GZip archive of the profile listing totally.

tar -jcvf google-chrome-profile.tar.bz2 google-chrome

Compression needs to be fast and straightforward. When the method finishes, use the MV command to position the backup into your ~/ folder.

mv google-chrome-profile.tar.bz2 ~/

From right here you may transfer your backup to Dropbox, an exterior laborious drive, and even one other Linux set up. Needless to say if you happen to add your Chrome profile in an unencrypted state, you make your self weak to hackers. If you don’t want to lock your backups, strive to reserve it in a protected place, and use a safe password on the account/system the place the backup is saved.

Restore the backup

To restore the backup, do:

mv google-chrome-profile.tar.bz2 ~/.config

cd ~/.config

tar -xvf google-chrome-profile.tar.bz2

Encrypt Chrome Profile Backup

To encrypt your Chrome profile backup you might want to first, compress your Chrome folder into an archive file (observe the strategy above). This fashion makes encryption a lot simpler, as GPG will simply be encrypting the archive, somewhat than having to deal with a folder with particular person information inside. As soon as that’s accomplished, set up GnuPG to your Linux PC, if it isn’t already put in. Then, open up a terminal and use the GnuPG instrument to encrypt your Chrome profile archive:

gpg -c google-chrome-profile.tar.bz2

Getting into gpg -c within the terminal will immediate the consumer to set a brand new password. Enter a safe password in order that solely it is possible for you to to entry the encrypted profile. When the encryption course of is full, delete the file “google-chrome-profile.tar.bz2“. Instead, save “google-chrome-profile.tar.bz2.gpg”, as that is the encrypted archive.

To decrypt your Chrome profile to revive the backup, use:

gpg google-chrome-profile.tar.bz2.gpg

Transplant A Chrome Profile Into Chromium

It’s doable to transplant a Linux Google Chrome profile to be used with the Chromium browser. It’s a quite simple course of, and it’ll work each time as a result of nature of how Chromium and Chrome work. It begins off by deleting the whole lot already within the Chromium folder.

Observe: it’s doable to do that in reverse. In the event you’d like to repeat a Chromium profile into Google Chrome, observe these similar directions, however change ~/.config/chromium to ~/.config/google-chrome.

cd ~/.config/chromium

rm *

rm -rf *

This leaves the chromium configuration listing utterly empty. From right here, you’ll be capable to simply copy the entire configurations straight from the Google Chrome listing. Use the CP command to repeat the whole lot inside to ~/.config/chromium.

cp -a ~/.config/google-chrome/. ~/.config/chromium

After shifting information, go forward and open up Chromium. Just remember to haven’t opened the browser till now as a result of when you’ve got, you’ll must delete the whole lot and begin once more. The rationale for that is that the browser’s first run will create a clean profile.

If the profile copy is profitable, all your settings will seem. As well as, all extensions, bookmarks, logged in web sites, and many others., will even be working — with one situation. Because you’ve copied your profile from one browser to a different, it’s “locked” by Chrome (you’ll understand it’s locked as a result of the browser will inform you so).

To take away the lockout, click on in your title in Chromium and re-enter your Google credentials. Quickly after, your profile will unlock once more.

Again Up Chrome Profile With Deja Dup

Need a fast and straightforward approach to all the time have your browser profile backed up? Take into account organising Deja Dup as a plan B. Comply with our information right here, and discover ways to arrange a whole backup of your total house folder. Doing so will assist you to create periodic, encrypted backups of the whole lot in your house folder — together with your Google Chrome browser profile.

Better of all, you may create a number of backups, if restoring one of many snapshots breaks. Together with that, it’s all the time a good suggestion to have a replica, in case the normal tar.bz2 backup made earlier fails.



Source link

Share.
Leave A Reply

Exit mobile version