Jump to content

SNAP:Error purging snapd: Difference between revisions

From Wiki
Created page with "<syntaxhighlight lang="shell"> sudo systemctl stop var-snap-firefox-common-host\\x2dhunspell.mount </syntaxhighlight> <syntaxhighlight lang="shell"> sudo systemctl disable var-snap-firefox-common-host\\x2dhunspell.mount </syntaxhighlight> <syntaxhighlight lang="shell"> sudo dpkg --purge --force-all snapd </syntaxhighlight> <syntaxhighlight lang="shell"> sudo apt install --fix-broken </syntaxhighlight> ==Source== *[https://askubuntu.com/questions/1414173/completely-r..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<syntaxhighlight lang="shell">
sudo systemctl stop var-snap-firefox-common-host\\x2dhunspell.mount
sudo systemctl stop var-snap-firefox-common-host\\x2dhunspell.mount
</syntaxhighlight>


<syntaxhighlight lang="shell">
sudo systemctl disable var-snap-firefox-common-host\\x2dhunspell.mount
sudo systemctl disable var-snap-firefox-common-host\\x2dhunspell.mount
</syntaxhighlight>


<syntaxhighlight lang="shell">
sudo dpkg --purge --force-all snapd
sudo dpkg --purge --force-all snapd
</syntaxhighlight>


<syntaxhighlight lang="shell">
sudo apt install --fix-broken
sudo apt install --fix-broken
</syntaxhighlight>


==Source==
==Source==
*[https://askubuntu.com/questions/1414173/completely-remove-firefox-snap-package askubuntu.com]
*[https://askubuntu.com/questions/1414173/completely-remove-firefox-snap-package askubuntu.com]
[[Category:Linux]]
[[Category:Ubuntu]]
[[Category:Debian]]
[[Category:Software]]
[[Category:Tutorial]]

Latest revision as of 22:02, 2 November 2025

sudo systemctl stop var-snap-firefox-common-host\\x2dhunspell.mount
sudo systemctl disable var-snap-firefox-common-host\\x2dhunspell.mount
sudo dpkg --purge --force-all snapd
sudo apt install --fix-broken

Source