Do you utilize the Vivaldi internet browser as your each day driver on Linux? Are you making an attempt to determine how to back up your browser settings for safe-keeping? We will help! Comply with together with this information as we go over how to back up the Vivaldi internet browser settings on Linux.

Backing up Vivaldi settings in a terminal

A fast manner to back up Vivaldi browser settings is with the Linux command-line. It’s quick, environment friendly, and will be completed with just a few instructions. To begin the backup course of, open up a terminal window by urgent Ctrl +  Alt + T or Ctrl + Shift + T on the keyboard. Then, with the terminal open, use the CD command to transfer into the “.config” listing, the place the Vivaldi browser settings are saved.

cd ~/.config

Within the “.config” listing, use the ls command mixed with grep to find the “vivaldi” folder. You have to find this listing to make sure that your profile information is certainly on the system and intact.

ls | grep vivaldi

Assuming you have got the “vivaldi” listing intact on your Linux PC, you’ll see “vivaldi” within the command output. If you don’t see  “vivaldi” within the command output, signal into the browser and re-try the command.

After figuring out that the “vivaldi” folder is certainly within the “.config” listing, the backup can start. Utilizing the tar command, compress your Vivaldi browser settings.

tar -czvf My-Vivaldi-Browser-Backup.tar.gz vivaldi

When the tar command completes, your Vivaldi browser settings will likely be saved within a TarGZ archive named “My-Vivaldi-Browser-Backup.tar.gz.”  Take the backup file and transfer it from “.config” to the house listing (~) with the mv command.

mv My-Vivaldi-Browser-Backup.tar.gz ~/

From right here, it’s potential to take the unencrypted Vivaldi browser backup and put it aside to an exterior onerous drive, USB flash drive, or cloud supplier. Nonetheless, needless to say since it’s unencrypted, your passwords and information aren’t safe and unsafe.

Encrypting the backup

Trying to make your Vivaldi browser backup safe and protected? In that case, you will need to encrypt it. Fortunately, encrypting information on Linux is straightforward, thanks to the GPG command.

To begin the encryption, guarantee that you’ve got the GPG app put in. Then, use the gpg -c command to lock up the “My-Vivaldi-Browser-Backup.tar.gz” file.

cd ~/ 

gpg -c My-Vivaldi-Browser-Backup.tar.gz

When you’ve entered the instructions above, you’ll be prompted to enter a password. Enter a safe, memorable password to lock up your Vivaldi browser settings, and press the Enter key to affirm it.

Assuming the encryption is profitable, the Vivaldi browser backup will likely be saved as “My-Vivaldi-Browser-Backup.tar.gz.gpg.” Take this file and put it on an exterior onerous drive, USB system, or cloud storage supplier. Make certain to take away the non-encrypted TarGZ file!

Restoring the backup

To revive the backup, comply with the step-by-step directions beneath.

Step 1: Place the GPG file within the dwelling listing. Or, if the backup is just not encrypted, place the TarGZ file within the dwelling listing.

Step 2: Decrypt the GPG backup file within the terminal with the gpg command.

gpg My-Vivaldi-Browser-Backup.tar.gz.gpg

Step 3: Now that the GPG file is decrypted, transfer the decrypted model of the backup into the “.config” listing.

mv My-Vivaldi-Browser-Backup.tar.gz ~/.config

Step 4: Delete the “vivaldi” folder already there with the rm command.

rm -rf vivaldi

Step 5: Decompress the My-Vivaldi-Browser-Backup.tar.gz file to restore your browser settings on the system.

tar xvf My-Vivaldi-Browser-Backup.tar.gz

Backing up Vivaldi settings with Deja Dup

Backing up browser settings within the terminal is helpful, however tedious. In case you’re wanting to make a whole, encrypted backup on the Vivaldi browser settings with out fussing round with the tar command, you need to use Deja Dup.

To begin the backup course of, you will need to first set up Deja Dup on your Linux PC. To do this, launch a terminal window and enter the instructions beneath.

Ubuntu

sudo apt set up deja-dup duplicity

Debian

sudo apt-get set up deja-dup duplicity

Arch Linux

sudo pacman -S deja-dup

Fedora

sudo dnf set up deja-dup

OpenSUSE

sudo zypper set up deja-dup

As soon as the Deja Dup utility is put in on your Linux PC, launch it. Then, with the app open, discover “Storage Location,” and click on on it. From there, set the storage location the place you’d like to add your backup.

After setting the placement of the backup, discover “Overview” and click on it with the mouse. Then, inside “Overview,” find “Back Up Now” and click on it with the mouse to begin the backup course of.

Upon clicking “Back Up Now,” you can be requested when you’d like to add a password to your backup. Enter a memorable, safe password. Then, click on the “Forward” button to proceed on to the subsequent step within the backup course of.

After including a password to the backup, Deja Dup will back up your complete dwelling listing, together with the Vivaldi browser information. It would save your backup within the storage location you set beforehand.



Source link

Share.
Leave A Reply

Exit mobile version