25

Tried restarting my computer and while it's booting Ubuntu 18.04, it gets hung up after:

[FAILED] Failed to start Snappy daemon,
See 'systemct1 status snapd.service' for details,
Michael
  • 65
  • 1
  • 7
Michael A
  • 251

1 Answers1

1

I ran across this bug report that reflect the issue you are describing. However, the bug report indicates that, at the base level, the issue is with the kernel. So if you're not running the latest kernel, which you can check by running uname -r (I am on 18.04.05 using kernel 5.4.0-58-generic), you may want to attempt upgrading:

sudo apt update
sudo apt full-upgrade

if that does not solve the issue you may want to uninstall/reinstall snap:
Find installed snaps: snap list

  1. Remove installed snaps: sudo snap remove <packages-from-snap-list>

  2. Remove snapd: sudo apt purge snapd

  3. Remove snap directory from home: rm -rf ~/snap

    If you receive an error removing snapd then do the following:

    sudo rm -rf /var/cache/snapd 
    sudo apt purge snapd
    
Pablo Bianchi
  • 15,657