Skip to content

Instantly share code, notes, and snippets.

@souhaiebtar
Last active August 28, 2023 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save souhaiebtar/cbb8baf096053f173af1af062947c442 to your computer and use it in GitHub Desktop.
Save souhaiebtar/cbb8baf096053f173af1af062947c442 to your computer and use it in GitHub Desktop.
backup/restore chrome and thunderbird profile under linux
# backup chrome profile
cd ~/.config
tar -jcvf google-chrome-profile.tar.bz2 google-chrome
mv google-chrome-profile.tar.bz2 ~/
# restore chrome profile
mv google-chrome-profile.tar.bz2 ~/.config
cd ~/.config
tar -xvf google-chrome-profile.tar.bz2
# backup thunderbird profile
cd ~
tar -jcvf thunderbird.tar.bz2 .thunderbird
# restore thunderbird profile
mv thunderbird.tar.bz2 ~
tar -xvf ~/thunderbird.tar.bz2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment