diff --git a/content/posts/2024/linux/remove-outline.md b/content/posts/2024/linux/remove-outline.md new file mode 100644 index 0000000..e4059d2 --- /dev/null +++ b/content/posts/2024/linux/remove-outline.md @@ -0,0 +1,32 @@ +--- +title: "🚽 Удаление Outline VPN в Linux" +date: 2024-12-04T12:07:41+03:00 +draft: true +tags: [vpn, linux, tips] +--- + +Топик на [GitHub](https://github.com/Jigsaw-Code/outline-apps/issues/648) + +Скрипт [`jigsaw-outline-uninstall.sh`](https://gist.github.com/abn/2a41cd924553d457e36f29a71b9b8fc0) +_(Дельного там почти ничего нет)_ + +```sh +# root +systemctl stop outline_proxy_controller +systemctl disable outline_proxy_controller + +rm -f /etc/systemd/system/outline_proxy_controller.service +rm -f /usr/local/sbin/OutlineProxyController +rm -f /var/run/outline_controller + +systemctl daemon-reload +systemctl reset-failed +``` + +```sh +# user +rm -rf ~/.config/Outline/ +rm -f ~/.config/autostart/Outline-Client.AppImage.desktop +find ~/.local/share/icons -name "appimagekit-outline-client.png" -delete +rm -f /path/to/Outline-Client.AppImage +```