Skip to content

Instantly share code, notes, and snippets.

@coolaj86
Last active September 26, 2021 13:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coolaj86/cc9e82c1145af6e124485cab4c435aeb to your computer and use it in GitHub Desktop.
Save coolaj86/cc9e82c1145af6e124485cab4c435aeb to your computer and use it in GitHub Desktop.
Backup Telebit

How to Backup Telebit Config, Service, and App

If you need to re-install Telebit (which you probably do, if you're reading this), you should backup up your old config.

Here's how:

Mac Users

# Stop and unload the current telebit process
launchctl unload -w ~/Library/LaunchAgents/cloud.telebit.remote.plist

# Rename the telebit application directory
mv ~/Applications/telebit ~/Applications/telebit.2020-07.bak

# Terminate any 'node' processes, just in case
killall node

# Rename the telebit config directory
mv ~/.config/telebit ~/.config/telebit.2020-07.bak

Linux Users

# Stop and unload the current telebit process
systemctl --user stop telebit
systemctl --user disable telebit

# Rename the telebit application directory
mv ~/Applications/telebit ~/Applications/telebit.2020-07.bak

# Terminate any 'node' processes, just in case
killall node

# Rename the telebit config directory
mv ~/.config/telebit ~/.config/telebit.2020-07.bak

Windows 10 Users

You should rename the following folders:

C:\Users\<YOUR_USER_NAME>\Applications\telebit
C:\Users\<YOUR_USER_NAME>\.local\config\telebit

You may need to open Task Manager to remove Telebit from Startup and then end any Node.js processes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment