Package Details: snapd 2.62-2

Git Clone URL: https://aur.archlinux.org/snapd.git (read-only, click to copy)
Package Base: snapd
Description: Service and tools for management of snap packages.
Upstream URL: https://github.com/snapcore/snapd
Licenses: GPL3
Conflicts: snap-confine
Submitter: Barthalion
Maintainer: bboozzoo (zyga, mardy)
Last Packager: bboozzoo
Votes: 210
Popularity: 2.49
First Submitted: 2018-01-07 17:37 (UTC)
Last Updated: 2024-04-29 06:41 (UTC)

Pinned Comments

bboozzoo commented on 2018-10-25 11:56 (UTC) (edited on 2024-04-09 07:39 (UTC) by bboozzoo)

Package update notes

2.36

2.36 is the first release with AppArmor enabled by default on Arch.

If you do not have AppArmor enabled at boot there should be no functional changes visible.

If you wish to use snaps with Apparmor, first make sure that Apparmor is enabled during boot, see https://wiki.archlinux.org/index.php/AppArmor for details. After upgrading the package, you need to do the following steps:

  • Reload the profiles: systemctl restart apparmor.service
  • Restart snapd: systemctl restart snapd.service
  • Load profiles for snaps: systemctl enable --now snapd.apparmor.service
2.62

Since 2.62 snapd generated additional files describing the sandbox. The snapd service needs to be restarted after the update for snaps to continue working (unless the system is rebooted after the update, in which case no additional steps are needed). To restart, run systemctl restart snapd.service

Latest Comments

« First ‹ Previous 1 .. 12 13 14 15 16 17 18 19 20 21 22 .. 24 Next › Last »

bboozzoo commented on 2019-10-01 14:24 (UTC)

@homelessuser which snap had the fonts rendered incorrectly in your case?

bboozzoo commented on 2019-10-01 12:06 (UTC)

@homelessuser thanks for letting me know. Indeed, I can see the problem here too: https://i.imgur.com/5sLAJTs.png

homelessuser commented on 2019-10-01 12:00 (UTC)

Fonts missing and replaced with empty boxes in 2.14.r1137. It looks exactly like this https://forum.snapcraft.io/t/snapped-app-not-loading-fonts-on-fedora/12484 Host fonts not being read correctly?

bboozzoo commented on 2019-07-12 14:41 (UTC)

@Gonzalo2683 I think there's something broken in your system.

$ pkg-config --path libseccomp
/usr/lib/pkgconfig/libseccomp.pc

Maybe try reinstalling libseccomp or using a clean chroot to build the package like described here: https://wiki.archlinux.org/index.php/DeveloperWiki:Building_in_a_clean_chroot

Gonzalo2683 commented on 2019-07-12 14:35 (UTC) (edited on 2019-07-12 14:41 (UTC) by Gonzalo2683)

Hello @bboozzoo the results was:

 gonza@Arch-Linux/ pacman -Q libseccomp 
libseccomp 2.4.1-2
 gonza@Arch-Linux/ pkg-config --cflags --libs libseccomp
Package libseccomp was not found in the pkg-config search path.
Perhaps you should add the directory containing `libseccomp.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libseccomp' found
 gonza@Arch-Linux/  
I can not find the location of the file 'libseccomp.pc' How would the correct way to create the environment variable called PKG_CONFIG_PATH?

bboozzoo commented on 2019-07-12 12:30 (UTC)

@Gonzalo2683 not sure I understand what's happening in your system then.

The libseccomp package is listed in makedepends, so it should get automatically installed when you run makepkg -s.

Can you verify that libseccomp is indeed installed? Try running pacman -Q libseccomp. If that works try pkg-config --cflags --libs libseccomp.

Gonzalo2683 commented on 2019-07-09 14:38 (UTC)

@bboozzoo The problem persist, i have the same error even if run the makepkg -s.

bboozzoo commented on 2019-06-07 15:11 (UTC)

@Gonzalo2683 you need to install the packages listed in makedepends manually, or use makepkg -s. AUR helpers will likely do that for you automatically.

Gonzalo2683 commented on 2019-06-07 14:34 (UTC)

I have the following problem trying to instal snap: Package libseccomp was not found in the pkg-config search path. Perhaps you should add the directory containing libseccomp.pc' to the PKG_CONFIG_PATH environment variable No package 'libseccomp' found Package libseccomp was not found in the pkg-config search path. Perhaps you should add the directory containinglibseccomp.pc' to the PKG_CONFIG_PATH environment variable No package 'libseccomp' found pkg-config: exit status 1 ==> ERROR: Se produjo un fallo en build(). Cancelando...

I have tried installing the package like this: sudo pacman -S libseccomp And although the package is installed, the problem persists.

Some help?

now-im commented on 2019-03-08 14:58 (UTC) (edited on 2019-03-08 19:14 (UTC) by now-im)

I am facing the following problems. Kindly help.

sudo snap refresh                                                      
error: too early for operation, device not yet seeded or device model not acknowledged
sudo snap install bitwarden journey mailspring                                                                                 
error: cannot install "bitwarden", "journey", "mailspring": cannot refresh, install, or download:
       soft-expired device authorization needs refresh

Solution:

I tried all of the solution and finally solved it. First Install the package jq from arch repo. Then execute the following commands. This should solve the problem.

$ systemctl stop snapd
$ sudo cat /var/lib/snapd/state.json | \
    jq 'delpaths([["data", "auth", "device"]])' > state.json-new
$ sudo cp state.json-new /var/lib/snapd/state.json
$ sudo systemctl start snapd