-
Delete/Remove Software/Package, Link
- Search in list of packages with
dpkg --list
- Find name of package and delete
sudo apt-get --purge remove shiny-server
--purge
removes config files, too--autoremove
: delete unused packages- in combination
sudo apt-get --purge --autoremove remove shiny-server
- maybe also look for all files with the package name and delete them:
find -name shiny-server
- Search in list of packages with
-
Find all files with string in name:
find -name string
-
Find all files with string and delete them: ``find . -name "FILE-TO-FIND" -exec rm -rf {} ;` (folder, too), link
- for shiny server:
sudo find . -name shiny-server -exec rm -rf {} \;
- for shiny server:
Created
December 9, 2020 08:45
-
-
Save cutterkom/b45aa4ef9ca860e24ef55e0afd20396d to your computer and use it in GitHub Desktop.
how to delete shiny from a linux server
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment