Hello I want to remove software (for example transmission) using Terminal. How can i find the package name for the software ?
Hello I want to remove software (for example transmission) using Terminal. How can i find the package name for the software ?
search for it using
like
gives:
at the last (the most relevant results will be at the last since it is the terminal)
To query installed packages we can use powerful search functions from DPKG package management:
dpkg-query --list 'pattern*'
lists all packages that have not been purgeddpkg-query --search 'pattern*'
searches for individual files installedYou can use wildcards in the search pattern to find packages when only part of the package name is known.
If you're trying to remove a package
will only display installed packages