De; link
Uninstalling the snapdAUR package will not remove directories and files created while using snap. It's best to remove your snaps with snap remove before uninstalling the package. At this time it is not possible to remove the core snap through the snap command. To remove the state, snap package cache and mount unit files completely, you can follow the instructions below.
- We unmount any currently active snap that is mounted to /var/lib/snapd/snap/.
# umount $(mount | grep snap | awk '{print $3}')
- We remove the state directory and mount hook.
# rm -rf /var/lib/snapd
# rm -rf /var/snap
- We remove any unit files, that try to mount snaps from /var/lib/snapd/snaps to /var/lib/snapd/snap at boot.
# find /etc/systemd/system -name "*snap-*.mount" -delete
# find /etc/systemd/system -name "snap.*.service" -delete
Você terá que fazer essas desmontagens e reinstalar o snap do AUR usando # yaourt snapd
.
Em seguida, retome as atualizações do sistema normalmente.